/* Fonts loaded via <link> in HTML for non-blocking render */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0a0e1a;
  --card: rgba(255,255,255,0.04);
  --card-border: rgba(255,255,255,0.06);
  --accent: #22c55e;
  --accent-glow: rgba(34,197,94,0.3);
  --text: #f0f0f0;
  --text-dim: rgba(255,255,255,0.5);
  --text-muted: rgba(255,255,255,0.25);
  --radius: 16px;
  --radius-sm: 12px;
  --premium-1: #7c3aed;
  --premium-2: #2563eb;
  --premium-3: #06b6d4;
}

html, body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── Screens ─────────────────────────────────── */
.screen {
  display: none;
  min-height: 100vh;
  padding: 20px;
  position: relative;
}
.screen.active { display: block; }

/* ─── Loading (removed — content shows immediately) ── */

/* ─── Hero background ─────────────────────────── */
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 280px;
  background: 
    linear-gradient(180deg, rgba(10,14,26,0) 60%, var(--bg) 100%),
    url('road.jpg') center top / cover no-repeat;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* ─── Header ──────────────────────────────────── */
.header {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 30px;
  margin-bottom: 24px;
}
.logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 12px rgba(34,197,94,0.4));
}
.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
}
.tagline {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 4px;
}

/* ─── Cards ───────────────────────────────────── */
.card {
  position: relative;
  z-index: 1;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
}

/* ─── Status card ─────────────────────────────── */
.status-card {
  display: flex;
  align-items: center;
  gap: 12px;
}
.status-indicator {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #666;
}
.status-indicator.active {
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.status-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.status-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}
.status-date {
  font-size: 12px;
  color: var(--text-dim);
}

/* ─── Trial card ──────────────────────────────── */
.trial-card {
  text-align: center;
  background: linear-gradient(135deg, rgba(34,197,94,0.08), rgba(34,197,94,0.02));
  border-color: rgba(34,197,94,0.15);
}
.trial-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(34,197,94,0.15);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.trial-price {
  margin-bottom: 8px;
}
.trial-amount {
  font-size: 36px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -1px;
}
.trial-period {
  font-size: 16px;
  color: var(--text-dim);
}
.trial-desc {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 16px;
}

