        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f1525;
            color: #e0e7ff;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #339af0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1, h2, h3, h4 {
            color: #74c0fc;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 { font-size: 2.8rem; margin-top: 2rem; }
        h2 { font-size: 2.2rem; margin-top: 2.5rem; border-bottom: 2px solid #1c2b4a; padding-bottom: 0.5rem; }
        h3 { font-size: 1.8rem; margin-top: 2rem; }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            color: #a5d8ff;
            font-weight: 300;
        }
        strong {
            color: #ffe066;
            font-weight: 700;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3em;
        }
        .term {
            background: rgba(29, 78, 216, 0.15);
            padding: 0.2em 0.5em;
            border-radius: 4px;
            font-family: 'Courier New', monospace;
            color: #5c7cfa;
        }
        .site-header {
            background: linear-gradient(135deg, #1a2332 0%, #0d1422 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 a {
            font-size: 2.4rem;
            font-weight: 900;
            color: #ff6b6b;
            text-shadow: 0 2px 8px rgba(255, 107, 107, 0.5);
            letter-spacing: 1px;
        }
        .logo span {
            color: #4dabf7;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0.8rem;
            border-radius: 6px;
        }
        .main-nav a:hover {
            background-color: #1e3a8a;
            color: #fff;
        }
        .burger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #74c0fc;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #141d33;
            margin-bottom: 2rem;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.8rem;
            color: #5c7cfa;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
            flex-grow: 1;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(20, 29, 51, 0.8);
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .featured-image {
            margin: 2rem 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: 10px;
            border: 3px solid #2d3748;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
        }
        .image-caption {
            margin-top: 0.8rem;
            font-style: italic;
            color: #94a3b8;
            font-size: 0.95rem;
        }
        .content-section {
            margin-bottom: 3rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: rgba(20, 29, 51, 0.8);
            border-radius: 12px;
            padding: 1.8rem;
            border-left: 5px solid #ff6b6b;
        }
        .widget h3 {
            margin-top: 0;
            font-size: 1.5rem;
        }
        .search-box, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .search-box input, .comment-form textarea, .comment-form input, .rating-form select {
            padding: 0.9rem 1.2rem;
            border-radius: 8px;
            border: 1px solid #334155;
            background-color: #1e293b;
            color: #e2e8f0;
            font-size: 1rem;
        }
        .search-box input:focus, .comment-form textarea:focus, .comment-form input:focus, .rating-form select:focus {
            outline: none;
            border-color: #4dabf7;
            box-shadow: 0 0 0 3px rgba(77, 171, 247, 0.2);
        }
        .btn {
            background: linear-gradient(to right, #3b82f6, #1d4ed8);
            color: white;
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }
        .btn:hover {
            background: linear-gradient(to right, #1d4ed8, #1e40af);
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(29, 78, 216, 0.4);
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #f59e0b;
            margin: 1rem 0;
        }
        .star-rating i {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .star-rating i:hover {
            transform: scale(1.2);
        }
        .footer-links {
            background-color: #0d1422;
            padding: 3rem 0;
            margin-top: 4rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: #141d33;
            padding: 1.2rem;
            border-radius: 8px;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }
        .web-link:hover {
            background-color: #1e3a8a;
            transform: translateX(5px);
        }
        .web-link a {
            color: #a5d8ff;
            display: block;
            font-weight: 600;
        }
        .web-link a:hover {
            color: #fff;
        }
        .site-footer {
            background-color: #080c16;
            padding: 2rem 0;
            text-align: center;
            color: #94a3b8;
            font-size: 0.95rem;
            margin-top: auto;
        }
        .site-footer a {
            color: #94a3b8;
        }
        .site-footer a:hover {
            color: #cbd5e1;
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .header-container {
                flex-wrap: wrap;
            }
            .main-nav {
                width: 100%;
                order: 3;
                margin-top: 1rem;
                display: none;
            }
            .main-nav.active {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0.5rem;
            }
            .burger {
                display: block;
            }
            .article-content {
                padding: 1.5rem;
            }
        }
