* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #fff8f0;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .header {
            background: linear-gradient(135deg, #ff4d4d, #ffcc00);
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            text-align: center;
            margin-bottom: 10px;
        }
        .nav {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 5px 10px;
            border-radius: 4px;
            transition: background 0.3s;
        }
        .nav a:hover {
            background: rgba(255,255,255,0.2);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #e63946;
            text-align: center;
            margin: 30px 0;
            font-size: 2.5rem;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            color: #c1121f;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ffb703;
            font-size: 2rem;
        }
        h3 {
            color: #780000;
            margin: 30px 0 15px;
            font-size: 1.5rem;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        .highlight {
            font-weight: bold;
            color: #d62828;
        }
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background: #ff595e;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            margin: 15px 10px;
            transition: transform 0.3s, background 0.3s;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background: #d90429;
            transform: translateY(-2px);
        }
        .btn-login {
            background: #1d3557;
        }
        .btn-login:hover {
            background: #0d1b2a;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .stats-box {
            background: white;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            border-left: 5px solid #ffb703;
        }
        .stats-box p {
            margin: 10px 0;
        }
        .review-card {
            background: white;
            border-radius: 8px;
            padding: 15px;
            margin: 15px 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
        .reviewer {
            font-weight: bold;
            color: #457b9d;
        }
        .tag {
            display: inline-block;
            background: #f1faee;
            padding: 5px 12px;
            border-radius: 20px;
            margin: 5px;
            text-decoration: none;
            color: #1d3557;
            font-size: 0.9rem;
            transition: background 0.3s;
        }
        .tag:hover {
            background: #e0f7fa;
        }
        .game-type {
            display: inline-block;
            margin: 10px 5px;
            text-decoration: none;
            color: #c1121f;
            font-weight: 600;
        }
        .game-type:hover {
            text-decoration: underline;
        }
        .footer {
            background: #1d3557;
            color: white;
            padding: 40px 20px;
            margin-top: 50px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer p {
            margin: 10px 0;
        }
        .copyright {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            .nav {
                display: none;
                flex-direction: column;
                align-items: center;
                margin-top: 15px;
            }
            .nav.active {
                display: flex;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            p {
                font-size: 1rem;
            }
        }
