{/* Payment Options - Different for Web vs Mini App */}
{isTelegramMiniApp ? (
// Mini App: Show Stars button (direct Telegram payment) and Days button
{/* Direct Stars payment via Telegram */}
{starsEnabled && (
)}
{/* Days payment option */}
{daysEnabled && (
)}
) : (
// Web: Show Balance button (Stars converted to rubles) and Days button
(starsEnabled || daysEnabled) && (
{starsEnabled && (
)}
{daysEnabled && (
)}
)
)}
{/* Main Spin Button - Show for web always, for mini app only if days available */}
{(!isTelegramMiniApp || canPayDays) && (
)}
{/* Cannot spin hint */}
{!config.can_spin && !isSpinning && (
<>
{config.can_spin_reason === 'daily_limit_reached' ? (