:root {
            --primary-color: #1e3a8a;
            --secondary-color: #dc2626;
            --accent-color: #fbbf24;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --bg-light: #f9fafb;
            --bg-white: #ffffff;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --radius: 8px;
            --transition: all 0.3s ease;
            --max-width: 1200px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: var(--bg-light);
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary-color), #0f1c4d);
            color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 0;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a i {
            color: var(--accent-color);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: #e5e7eb;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            padding: 0.5rem 0;
            position: relative;
            transition: var(--transition);
        }
        .desktop-nav a:hover {
            color: var(--accent-color);
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--accent-color);
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background-color: var(--primary-color);
            padding: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .mobile-nav a {
            color: white;
            text-decoration: none;
            display: block;
            padding: 0.7rem;
            border-radius: var(--radius);
            transition: var(--transition);
        }
        .mobile-nav a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 0.8rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #cbd5e1;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: var(--accent-color);
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #94a3b8;
            margin: 0 5px;
        }
        main {
            padding: 2.5rem 0;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: var(--bg-white);
            border-radius: var(--radius);
            padding: 2.5rem;
            box-shadow: var(--shadow);
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 1.5rem;
            margin-bottom: 2rem;
            border-bottom: 2px solid #e5e7eb;
            color: var(--text-light);
            font-size: 0.95rem;
        }
        h1 {
            font-size: 2.8rem;
            line-height: 1.2;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }
        h2 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-top: 2.5rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e5e7eb;
        }
        h3 {
            font-size: 1.4rem;
            color: var(--text-dark);
            margin-top: 2rem;
            margin-bottom: 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--text-dark);
            background: #f0f9ff;
            padding: 1.2rem;
            border-left: 4px solid var(--primary-color);
            border-radius: 0 var(--radius) var(--radius) 0;
            margin-bottom: 2rem;
        }
        .highlight-box {
            background: linear-gradient(to right, #fef3c7, #fef9c3);
            border-left: 5px solid var(--accent-color);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        .game-image {
            width: 100%;
            max-width: 700px;
            margin: 2rem auto;
            display: block;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            transition: transform 0.5s ease;
        }
        .game-image:hover {
            transform: scale(1.01);
        }
        figcaption {
            text-align: center;
            font-style: italic;
            color: var(--text-light);
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .feature-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .feature-card {
            background: var(--bg-white);
            border: 1px solid #e5e7eb;
            border-radius: var(--radius);
            padding: 1.5rem;
            transition: var(--transition);
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.1);
            border-color: var(--primary-color);
        }
        .feature-card i {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2.5rem 0;
            box-shadow: 0 0 10px rgba(0,0,0,0.05);
        }
        .comparison-table th, .comparison-table td {
            border: 1px solid #ddd;
            padding: 1rem;
            text-align: left;
        }
        .comparison-table th {
            background-color: var(--primary-color);
            color: white;
            font-weight: 600;
        }
        .comparison-table tr:nth-child(even) {
            background-color: #f9fafb;
        }
        .comparison-table tr:hover {
            background-color: #f0f9ff;
        }
        .internal-link {
            color: var(--primary-color);
            font-weight: 600;
            text-decoration: none;
            border-bottom: 1px dashed currentColor;
            transition: var(--transition);
        }
        .internal-link:hover {
            color: var(--secondary-color);
            border-bottom-style: solid;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: var(--bg-white);
            border-radius: var(--radius);
            padding: 1.5rem;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            margin-top: 0;
            color: var(--primary-color);
            padding-bottom: 0.8rem;
            border-bottom: 2px solid #e5e7eb;
            font-size: 1.3rem;
        }
        .search-box form {
            display: flex;
        }
        .search-box input {
            flex-grow: 1;
            padding: 0.9rem;
            border: 1px solid #d1d5db;
            border-radius: var(--radius) 0 0 var(--radius);
            font-size: 1rem;
        }
        .search-box button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 var(--radius) var(--radius) 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background-color: #0f1c4d;
        }
        .rating-widget .stars {
            display: flex;
            gap: 5px;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #d1d5db;
        }
        .stars .star {
            cursor: pointer;
            transition: var(--transition);
        }
        .stars .star:hover,
        .stars .star.active {
            color: var(--accent-color);
        }
        .rating-form {
            display: none;
            margin-top: 1rem;
        }
        .rating-form.active {
            display: block;
        }
        .rating-form input,
        .rating-form textarea,
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #d1d5db;
            border-radius: var(--radius);
            font-family: inherit;
        }
        .rating-form button,
        .comment-form button {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: var(--radius);
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .rating-form button:hover,
        .comment-form button:hover {
            background-color: #b91c1c;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .quick-links ul {
            list-style: none;
        }
        .quick-links li {
            margin-bottom: 0.8rem;
        }
        .quick-links a {
            color: var(--text-dark);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 0.6rem;
            border-radius: var(--radius);
            transition: var(--transition);
        }
        .quick-links a:hover {
            background-color: #f0f9ff;
            color: var(--primary-color);
        }
        .quick-links i {
            color: var(--primary-color);
        }
        .footer-links {
            background-color: var(--primary-color);
            padding: 2.5rem 0;
            margin-top: 3rem;
        }
        .web-link {
            display: inline-block;
            margin: 0.7rem 1rem;
        }
        .web-link a {
            color: #cbd5e1;
            text-decoration: none;
            padding: 0.5rem 1rem;
            background-color: rgba(255, 255, 255, 0.08);
            border-radius: 30px;
            transition: var(--transition);
            font-size: 0.95rem;
        }
        .web-link a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            color: white;
            transform: translateY(-2px);
        }
        footer {
            background-color: #0f1c4d;
            color: #94a3b8;
            text-align: center;
            padding: 2rem 0;
            font-size: 0.9rem;
        }
        .footer-links-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .desktop-nav {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            .article-content {
                padding: 1.5rem;
            }
            .feature-list {
                grid-template-columns: 1fr;
            }
            .comparison-table {
                display: block;
                overflow-x: auto;
            }
        }
