body { font-family: 'Arial', sans-serif; line-height: 1.6; margin: 0; padding: 0; color: #333; }
        .header { background: linear-gradient(135deg, #FFA500, #FF6347); color: white; padding: 15px; text-align: center; position: relative; }
        .logo { font-size: 24px; 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-toggle { display: none; position: absolute; top: 15px; right: 15px; cursor: pointer; }
        .content { padding: 20px; max-width: 1000px; margin: 0 auto; }
        .download-btn, .login-btn { display: inline-block; padding: 10px 20px; background: #4CAF50; color: white; text-decoration: none; margin: 10px 0; border-radius: 5px; }
        .game-image { max-width: 100%; height: auto; margin: 20px 0; }
        .footer { background: #333; color: white; text-align: center; padding: 15px; }
        h1, h2, h3 { color: #FF6347; }
        @media (max-width: 768px) {
            .nav { display: none; flex-direction: column; }
            .nav.active { display: flex; }
            .mobile-toggle { display: block; }
        }
