:root {
            --primary-dark: #1a1a2e;
            --primary-accent: #0f3460;
            --secondary-accent: #e94560;
            --highlight-gold: #ffd700;
            --text-light: #f5f5f7;
            --text-dim: #a1a1a6;
            --bg-card: #16213e;
            --border-color: #2d4059;
            --shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: var(--secondary-accent);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--highlight-gold);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .header {
            background: linear-gradient(to bottom, rgba(26, 26, 46, 0.98), rgba(15, 52, 96, 0.9));
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-color);
            padding: 0 5%;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(45deg, var(--secondary-accent), var(--highlight-gold));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 992px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
        }
        .nav-desktop a:hover {
            border-bottom-color: var(--secondary-accent);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 992px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: var(--bg-card);
            padding: 1rem;
            border-radius: 0 0 12px 12px;
            animation: slideDown 0.3s ease;
        }
        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 0.8rem;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb {
            background: rgba(22, 33, 62, 0.5);
            padding: 0.8rem 5%;
            font-size: 0.9rem;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb a {
            color: var(--text-dim);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 5%;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem;
            background: linear-gradient(135deg, var(--primary-accent), var(--bg-card));
            border-radius: 16px;
            box-shadow: var(--shadow);
        }
        h1 {
            font-size: 3.2rem;
            margin-bottom: 1rem;
            background: linear-gradient(to right, #fff, var(--highlight-gold));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
        }
        .article-meta {
            color: var(--text-dim);
            font-style: italic;
            margin-top: 1rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            font-size: 1.1rem;
        }
        section {
            margin-bottom: 3rem;
            background: var(--bg-card);
            padding: 2rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
        }
        h2 {
            font-size: 2.2rem;
            color: var(--highlight-gold);
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--secondary-accent);
        }
        h3 {
            font-size: 1.6rem;
            color: var(--text-light);
            margin: 1.5rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            color: var(--text-dim);
        }
        strong {
            color: var(--text-light);
            font-weight: 700;
        }
        .highlight-box {
            background: rgba(233, 69, 96, 0.1);
            border-left: 4px solid var(--secondary-accent);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .feature-img {
            width: 100%;
            border-radius: 12px;
            margin: 2rem 0;
            border: 2px solid var(--border-color);
        }
        aside {
            position: sticky;
            top: 120px;
            height: fit-content;
        }
        .sidebar-widget {
            background: var(--bg-card);
            padding: 1.5rem;
            border-radius: 12px;
            margin-bottom: 2rem;
            border: 1px solid var(--border-color);
        }
        .widget-title {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--highlight-gold);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.8rem;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-light);
            font-family: inherit;
        }
        button, .btn {
            background: linear-gradient(to right, var(--secondary-accent), #ff6b8b);
            color: white;
            border: none;
            padding: 0.9rem 1.5rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            text-align: center;
        }
        button:hover, .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            color: var(--text-dim);
            cursor: pointer;
            font-size: 1.5rem;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: var(--highlight-gold);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
            margin: 3rem 0;
            padding: 2rem;
            background: var(--bg-card);
            border-radius: 12px;
        }
        .web-link {
            padding: 0.8rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 6px;
            border-left: 3px solid var(--secondary-accent);
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(233, 69, 96, 0.1);
            transform: translateX(5px);
        }
        footer {
            text-align: center;
            padding: 2rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-dim);
            font-size: 0.9rem;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        @media (max-width: 768px) {
            .header-container {
                padding: 0.8rem 5%;
            }
            .container {
                padding: 1rem;
            }
            section, .sidebar-widget {
                padding: 1.5rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
        }
