body { font-family: 'Arial', sans-serif; line-height: 1.6; max-width: 1200px; margin: 0 auto; padding: 20px; color: #333; }
        header { background-color: #FF6B35; color: white; padding: 20px; text-align: center; position: relative; }
        .logo { font-size: 2em; font-weight: bold; text-transform: uppercase; }
        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: 20px; right: 20px; }
        h1 { color: #FF6B35; border-bottom: 2px solid #FF6B35; padding-bottom: 10px; }
        h2 { color: #4A90E2; margin-top: 30px; }
        h3 { color: #50C878; }
        .download-btn, .login-btn { background-color: #50C878; color: white; padding: 10px 20px; border-radius: 5px; text-decoration: none; display: inline-block; margin: 10px 0; }
        .game-image { max-width: 100%; height: auto; margin: 20px 0; }
        footer { background-color: #333; color: white; padding: 20px; text-align: center; margin-top: 40px; }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .mobile-menu { display: block; }
            .menu-active .desktop-nav { display: flex; flex-direction: column; }
        }
