* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Tahoma', sans-serif;
        }
        body {
            background-color: #fdf8f0;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #9b2226;
            color: #fff;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.9rem;
            font-weight: 900;
            text-decoration: none;
            color: #ffd166;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
            letter-spacing: 0.5px;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav ul li a {
            color: #fff;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        nav ul li a:hover {
            color: #ffd166;
        }
        .mobile-menu-btn {
            display: none;
            background: transparent;
            border: none;
            color: #fff;
            font-size: 1.6rem;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 45px auto;
            padding: 0 20px;
        }
        h1 {
            color: #9b2226;
            font-size: 2.6rem;
            margin-bottom: 35px;
            text-align: center;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.15);
            font-weight: 900;
        }
        h2 {
            color: #9b2226;
            font-size: 2.1rem;
            margin: 50px 0 25px;
            border-bottom: 3px solid #ffd166;
            padding-bottom: 12px;
            font-weight: 800;
        }
        h3 {
            color: #6a040f;
            font-size: 1.6rem;
            margin: 35px 0 18px;
            font-weight: 700;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.15rem;
            text-align: justify;
        }
        .highlight {
            font-weight: 800;
            color: #9b2226;
            text-decoration: underline;
            text-underline-offset: 4px;
        }
        .btn-container {
            text-align: center;
            margin: 50px 0;
        }
        .btn {
            display: inline-block;
            padding: 18px 35px;
            margin: 0 12px;
            background-color: #9b2226;
            color: #fff;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.25rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 12px rgba(0,0,0,0.18);
        }
        .btn:hover {
            background-color: #6a040f;
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.25);
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.22);
        }
        .stats-box {
            background-color: #fff;
            border-radius: 12px;
            padding: 25px;
            margin: 40px 0;
            box-shadow: 0 6px 18px rgba(0,0,0,0.12);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }
        .stat-item {
            text-align: center;
            padding: 20px;
            background-color: #fff8e7;
            border-radius: 10px;
            border-left: 5px solid #9b2226;
        }
        .stat-number {
            font-size: 2.3rem;
            font-weight: 900;
            color: #9b2226;
        }
        .stat-label {
            font-size: 1.1rem;
            color: #2d2d2d;
            margin-top: 8px;
        }
        .review-container {
            background-color: #fff;
            border-radius: 12px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border-top: 4px solid #ffd166;
        }
        .reviewer {
            font-weight: 700;
            color: #6a040f;
            font-size: 1.2rem;
        }
        .rating {
            color: #ffd166;
            margin: 8px 0;
            font-size: 1.3rem;
        }
        .tag-container {
            margin: 40px 0;
        }
        .tag {
            display: inline-block;
            background-color: #fff8e7;
            color: #9b2226;
            padding: 10px 20px;
            border-radius: 25px;
            margin: 0 12px 12px 0;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 600;
        }
        .tag:hover {
            background-color: #9b2226;
            color: #fff;
        }
        .game-type-nav {
            margin: 30px 0 50px;
        }
        .game-type {
            color: #9b2226;
            text-decoration: none;
            margin-right: 25px;
            font-weight: 700;
            font-size: 1.15rem;
        }
        .game-type:hover {
            text-decoration: underline;
            text-underline-offset: 5px;
        }
        footer {
            background-color: #2d2d2d;
            color: #fff;
            padding: 50px 0 25px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #555;
            margin-top: 30px;
            font-size: 1.05rem;
            color: #ccc;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: #9b2226;
                padding: 25px;
                gap: 20px;
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 5px 0;
            }
            h1 {
                font-size: 2.1rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            p {
                font-size: 1.05rem;
                text-align: left;
            }
            .btn {
                display: block;
                margin: 15px auto;
                width: 90%;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
