:root {
            --primary-color: #FF6B6B;
            --secondary-color: #FFE66D;
            --text-color: #333;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            margin: 0;
            padding: 0;
            background-color: #FFF9F0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        header {
            background-color: var(--primary-color);
            color: white;
            padding: 15px 0;
            position: relative;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            text-align: center;
            letter-spacing: 1px;
        }
        nav {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 10px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
        }
        .mobile-menu-btn {
            display: none;
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        h1 {
            color: var(--primary-color);
            margin-top: 30px;
            font-size: 32px;
        }
        h2 {
            color: #FF8E53;
            margin-top: 25px;
            font-size: 26px;
        }
        h3 {
            color: #FFA726;
            margin-top: 20px;
            font-size: 22px;
        }
        .download-btn, .login-btn {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            padding: 12px 25px;
            margin: 15px 0;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .download-btn:hover, .login-btn:hover {
            background-color: #FF5252;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            margin: 20px 0;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .stats-box {
            background-color: white;
            border-left: 5px solid var(--primary-color);
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
        }
        .tag {
            display: inline-block;
            background-color: #E0E0E0;
            padding: 5px 10px;
            margin: 5px;
            border-radius: 20px;
            font-size: 14px;
        }
        footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 20px;
            margin-top: 40px;
        }
        @media (max-width: 768px) {
            nav {
                display: none;
                flex-direction: column;
                align-items: center;
            }
            nav.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            .container {
                padding: 10px;
            }
        }
