        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a1a2a;
            color: #e0e0e0;
            line-height: 1.7;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            color: #00a8ff;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #4cd137;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0c2461 0%, #1e3799 100%);
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, #fbc531, #e84118);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .logo a {
            background: none;
            -webkit-text-fill-color: unset;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: #dcdde1;
            font-weight: 600;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
        }
        .nav-desktop a:hover {
            border-bottom-color: #fbc531;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #0c2461;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
            z-index: 999;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: #dcdde1;
            padding: 0.8rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .breadcrumb {
            background-color: #1a2c42;
            padding: 0.8rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #7f8fa6;
        }
        .breadcrumb span {
            color: #fbc531;
            margin: 0 5px;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 2.5rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
        }
        .article-content h1 {
            color: #fbc531;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        .article-content h2 {
            color: #00a8ff;
            font-size: 2rem;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid rgba(0, 168, 255, 0.3);
        }
        .article-content h3 {
            color: #4cd137;
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(251, 197, 49, 0.15), transparent);
            border-left: 4px solid #fbc531;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .feature-img {
            width: 100%;
            border-radius: 10px;
            margin: 2rem auto;
            box-shadow: 0 10px 30px rgba(0,0,0,0.7);
            border: 3px solid #00a8ff;
        }
        .interactive-box {
            background: linear-gradient(145deg, #1a2c42, #0f1c2e);
            border-radius: 10px;
            padding: 2rem;
            margin: 2.5rem 0;
            border: 1px solid #2c3e50;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 1.5rem;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .widget h3 {
            color: #fbc531;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.8rem 1rem;
            border-radius: 8px;
            border: 1px solid #2c3e50;
            background-color: #1a2c42;
            color: white;
            font-size: 1rem;
        }
        button, .btn {
            background: linear-gradient(to right, #00a8ff, #0097e6);
            color: white;
            border: none;
            padding: 0.9rem 1.5rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }
        button:hover, .btn:hover {
            background: linear-gradient(to right, #0097e6, #00a8ff);
            transform: scale(1.03);
            box-shadow: 0 5px 15px rgba(0, 168, 255, 0.4);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #7f8fa6;
            cursor: pointer;
        }
        .stars .active {
            color: #fbc531;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
            padding: 2rem;
            background: rgba(255,255,255,0.03);
            border-radius: 10px;
        }
        .web-link {
            background: #1a2c42;
            padding: 1rem;
            border-radius: 8px;
            border-left: 4px solid #00a8ff;
        }
        .site-footer {
            background: #0c0e15;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .copyright {
            color: #7f8fa6;
            font-size: 0.9rem;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #2c3e50;
            width: 100%;
        }
        @media (max-width: 768px) {
            .article-content {
                padding: 1.5rem;
            }
            .article-content h1 {
                font-size: 2.2rem;
            }
            .article-content h2 {
                font-size: 1.8rem;
            }
            .interactive-box {
                padding: 1.5rem;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .bold {
            font-weight: 800;
            color: #fbc531;
        }
        .text-center {
            text-align: center;
        }
        .mt-3 { margin-top: 3rem; }
        .mb-3 { margin-bottom: 3rem; }
