body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background: #FF9900; color: white; padding: 15px; text-align: center; position: relative; }
        .logo { font-size: 28px; font-weight: bold; letter-spacing: 2px; }
        nav { display: flex; justify-content: center; gap: 20px; margin-top: 10px; }
        nav a { color: white; text-decoration: none; }
        .mobile-menu { display: none; position: absolute; top: 15px; right: 15px; }
        h1 { color: #FF4500; border-bottom: 3px solid #FF9900; padding-bottom: 10px; }
        h2 { color: #0066CC; margin-top: 30px; }
        h3 { color: #339966; }
        .download-btn, .login-btn { 
            display: inline-block; 
            padding: 12px 25px; 
            margin: 15px 0; 
            background: #FF4500; 
            color: white; 
            text-decoration: none; 
            border-radius: 5px; 
            font-weight: bold;
        }
        .game-stats { background: #f5f5f5; padding: 15px; border-radius: 8px; margin: 20px 0; }
        img { max-width: 100%; height: auto; margin: 20px 0; border-radius: 8px; }
        footer { background: #333; color: white; text-align: center; padding: 20px; margin-top: 40px; }
        @media (max-width: 768px) {
            .mobile-menu { display: block; }
            nav { display: none; flex-direction: column; background: rgba(255,153,0,0.9); position: absolute; top: 60px; right: 0; width: 100%; }
            nav.active { display: flex; }
            .logo { font-size: 24px; }
        }
