        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-color: #0a3d6b;
            --secondary-color: #f5c518;
            --accent-color: #c41e3a;
            --dark-bg: #111827;
            --light-bg: #f8fafc;
            --text-dark: #1e293b;
            --text-light: #64748b;
            --border-color: #cbd5e1;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        body {
            color: var(--text-dark);
            background-color: var(--light-bg);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-color);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: linear-gradient(135deg, var(--primary-color), #1a56db);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow);
            background: linear-gradient(135deg, #1a56db, var(--accent-color));
        }
        section {
            padding: 80px 0;
        }
        h1, h2, h3, h4 {
            color: var(--dark-bg);
            line-height: 1.3;
            margin-bottom: 1.2rem;
        }
        h1 { font-size: 2.8rem; }
        h2 { font-size: 2.2rem; border-bottom: 3px solid var(--secondary-color); padding-bottom: 10px; margin-top: 2.5rem; }
        h3 { font-size: 1.8rem; color: var(--primary-color); }
        h4 { font-size: 1.4rem; }
        p { margin-bottom: 1.5rem; }
        .site-header {
            background-color: var(--dark-bg);
            color: white;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo span {
            color: var(--secondary-color);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            color: #e2e8f0;
            font-weight: 600;
            padding: 8px 0;
            position: relative;
        }
        .desktop-nav a:hover {
            color: var(--secondary-color);
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary-color);
            transition: width 0.3s;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--dark-bg);
            padding: 20px;
            box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 15px;
        }
        .mobile-nav a {
            color: white;
            font-size: 1.2rem;
            display: block;
            padding: 10px;
            border-left: 3px solid transparent;
        }
        .mobile-nav a:hover {
            border-left-color: var(--secondary-color);
            background-color: rgba(255,255,255,0.05);
        }
        .search-box {
            display: flex;
            margin-left: 30px;
        }
        .search-box input {
            padding: 10px 15px;
            border: none;
            border-radius: 4px 0 0 4px;
            min-width: 250px;
        }
        .search-box button {
            padding: 10px 20px;
            background-color: var(--secondary-color);
            color: var(--dark-bg);
            border: none;
            border-radius: 0 4px 4px 0;
            font-weight: 600;
            cursor: pointer;
        }
        .search-box button:hover {
            background-color: #e6b400;
        }
        .breadcrumb {
            background-color: #e2e8f0;
            padding: 15px 0;
            font-size: 0.95rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            margin-right: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 10px;
            color: var(--text-light);
        }
        .hero {
            background: linear-gradient(rgba(10, 61, 107, 0.85), rgba(10, 61, 107, 0.9)), url('https://images.unsplash.com/photo-1531259683007-016a7b628fc3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        .hero h1 {
            color: white;
            font-size: 3.5rem;
            margin-bottom: 20px;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #e2e8f0;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 50px;
            margin-top: 40px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .intro-note {
            background-color: #f0f9ff;
            border-left: 5px solid var(--primary-color);
            padding: 25px;
            margin-bottom: 40px;
            border-radius: 0 8px 8px 0;
        }
        .featured-image {
            margin: 40px 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .game-review-card {
            background: #f8fafc;
            border: 1px solid var(--border-color);
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 30px;
            display: grid;
            grid-template-columns: 150px 1fr;
            gap: 25px;
            align-items: start;
        }
        .game-review-card img {
            border-radius: 8px;
        }
        .rating {
            color: var(--secondary-color);
            font-size: 1.2rem;
            margin: 10px 0;
        }
        .pros-cons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin: 30px 0;
            background: #f1f5f9;
            padding: 25px;
            border-radius: 10px;
        }
        .pros li, .cons li {
            margin-bottom: 8px;
            list-style-position: inside;
        }
        .pros li::marker {
            color: #10b981;
        }
        .cons li::marker {
            color: var(--accent-color);
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            box-shadow: var(--shadow);
        }
        .comparison-table th, .comparison-table td {
            border: 1px solid var(--border-color);
            padding: 15px;
            text-align: left;
        }
        .comparison-table th {
            background-color: var(--primary-color);
            color: white;
        }
        .comparison-table tr:nth-child(even) {
            background-color: #f8fafc;
        }
        .highlight {
            background-color: #fff9db;
            padding: 25px;
            border-radius: 10px;
            border-left: 5px solid var(--secondary-color);
            margin: 30px 0;
        }
        .interactive-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 40px;
            border-radius: 12px;
            text-align: center;
            margin: 50px 0;
        }
        .sidebar {
            position: sticky;
            top: 120px;
            height: fit-content;
        }
        .sidebar-widget {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin-bottom: 30px;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border-color);
        }
        .top-games-list li {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
        }
        .top-games-list li:last-child {
            border-bottom: none;
        }
        .updates-list li {
            padding: 12px 0;
            border-bottom: 1px dashed #ddd;
        }
        .newsletter-form input {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 6px;
        }
        .user-interaction {
            margin-top: 80px;
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .rating-widget {
            text-align: center;
            margin-bottom: 40px;
        }
        .stars {
            font-size: 2.5rem;
            color: #ddd;
            cursor: pointer;
            margin: 20px 0;
        }
        .stars .active {
            color: var(--secondary-color);
        }
        .comment-form, .rating-form {
            margin-top: 30px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .user-comments {
            margin-top: 50px;
        }
        .comment {
            border-bottom: 1px solid #eee;
            padding: 25px 0;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            color: var(--text-light);
        }
        .footer-links {
            background-color: #1e293b;
            color: white;
            padding: 60px 0 30px;
        }
        .web-link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .web-link {
            background-color: #334155;
            padding: 20px;
            border-radius: 8px;
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: #475569;
            transform: translateY(-5px);
        }
        .web-link a {
            color: #e2e8f0;
            font-weight: 600;
            display: block;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #475569;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        @media (max-width: 1200px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
        }
        @media (max-width: 768px) {
            .desktop-nav, .search-box {
                display: none;
            }
            .mobile-toggle {
                display: block;
            }
            .header-container {
                flex-wrap: wrap;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .article-content {
                padding: 25px;
            }
            .game-review-card {
                grid-template-columns: 1fr;
            }
            .pros-cons {
                grid-template-columns: 1fr;
            }
            .interactive-section {
                padding: 25px;
            }
        }
