body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: #FFF9E6;
        }
        header {
            background-color: #FF6B35;
            color: white;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 30px;
            position: relative;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .mobile-menu {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-menu {
                display: block;
            }
        }
        h1 {
            color: #FF6B35;
            border-bottom: 3px solid #FFD166;
            padding-bottom: 10px;
        }
        h2 {
            color: #06D6A0;
            margin-top: 30px;
        }
        h3 {
            color: #118AB2;
        }
        .download-btn {
            display: inline-block;
            background-color: #06D6A0;
            color: white;
            padding: 12px 25px;
            margin: 15px 0;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
        }
        .login-btn {
            display: inline-block;
            background-color: #118AB2;
            color: white;
            padding: 12px 25px;
            margin: 15px 0;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
        }
        .game-image {
            width: 100%;
            max-width: 600px;
            margin: 20px auto;
            display: block;
            border-radius: 8px;
        }
        .stats-box {
            background-color: #FFF1CA;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
        }
        footer {
            margin-top: 50px;
            padding: 20px;
            background-color: #333;
            color: white;
            border-radius: 8px;
        }
        .tag {
            display: inline-block;
            background-color: #7D5A5A;
            color: white;
            padding: 5px 10px;
            margin: 5px;
            border-radius: 20px;
            text-decoration: none;
        }
