        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #0a0a12;
            --secondary-dark: #1a1a2e;
            --accent-color: #4a90e2;
            --highlight-color: #ff4757;
            --text-light: #f1f1f1;
            --text-muted: #a0a0c0;
            --border-color: #2d2d4a;
            --section-padding: clamp(2rem, 5vw, 4rem);
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: var(--accent-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: var(--highlight-color);
        }
        .container {
            width: min(1200px, 95%);
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(10, 10, 18, 0.95);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-color);
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--text-light);
            letter-spacing: -1px;
        }
        .logo span {
            color: var(--highlight-color);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: var(--text-light);
            font-weight: 600;
            font-size: 1rem;
        }
        .desktop-nav a:hover {
            color: var(--accent-color);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.5rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background-color: var(--secondary-dark);
            padding: 1rem;
            flex-direction: column;
            gap: 1rem;
            border-top: 1px solid var(--border-color);
        }
        .mobile-nav.active {
            display: flex;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--text-muted);
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .hero {
            padding: var(--section-padding) 0;
            text-align: center;
            background: linear-gradient(135deg, var(--primary-dark) 0%, #2a2a4a 100%);
        }
        .hero h1 {
            font-size: clamp(2.5rem, 6vw, 4rem);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        .cta-button {
            display: inline-block;
            background-color: var(--highlight-color);
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 30px;
            font-weight: bold;
            font-size: 1.1rem;
            margin-top: 1rem;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 71, 87, 0.3);
            color: white;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: var(--section-padding) 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-section {
            background-color: var(--secondary-dark);
            border-radius: 15px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            border: 1px solid var(--border-color);
        }
        .article-section h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--accent-color);
            border-left: 5px solid var(--highlight-color);
            padding-left: 15px;
        }
        .article-section h3 {
            font-size: 1.5rem;
            margin: 1.8rem 0 1rem;
            color: var(--text-light);
        }
        .article-section p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(74, 144, 226, 0.1);
            border-left: 4px solid var(--accent-color);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 10px;
            overflow: hidden;
            border: 2px solid var(--border-color);
        }
        .featured-image figcaption {
            padding: 0.8rem;
            font-style: italic;
            color: var(--text-muted);
            text-align: center;
            background-color: rgba(0, 0, 0, 0.3);
        }
        .sidebar-widget {
            background-color: var(--secondary-dark);
            border-radius: 15px;
            padding: 1.8rem;
            margin-bottom: 2rem;
            border: 1px solid var(--border-color);
        }
        .sidebar-widget h3 {
            color: var(--accent-color);
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
        }
        .search-form {
            display: flex;
            margin-bottom: 1rem;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.8rem;
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            color: var(--text-light);
            border-radius: 5px 0 0 5px;
        }
        .search-form button {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 0 1.2rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: gold;
            margin: 0.5rem 0;
            cursor: pointer;
        }
        .stars span {
            transition: color 0.2s;
        }
        .stars span:hover,
        .stars span:hover ~ span {
            color: lightgray;
        }
        .comments-section {
            margin-top: 3rem;
        }
        .comment-form input,
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            border-radius: 5px;
            color: var(--text-light);
        }
        .comment-form button {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            padding: 3rem 0;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.03);
            padding: 1rem;
            border-radius: 8px;
            transition: background-color 0.3s;
        }
        .web-link:hover {
            background-color: rgba(74, 144, 226, 0.1);
        }
        .web-link a {
            color: var(--text-light);
            font-size: 0.95rem;
        }
        .site-footer {
            padding: 2rem 0;
            text-align: center;
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            .article-section {
                padding: 1.5rem;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .article-section {
            animation: fadeIn 0.6s ease-out;
        }
