        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-dark: #0a0e17;
            --primary-blue: #1a3a8f;
            --primary-gold: #d4af37;
            --secondary-red: #c41e3a;
            --secondary-purple: #8a2be2;
            --text-light: #f5f5f5;
            --text-gray: #b0b0b0;
            --bg-dark: #121826;
            --bg-card: #1a2035;
            --accent-green: #2ecc71;
            --accent-orange: #e67e22;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: var(--text-light);
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--bg-dark) 100%);
            min-height: 100vh;
            overflow-x: hidden;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(10, 14, 23, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--primary-gold);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 900;
            color: var(--text-light);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .logo span {
            color: var(--primary-gold);
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .nav-desktop a:hover {
            background: var(--primary-blue);
            color: white;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            gap: 1rem;
            padding: 1rem;
            background: var(--bg-card);
            border-radius: 8px;
            margin-top: 1rem;
            animation: slideDown 0.3s ease;
        }
        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .nav-mobile.active {
            display: flex;
        }
        .breadcrumb {
            padding: 1rem 0;
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--primary-gold);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .search-section {
            background: linear-gradient(90deg, var(--primary-blue), var(--secondary-purple));
            padding: 2rem;
            border-radius: 12px;
            margin: 2rem 0;
            text-align: center;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 1rem auto;
        }
        .search-input {
            flex: 1;
            padding: 1rem;
            border: none;
            border-radius: 8px 0 0 8px;
            font-size: 1.1rem;
            background: rgba(255, 255, 255, 0.95);
        }
        .search-btn {
            background: var(--primary-gold);
            color: var(--primary-dark);
            border: none;
            padding: 0 2rem;
            border-radius: 0 8px 8px 0;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-btn:hover {
            background: #ffd700;
        }
        main {
            padding: 2rem 0;
        }
        .article-content {
            background: rgba(26, 32, 53, 0.8);
            border-radius: 16px;
            padding: 3rem;
            margin-bottom: 2rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(212, 175, 55, 0.1);
        }
        h1 {
            font-size: 3.2rem;
            color: var(--primary-gold);
            margin-bottom: 2rem;
            line-height: 1.2;
            text-align: center;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }
        h2 {
            font-size: 2.2rem;
            color: var(--secondary-red);
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid rgba(196, 30, 58, 0.3);
        }
        h3 {
            font-size: 1.6rem;
            color: var(--accent-green);
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--accent-orange);
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.15rem;
            color: var(--text-gray);
        }
        .highlight {
            background: linear-gradient(90deg, rgba(26, 58, 143, 0.2), rgba(138, 43, 226, 0.2));
            padding: 1.5rem;
            border-left: 4px solid var(--primary-gold);
            border-radius: 8px;
            margin: 2rem 0;
        }
        .key-point {
            background: rgba(46, 204, 113, 0.1);
            border: 1px solid var(--accent-green);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .warning {
            background: rgba(230, 126, 34, 0.1);
            border: 1px solid var(--accent-orange);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .feature-card {
            background: var(--bg-card);
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background: var(--bg-card);
            border-radius: 8px;
            overflow: hidden;
        }
        .comparison-table th,
        .comparison-table td {
            padding: 1.2rem;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .comparison-table th {
            background: var(--primary-blue);
            color: white;
            font-weight: 600;
        }
        .comparison-table tr:last-child td {
            border-bottom: none;
        }
        .article-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 12px;
            margin: 2rem auto;
            display: block;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
            border: 2px solid var(--primary-gold);
        }
        .rating-section {
            background: rgba(26, 32, 53, 0.9);
            padding: 2rem;
            border-radius: 12px;
            margin: 3rem 0;
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: var(--primary-gold);
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars i {
            margin: 0 5px;
            transition: transform 0.2s;
        }
        .stars i:hover {
            transform: scale(1.3);
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            max-width: 800px;
            margin: 2rem auto;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-group label {
            font-weight: 600;
            color: var(--text-light);
        }
        .form-input {
            padding: 1rem;
            border-radius: 8px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-light);
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        .form-input:focus {
            outline: none;
            border-color: var(--primary-gold);
        }
        textarea.form-input {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(90deg, var(--primary-blue), var(--secondary-purple));
            color: white;
            border: none;
            padding: 1.2rem;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            padding: 3rem 0;
            margin-top: 2rem;
            border-top: 1px solid rgba(212, 175, 55, 0.2);
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        }
        .web-link {
            padding: 1.2rem;
            background: rgba(26, 32, 53, 0.6);
            border-radius: 8px;
            transition: background 0.3s;
        }
        .web-link:hover {
            background: rgba(26, 58, 143, 0.3);
        }
        .web-link a {
            color: var(--primary-gold);
            text-decoration: none;
            font-weight: 500;
            display: block;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        footer {
            padding: 3rem 0;
            text-align: center;
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        .copyright {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.4rem; }
            .article-content { padding: 2rem; }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input {
                border-radius: 8px;
                margin-bottom: 1rem;
            }
            .search-btn {
                border-radius: 8px;
                padding: 1rem;
            }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            h3 { font-size: 1.3rem; }
            .feature-grid {
                grid-template-columns: 1fr;
            }
            .comparison-table {
                display: block;
                overflow-x: auto;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            .article-content {
                padding: 1.5rem;
            }
            .search-section {
                padding: 1.5rem;
            }
            .footer-links {
                grid-template-columns: 1fr;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.8s ease-out;
        }
        .text-center { text-align: center; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-2 { margin-top: 2rem; }
        .bold { font-weight: 700; color: var(--text-light); }
        .gold { color: var(--primary-gold); }
        .red { color: var(--secondary-red); }
        .green { color: var(--accent-green); }
        .emoji { font-size: 1.2em; margin-right: 5px; }
