:root {
            --primary: #1a237e;
            --primary-dark: #000051;
            --primary-light: #534bae;
            --accent: #ff6f00;
            --accent-dark: #c43e00;
            --text-primary: #212121;
            --text-secondary: #757575;
            --text-light: #f5f5f5;
            --bg-light: #f8f9fa;
            --bg-dark: #121212;
            --border: #e0e0e0;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
            --radius: 8px;
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-primary);
            background-color: #fff;
            overflow-x: hidden;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        .btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }
        .btn-accent {
            background: var(--accent);
        }
        .btn-accent:hover {
            background: var(--accent-dark);
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        .site-header {
            background-color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            display: flex;
            align-items: center;
        }
        .logo i {
            color: var(--accent);
            margin-right: 10px;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            font-weight: 600;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--accent);
            transition: width 0.3s;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary);
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: white;
            padding: 20px;
            box-shadow: var(--shadow);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
            font-weight: 600;
        }
        .breadcrumb {
            background-color: var(--bg-light);
            padding: 12px 20px;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb span {
            color: var(--text-secondary);
            margin: 0 8px;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 20px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            max-width: 800px;
        }
        .article-header {
            margin-bottom: 30px;
        }
        .article-header h1 {
            font-size: 2.8rem;
            line-height: 1.2;
            color: var(--primary-dark);
            margin-bottom: 15px;
        }
        .meta-info {
            display: flex;
            gap: 20px;
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        .meta-info i {
            margin-right: 5px;
        }
        .lead {
            font-size: 1.3rem;
            color: var(--text-primary);
            background: var(--bg-light);
            padding: 20px;
            border-left: 5px solid var(--accent);
            border-radius: var(--radius);
            margin-bottom: 30px;
        }
        .article-body h2 {
            font-size: 2rem;
            color: var(--primary);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border);
        }
        .article-body h3 {
            font-size: 1.6rem;
            color: var(--primary-dark);
            margin: 30px 0 15px;
        }
        .article-body h4 {
            font-size: 1.3rem;
            color: var(--text-primary);
            margin: 25px 0 10px;
        }
        .article-body p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .article-body blockquote {
            background: linear-gradient(to right, var(--primary-light), var(--primary));
            color: white;
            padding: 25px;
            border-radius: var(--radius);
            margin: 30px 0;
            position: relative;
            box-shadow: var(--shadow);
        }
        .article-body blockquote::before {
            content: '\f10d';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            top: -15px;
            left: 20px;
            background: var(--accent);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .article-body ul, .article-body ol {
            margin-left: 25px;
            margin-bottom: 20px;
        }
        .article-body li {
            margin-bottom: 10px;
        }
        .highlight {
            background-color: #fff8e1;
            padding: 20px;
            border-radius: var(--radius);
            border-left: 4px solid var(--accent);
            margin: 25px 0;
        }
        .game-card {
            display: grid;
            grid-template-columns: 150px 1fr;
            gap: 20px;
            background: white;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 20px;
            margin: 25px 0;
            transition: var(--transition);
        }
        .game-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        .game-card img {
            border-radius: var(--radius);
            object-fit: cover;
            height: 100%;
        }
        .game-info h4 {
            margin-top: 0;
        }
        .rating {
            color: #ffc107;
            margin: 10px 0;
        }
        .tag {
            display: inline-block;
            background: var(--bg-light);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-right: 8px;
            margin-bottom: 8px;
        }
        .featured-image {
            margin: 30px 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin: 0 auto;
        }
        .caption {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-top: 10px;
            text-align: center;
        }
        .internal-link {
            color: var(--primary);
            font-weight: 600;
            border-bottom: 1px dashed var(--primary-light);
        }
        .internal-link:hover {
            border-bottom: 1px solid var(--accent);
        }
        .sidebar {
            background: var(--bg-light);
            padding: 25px;
            border-radius: var(--radius);
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border);
        }
        .search-form {
            display: flex;
            margin-bottom: 20px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid var(--border);
            border-right: none;
            border-radius: var(--radius) 0 0 var(--radius);
            outline: none;
        }
        .search-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 var(--radius) var(--radius) 0;
            cursor: pointer;
        }
        .popular-games-list li {
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
        }
        .popular-games-list li:last-child {
            border-bottom: none;
        }
        .rating-widget {
            background: white;
            padding: 20px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin: 15px 0;
            font-size: 1.8rem;
            color: #ddd;
        }
        .stars .active {
            color: #ffc107;
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            margin-bottom: 15px;
            resize: vertical;
            min-height: 120px;
        }
        .comment-form input[type="text"],
        .comment-form input[type="email"] {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            margin-bottom: 15px;
        }
        .footer-links {
            background: var(--primary-dark);
            color: white;
            padding: 50px 20px;
        }
        .footer-links h3 {
            color: white;
            margin-bottom: 25px;
            text-align: center;
            font-size: 1.8rem;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: var(--radius);
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }
        .web-link a {
            color: white;
            font-weight: 600;
            display: block;
            margin-bottom: 8px;
        }
        .web-link p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        .site-footer {
            background: var(--bg-dark);
            color: var(--text-light);
            padding: 40px 20px;
            text-align: center;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .copyright {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        @media (max-width: 768px) {
            html {
                font-size: 15px;
            }
            .header-container {
                padding: 12px 15px;
            }
            .nav-desktop {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            .main-content {
                padding: 25px 15px;
                gap: 30px;
            }
            .game-card {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
        }
