        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #e0e0e0;
            background: linear-gradient(135deg, #0c1a2d 0%, #1a1a2e 50%, #16213e 100%);
            background-attachment: fixed;
            min-height: 100vh;
        }
        a { color: #4dabf7; text-decoration: none; transition: color 0.3s, transform 0.2s; }
        a:hover { color: #a5d8ff; transform: translateY(-1px); }
        img { max-width: 100%; height: auto; display: block; border-radius: 8px; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
        .site-header {
            background: rgba(12, 26, 45, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #2a3d5f;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1.5px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .my-logo:hover { transform: scale(1.05); }
        .nav-primary { display: flex; align-items: center; }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-list a {
            color: #ccd6f6;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .nav-list a:hover, .nav-list a.active {
            background: rgba(77, 171, 247, 0.15);
            color: #a5d8ff;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #ccd6f6;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        .breadcrumb {
            padding: 15px 20px;
            background: rgba(42, 61, 95, 0.6);
            font-size: 0.9rem;
            color: #94a3b8;
            border-bottom: 1px solid #334155;
        }
        .breadcrumb a { color: #cbd5e1; }
        .breadcrumb span { color: #4dabf7; }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 20px;
        }
        article { grid-column: 1; }
        .sidebar { grid-column: 2; }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
            .sidebar { order: -1; }
        }
        .article-header { margin-bottom: 30px; }
        .article-header h1 {
            font-size: 2.8rem;
            color: #ffffff;
            margin-bottom: 15px;
            line-height: 1.2;
            text-shadow: 0 2px 8px rgba(0,0,0,0.5);
        }
        .article-meta {
            display: flex;
            gap: 20px;
            color: #94a3b8;
            font-size: 0.9rem;
            border-bottom: 1px solid #334155;
            padding-bottom: 15px;
        }
        .featured-image {
            margin: 30px 0;
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .featured-image img { width: 100%; transition: transform 0.5s; }
        .featured-image:hover img { transform: scale(1.03); }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #94a3b8;
            padding: 10px;
            background: rgba(0,0,0,0.5);
            border-radius: 0 0 12px 12px;
        }
        h2 {
            font-size: 2rem;
            color: #4ecdc4;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #2a3d5f;
        }
        h3 { font-size: 1.6rem; color: #45b7d1; margin: 30px 0 15px; }
        h4 { font-size: 1.3rem; color: #ffa94d; margin: 25px 0 10px; }
        p { margin-bottom: 1.5em; text-align: justify; }
        .lead { font-size: 1.2rem; color: #cbd5e1; font-weight: 500; }
        .highlight { background: rgba(255, 107, 107, 0.15); padding: 2px 6px; border-radius: 3px; font-weight: bold; }
        blockquote {
            border-left: 4px solid #4dabf7;
            padding-left: 20px;
            margin: 25px 0;
            font-style: italic;
            color: #cbd5e1;
            background: rgba(77, 171, 247, 0.05);
            padding: 20px;
            border-radius: 0 8px 8px 0;
        }
        ul, ol { margin-left: 25px; margin-bottom: 1.5em; }
        li { margin-bottom: 0.5em; }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }
        .stat-card {
            background: rgba(42, 61, 95, 0.6);
            padding: 20px;
            border-radius: 10px;
            border: 1px solid #4dabf7;
            text-align: center;
        }
        .stat-card .number { font-size: 2.5rem; color: #ff6b6b; font-weight: bold; }
        .sidebar-module {
            background: rgba(22, 33, 62, 0.8);
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 30px;
            border: 1px solid #334155;
        }
        .sidebar-module h3 { margin-top: 0; color: #ffa94d; font-size: 1.4rem; }
        .search-form { display: flex; }
        .search-form input {
            flex-grow: 1;
            padding: 12px;
            border: 1px solid #4dabf7;
            background: #0f172a;
            color: #e2e8f0;
            border-radius: 6px 0 0 6px;
        }
        .search-form button {
            background: #4dabf7;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover { background: #339af0; }
        .rating-widget { text-align: center; }
        .stars { font-size: 1.8rem; color: #ffd43b; margin: 10px 0; }
        .stars i { cursor: pointer; margin: 0 2px; }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            background: #0f172a;
            border: 1px solid #4dabf7;
            color: #e2e8f0;
            border-radius: 6px;
            min-height: 120px;
            margin-bottom: 15px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(90deg, #4dabf7, #339af0);
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
            text-align: center;
        }
        .btn:hover { background: linear-gradient(90deg, #339af0, #228be6); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
        .btn-block { width: 100%; }
        .link-list { list-style: none; }
        .link-list li { margin-bottom: 12px; padding-left: 0; }
        .link-list li::before { content: '🔫'; margin-right: 10px; }
        .site-footer {
            background: rgba(12, 26, 45, 0.98);
            border-top: 2px solid #2a3d5f;
            padding: 40px 20px 20px;
            margin-top: 50px;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-section { flex: 1; min-width: 250px; }
        .footer-section h3 { color: #4ecdc4; margin-bottom: 20px; font-size: 1.3rem; }
        friend-link {
            display: inline-block;
            background: rgba(77, 171, 247, 0.1);
            padding: 8px 15px;
            margin: 5px;
            border-radius: 5px;
            border: 1px solid #2a3d5f;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #334155;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container { flex-wrap: wrap; }
            .nav-primary { order: 3; width: 100%; margin-top: 15px; display: none; }
            .nav-primary.active { display: block; }
            .nav-list { flex-direction: column; gap: 10px; }
            .hamburger { display: block; }
            .article-header h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .footer-container { flex-direction: column; }
        }
        .fade-in { animation: fadeIn 0.8s ease-out; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
        .pulse { animation: pulse 2s infinite; }
        @keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(77, 171, 247, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(77, 171, 247, 0); } 100% { box-shadow: 0 0 0 0 rgba(77, 171, 247, 0); } }