/* ─── Buttons ─────────────────────────────────── */
.btn {
  display: block;
  width: 100%;
  padding: 16px 24px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  text-align: center;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:active { transform: scale(0.97); }
.btn-glow {
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-install {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 18px 24px;
  border-radius: var(--radius);
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: linear-gradient(135deg, #4f46e5 0%, #2563eb 55%, #0ea5e9 100%);
  border: 1px solid rgba(99,102,241,0.45);
  box-shadow:
    0 8px 32px rgba(79,70,229,0.55),
    0 2px 8px rgba(14,165,233,0.3),
    inset 0 1px 0 rgba(255,255,255,0.2),
    inset 0 -1px 0 rgba(0,0,0,0.15);
}
.btn-install::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      135deg,
      transparent,
      transparent 2px,
      rgba(255,255,255,0.015) 2px,
      rgba(255,255,255,0.015) 4px
    ),
    linear-gradient(135deg, rgba(124,58,237,0.4), rgba(37,99,235,0.4), rgba(6,182,212,0.2));
  opacity: 1;
  transition: opacity 0.3s;
}
.btn-install::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 0%, rgba(255,255,255,0.05) 10%, transparent 20%);
  animation: shimmerRotate 6s linear infinite;
}
@keyframes shimmerRotate {
  to { transform: rotate(360deg); }
}
.btn-install svg { flex-shrink: 0; position: relative; z-index: 2; }
.btn-install span { position: relative; z-index: 2; }
.btn-install:active { transform: scale(0.97); box-shadow: 0 4px 16px rgba(79,70,229,0.5); }
.btn-ghost {
  background: transparent;
  border: 1px solid var(--card-border);
  color: var(--text-dim);
  position: relative;
  z-index: 1;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-ghost:active { background: rgba(255,255,255,0.03); }
.btn-ghost .gift-icon {
  width: 20px;
  height: 20px;
  opacity: 0.7;
}

/* ─── Plans ───────────────────────────────────── */
.plans-section {
  position: relative;
  z-index: 1;
  margin-top: 8px;
}

/* Collapsible toggle: minimalist pill that doubles as the section heading. */
.plans-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  color: var(--text-muted, #94a3b8);
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.plans-toggle:hover,
.plans-toggle:focus-visible {
  color: var(--text);
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.14);
  outline: none;
}
.plans-toggle:active { transform: scale(0.995); }
.plans-toggle-chevron {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  opacity: 0.8;
}
.plans-section.expanded .plans-toggle-chevron { transform: rotate(180deg); }
.plans-section.expanded .plans-toggle { color: var(--text); }

/* Smooth height animation via the grid-rows 0fr→1fr trick.
   Avoids JS height calculation and works with dynamic content. */
.plans-collapse {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              margin-top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0;
}
.plans-section.expanded .plans-collapse {
  grid-template-rows: 1fr;
  margin-top: 14px;
}
.plans-collapse-inner {
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.plans-section.expanded .plans-collapse-inner {
  opacity: 1;
  transform: translateY(0);
}
.section-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
  text-align: center;
  letter-spacing: -0.4px;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.65) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.plan-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 16px 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.plan-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.06) 50%, transparent 60%);
  background-size: 300% 300%;
  background-position: 100% 100%;
  animation: cardShimmer 8s ease-in-out infinite;
}
@keyframes cardShimmer {
  0%, 80% { background-position: 200% 200%; }
  90% { background-position: -50% -50%; }
  100% { background-position: -200% -200%; }
}
.plan-card:active {
  transform: scale(0.95);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 0 20px rgba(255,255,255,0.05), inset 0 0 30px rgba(255,255,255,0.03);
}
.plan-card.highlight {
  border-color: rgba(34,197,94,0.3);
  background: rgba(34,197,94,0.04);
}
.plan-card.highlight::before {
  background: linear-gradient(135deg, transparent 40%, rgba(34,197,94,0.1) 50%, transparent 60%);
  background-size: 300% 300%;
  animation: cardShimmer 8s ease-in-out infinite;
}
.plan-card.highlight:active {
  box-shadow: 0 0 24px rgba(34,197,94,0.15), inset 0 0 30px rgba(34,197,94,0.05);
}
.plan-card .badge {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 3px;
  background: var(--accent);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.plan-duration {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 6px;
  margin-top: 4px;
}
.plan-price {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.5px;
  background: linear-gradient(180deg, #fff 30%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.plan-old-price {
  font-size: 11px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-top: 2px;
  font-weight: 400;
}
.plan-per-month {
  font-size: 11px;
  color: var(--accent);
  margin-top: 6px;
  font-weight: 600;
  opacity: 0.8;
}

/* ─── Install section ─────────────────────────── */
.install-section {
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
  margin-top: 16px;
}

/* ─── Install screen ──────────────────────────── */
.back-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}
.back-btn svg { flex-shrink: 0; }
.install-desc {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 16px;
  text-align: center;
}
.install-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}
.install-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 12px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s;
}
.install-card:active { transform: scale(0.96); background: rgba(255,255,255,0.06); }
.install-card-featured {
  border-color: rgba(79,70,229,0.35);
  background: linear-gradient(135deg, rgba(79,70,229,0.1), rgba(37,99,235,0.06));
  box-shadow: 0 4px 16px rgba(79,70,229,0.15);
}
.install-card-featured:active { background: rgba(79,70,229,0.15); }
.install-card-featured .install-icon { color: #a5b4fc; }
.install-icon { margin-bottom: 10px; color: var(--text-dim); }
.install-name { font-size: 13px; font-weight: 600; }
.install-note { font-size: 10px; color: var(--text-muted); margin-top: 4px; }

/* ─── Sub link ────────────────────────────────── */
.sub-link-section {
  margin-top: 20px;
}
.sub-link-label {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.sub-link-box {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
}
.sub-link-box code {
  flex: 1;
  font-size: 11px;
  color: var(--accent);
  word-break: break-all;
}
.copy-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.copy-btn:active { background: rgba(255,255,255,0.12); }
.sub-link-hint {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ─── Footer ──────────────────────────────────── */
.footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 24px 0 12px;
  font-size: 11px;
  color: var(--text-muted);
}

/* ─── Utilities ───────────────────────────────── */
.hidden { display: none !important; }

/* Fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeIn 0.3s ease-out; }

/* Toast notification */
/* ─── Payment method picker ──────────────────── */
.pay-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  /* On desktop Telegram WebApp the popup can be shorter than the sheet's
     content. flex-end alignment without overflow-y meant the top of the
     sheet got clipped. We make the overlay itself scrollable and use a
     ::before spacer so the sheet stays bottom-anchored when space allows
     but reveals fully via scroll when it doesn't. */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* Spacer that absorbs free space, pushing the sheet to the bottom when the
   viewport is tall, and collapses to zero when content overflows so the
   sheet remains fully scrollable. */
.pay-overlay::before {
  content: '';
  flex: 1 1 auto;
  min-height: 0;
}
.pay-sheet {
  background: var(--bg);
  border-top: 1px solid var(--card-border);
  border-radius: 20px 20px 0 0;
  padding: 24px 20px 32px;
  width: 100%;
  max-width: 420px;
  flex: 0 0 auto;
  animation: slideUp 0.25s ease-out;
}
/* On viewports tall enough to comfortably show the sheet, give it a small
   top breathing room and round all corners to feel like a centered modal. */
@media (min-height: 720px) {
  .pay-overlay { padding-top: 24px; }
  .pay-sheet { border-radius: 20px; border-top: none; border: 1px solid var(--card-border); }
}
@keyframes slideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.pay-sheet-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 8px;
}
.pay-sheet-subtitle {
  font-size: 13px;
  color: var(--text-muted, #94a3b8);
  text-align: center;
  margin-bottom: 18px;
  line-height: 1.4;
}
.pay-sheet-close {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--text-muted, #94a3b8);
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.15s, color 0.15s;
}
.pay-sheet-close:active { background: rgba(255,255,255,0.08); color: var(--text); }
.pay-sheet { position: relative; }

/* ── Referral card ─────────────────────────────────────────── */
.referral-card {
  margin: 18px 0;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.referral-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.referral-emoji {
  font-size: 28px;
  flex-shrink: 0;
}
.referral-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.referral-sub {
  font-size: 12px;
  color: var(--text-muted, #94a3b8);
  margin-top: 2px;
  line-height: 1.4;
}
.referral-stats {
  font-size: 13px;
  color: var(--text);
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.referral-stats small { color: var(--text-muted, #94a3b8); }
.btn-sm { padding: 10px 14px; font-size: 14px; }

/* ── Shiny gift button ──────────────────────────────────────── */
.btn-gift {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 14px 0 4px;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #10b981 0%, #14b8a6 50%, #8b5cf6 100%);
  background-size: 200% 200%;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 8px 24px -8px rgba(16,185,129,0.5), 0 0 0 1px rgba(255,255,255,0.06) inset;
  animation: gift-pulse 4s ease-in-out infinite;
  transition: transform 0.15s;
}
.btn-gift:active { transform: scale(0.98); }

/* Diagonal sheen that sweeps across every few seconds. */
.btn-gift-shine {
  position: absolute;
  top: 0; left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.55) 50%, transparent 100%);
  transform: skewX(-20deg);
  animation: gift-shine 3.2s ease-in-out infinite;
  pointer-events: none;
}
.btn-gift-label { z-index: 1; }
.gift-icon { z-index: 1; flex-shrink: 0; }
.btn-gift-badge {
  z-index: 1;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(4px);
  letter-spacing: 0.02em;
}

@keyframes gift-pulse {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@keyframes gift-shine {
  0%   { left: -75%; }
  60%  { left: 125%; }
  100% { left: 125%; }
}
@media (prefers-reduced-motion: reduce) {
  .btn-gift, .btn-gift-shine { animation: none; }
}

/* ── Premium gift sheet ─────────────────────────────────────── */
.gift-sheet {
  padding-top: 28px;
}
.gift-hero {
  text-align: center;
  padding: 6px 0 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 14px;
}
.gift-hero-icon { font-size: 36px; line-height: 1; }
.gift-hero-title {
  font-size: 19px;
  font-weight: 800;
  margin-top: 8px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.gift-hero-sub {
  font-size: 13px;
  color: var(--text-muted, #94a3b8);
  margin-top: 6px;
}
.gift-hero-sub b { color: #fbbf24; font-weight: 700; }

.gift-card {
  display: flex;
  align-items: stretch;
  gap: 14px;
  width: 100%;
  padding: 14px;
  margin-bottom: 10px;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform 0.15s, border-color 0.15s, background 0.15s;
}
.gift-card:active { transform: scale(0.985); }
.gift-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, var(--accent-color, transparent) 0%, transparent 55%);
  opacity: 0.18;
  pointer-events: none;
}
.gift-accent-mint   { --accent-color: #10b981; border-color: rgba(16,185,129,0.25); }
.gift-accent-violet { --accent-color: #8b5cf6; border-color: rgba(139,92,246,0.28); }
.gift-accent-gold   { --accent-color: #f59e0b; border-color: rgba(245,158,11,0.32); }

.gift-card-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  color: var(--accent-color, #fff);
}
.gift-card-icon svg { width: 24px; height: 24px; }

.gift-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  gap: 6px;
}
.gift-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.gift-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}
.gift-card-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--accent-color, rgba(255,255,255,0.1));
  color: #0a0e1a;
  white-space: nowrap;
}
.gift-card-prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.gift-card-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
}
.gift-card-old {
  font-size: 13px;
  color: var(--text-muted, #94a3b8);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}
.gift-card-discount {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 6px;
  background: rgba(16,185,129,0.18);
  color: #34d399;
}
.gift-card-permo {
  font-size: 12px;
  color: var(--text-muted, #94a3b8);
}

.gift-warning {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 12px;
  background: rgba(251,191,36,0.08);
  border: 1px solid rgba(251,191,36,0.18);
  border-radius: 10px;
  color: #fcd34d;
  font-size: 12px;
  line-height: 1.4;
}
.gift-warning svg { flex-shrink: 0; margin-top: 1px; }
.pay-option {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 10px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 15px;
  cursor: pointer;
  transition: background 0.15s;
}
.pay-option:active { background: rgba(255,255,255,0.1); }
.pay-option-card { border-color: var(--accent); }
.pay-option-icon {
  width: 28px;
  height: 28px;
  margin-right: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.pay-option-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.pay-option-text {
  flex: 1;
  font-weight: 600;
}
.pay-option-sub {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 400;
}

.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 20px var(--accent-glow);
  z-index: 1000;
  animation: fadeIn 0.2s ease-out;
}
