body { font-family: 'Arial', sans-serif; line-height: 1.6; max-width: 1200px; margin: 0 auto; padding: 20px; color: #333; }
        header { background: linear-gradient(135deg, #FF9900 0%, #FF5500 100%); color: white; padding: 20px; border-radius: 10px; margin-bottom: 30px; }
        .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; }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .mobile-menu { display: block; }
            .menu-btn { background: white; color: #FF5500; border: none; padding: 10px 15px; border-radius: 5px; }
        }
        h1 { color: #FF5500; border-bottom: 3px solid #FF9900; padding-bottom: 10px; }
        h2 { color: #FF7700; margin-top: 30px; }
        h3 { color: #FF8800; margin-top: 25px; }
        .download-btn, .login-btn { 
            display: inline-block; 
            background: #FF5500; 
            color: white; 
            padding: 12px 25px; 
            margin: 15px 0; 
            border-radius: 30px; 
            text-decoration: none; 
            font-weight: bold; 
            transition: transform 0.3s; 
        }
        .download-btn:hover, .login-btn:hover { transform: scale(1.05); }
        .game-image { max-width: 100%; height: auto; margin: 20px 0; border-radius: 10px; }
        .stats-box { background: #FFF5E6; padding: 20px; border-radius: 10px; margin: 20px 0; }
        footer { margin-top: 50px; padding: 20px; background: #333; color: white; border-radius: 10px; }
        .tag { background: #FF9900; color: white; padding: 5px 10px; border-radius: 20px; margin: 5px; display: inline-block; }
