/* ================================
   לוטו זהב — Global Styles (RTL)
   ================================ */

:root {
  --bg-0: #07090f;
  --bg-1: #0d1220;
  --bg-2: #141a2c;
  --bg-3: #1c2440;
  --border: rgba(245, 200, 66, 0.14);
  --border-strong: rgba(245, 200, 66, 0.32);
  --text: #f5f7fa;
  --text-dim: #9aa3b8;
  --text-mute: #6b7390;
  --gold: #f5c842;
  --gold-2: #d4a017;
  --gold-3: #ffe082;
  --red: #e63946;
  --red-2: #b8222f;
  --green: #22c55e;
  --blue: #4f8cff;
  --orange: #ff8c42;
  --shadow-gold: 0 8px 32px rgba(245, 200, 66, 0.25);
  --shadow-card: 0 12px 40px rgba(0, 0, 0, 0.45);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --font: 'Heebo', 'Rubik', system-ui, -apple-system, sans-serif;
  --max: 1240px;
}

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

html, body {
  background: var(--bg-0);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  direction: rtl;
  min-height: 100vh;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background:
    radial-gradient(1100px 600px at 85% -10%, rgba(245, 200, 66, 0.10), transparent 60%),
    radial-gradient(900px 500px at 10% 10%, rgba(230, 57, 70, 0.08), transparent 60%),
    linear-gradient(180deg, #07090f 0%, #0a0f1c 100%);
  background-attachment: fixed;
}

a { color: var(--gold); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .85; }

h1, h2, h3, h4 { font-weight: 800; line-height: 1.2; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }

img { max-width: 100%; display: block; }

/* ---------- Layout ---------- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(7, 9, 15, 0.78);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 900; font-size: 1.25rem; color: var(--text);
}
.logo-mark {
  width: 38px; height: 38px;
  background: radial-gradient(circle at 30% 30%, var(--gold-3), var(--gold-2));
  border-radius: 50%;
  display: grid; place-items: center;
  color: #1a1206; font-weight: 900; font-size: 1.05rem;
  box-shadow: 0 4px 18px rgba(245, 200, 66, 0.5);
  border: 2px solid rgba(255, 224, 130, 0.7);
}
.nav-links { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.nav-links a {
  color: var(--text-dim);
  padding: 8px 14px; border-radius: 10px;
  font-weight: 500; font-size: 0.95rem;
  transition: all .2s;
}
.nav-links a:hover { color: var(--text); background: var(--bg-2); }
.nav-links a.active { color: var(--gold); background: rgba(245, 200, 66, 0.08); }
.nav-actions { display: flex; gap: 10px; align-items: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 12px;
  font-family: var(--font); font-weight: 700; font-size: 0.97rem;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .15s, box-shadow .2s, background .2s;
  text-decoration: none; white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-3), var(--gold), var(--gold-2));
  color: #1a1206;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { box-shadow: 0 10px 36px rgba(245, 200, 66, 0.42); }
.btn-secondary {
  background: var(--bg-2); color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover { background: var(--bg-3); border-color: var(--border-strong); }
.btn-danger {
  background: linear-gradient(135deg, #ff5765, var(--red), var(--red-2));
  color: #fff;
}
.btn-ghost {
  background: transparent; color: var(--text-dim);
  border-color: var(--border);
}
.btn-ghost:hover { color: var(--text); border-color: var(--border-strong); }
.btn-sm { padding: 8px 14px; font-size: 0.85rem; border-radius: 9px; }
.btn-lg { padding: 16px 30px; font-size: 1.05rem; border-radius: 14px; }
.btn-block { width: 100%; }

/* ---------- Cards ---------- */
.card {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.card-gold {
  background: linear-gradient(180deg, rgba(245, 200, 66, 0.10), rgba(212, 160, 23, 0.02));
  border: 1px solid var(--border-strong);
}
.card-title { font-size: 1.1rem; font-weight: 800; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.card-title .dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; box-shadow: 0 0 12px var(--gold); }

/* ---------- Badges ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  font-size: 0.78rem; font-weight: 700;
  background: rgba(245, 200, 66, 0.12); color: var(--gold);
  border: 1px solid var(--border-strong);
}
.badge-red { background: rgba(230, 57, 70, 0.15); color: #ff7a86; border-color: rgba(230, 57, 70, 0.35); }
.badge-green { background: rgba(34, 197, 94, 0.15); color: #4ade80; border-color: rgba(34, 197, 94, 0.35); }
.badge-blue { background: rgba(79, 140, 255, 0.15); color: #7eaaff; border-color: rgba(79, 140, 255, 0.35); }
.badge-grey { background: rgba(154, 163, 184, 0.12); color: var(--text-dim); border-color: rgba(154, 163, 184, 0.25); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero h1 {
  background: linear-gradient(135deg, #fff, var(--gold-3) 60%, var(--gold));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 22px;
}
.hero .lead {
  font-size: 1.18rem; color: var(--text-dim); margin-bottom: 32px; max-width: 540px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.jackpot-card {
  background: linear-gradient(160deg, rgba(245, 200, 66, 0.12), rgba(230, 57, 70, 0.08));
  border: 1px solid var(--border-strong);
  border-radius: 24px; padding: 36px;
  text-align: center; position: relative; overflow: hidden;
}
.jackpot-card::before {
  content: ""; position: absolute; inset: -50%;
  background: conic-gradient(from 0deg, transparent, rgba(245, 200, 66, 0.18), transparent 30%);
  animation: spin 10s linear infinite; z-index: 0;
}
.jackpot-card > * { position: relative; z-index: 1; }
@keyframes spin { to { transform: rotate(360deg); } }
.jackpot-label { color: var(--gold); font-weight: 700; letter-spacing: 0.04em; margin-bottom: 12px; }
.jackpot-amount {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 900;
  background: linear-gradient(180deg, var(--gold-3), var(--gold-2));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em; line-height: 1.05;
  white-space: nowrap;
  overflow: visible;
  padding: 0 0.1em;
  word-break: keep-all;
}
.jackpot-sub { color: var(--text-dim); margin-top: 10px; }

.countdown { display: flex; justify-content: center; gap: 14px; margin-top: 26px; }
.countdown-item {
  background: rgba(0, 0, 0, 0.35); padding: 14px 18px; border-radius: 12px;
  min-width: 70px; border: 1px solid var(--border);
}
.countdown-num { font-size: 1.8rem; font-weight: 900; color: var(--gold-3); font-variant-numeric: tabular-nums; }
.countdown-lbl { font-size: 0.75rem; color: var(--text-mute); margin-top: 2px; }

/* ---------- Sections ---------- */
.section { padding: 70px 0; }
.section-head { text-align: center; margin-bottom: 50px; }
.section-eyebrow { color: var(--gold); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.85rem; margin-bottom: 12px; }
.section-head h2 { margin-bottom: 12px; }
.section-head p { color: var(--text-dim); max-width: 640px; margin: 0 auto; }

/* ---------- Feature grid ---------- */
.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px;
}
.feature {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px;
  transition: transform .2s, border-color .2s;
}
.feature:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(245, 200, 66, 0.25), rgba(245, 200, 66, 0.05));
  display: grid; place-items: center; font-size: 1.4rem;
  margin-bottom: 16px; border: 1px solid var(--border-strong);
}
.feature h3 { margin-bottom: 8px; font-size: 1.1rem; }
.feature p { color: var(--text-dim); font-size: 0.95rem; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.step {
  background: var(--bg-1); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px; position: relative;
}
.step-num {
  position: absolute; top: -18px; right: 22px;
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1a1206; font-weight: 900; display: grid; place-items: center;
  box-shadow: var(--shadow-gold); border: 2px solid var(--bg-0);
}
.step h3 { margin: 8px 0 8px; font-size: 1.05rem; }
.step p { color: var(--text-dim); font-size: 0.93rem; }

/* ---------- Lottery numbers grid ---------- */
.num-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(38px, 1fr));
  gap: 8px;
}
.num-cell {
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  font-weight: 800; cursor: pointer;
  user-select: none;
  transition: all .15s;
  color: var(--text);
  font-size: 1rem;
}
.num-cell:hover { background: var(--bg-2); border-color: var(--border-strong); transform: scale(1.05); }
.num-cell.selected {
  background: linear-gradient(135deg, #4f8cff, #3b6fd1);
  color: #fff; border-color: #4f8cff;
  box-shadow: 0 4px 16px rgba(79, 140, 255, 0.45);
}
.num-cell.extra { background: var(--bg-3); }
.num-cell.extra.selected {
  background: linear-gradient(135deg, var(--orange), #e26a1f);
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(255, 140, 66, 0.4);
}
.num-cell.disabled { opacity: 0.4; cursor: not-allowed; }

/* number "drawn" pills used in results */
.pill {
  width: 44px; height: 44px; border-radius: 50%;
  display: inline-grid; place-items: center;
  background: linear-gradient(135deg, #4f8cff, #3b6fd1);
  color: #fff; font-weight: 800;
}
.pill-extra { background: linear-gradient(135deg, var(--orange), #e26a1f); }
.pill-row { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }

/* ---------- Page header ---------- */
.page-hero { padding: 50px 0 30px; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 8px; }
.page-hero p { color: var(--text-dim); max-width: 700px; }

/* ---------- Layout helpers ---------- */
.grid-2 { display: grid; grid-template-columns: 1.6fr 1fr; gap: 24px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.flex { display: flex; gap: 12px; align-items: center; }
.flex-between { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.flex-wrap { flex-wrap: wrap; }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }
.text-dim { color: var(--text-dim); }
.text-mute { color: var(--text-mute); }
.text-gold { color: var(--gold); }
.text-green { color: #4ade80; }
.text-red { color: #ff7a86; }
.text-center { text-align: center; }
.text-sm { font-size: 0.88rem; }
.text-lg { font-size: 1.15rem; }
.fw-700 { font-weight: 700; }
.fw-900 { font-weight: 900; }
.divider { height: 1px; background: var(--border); margin: 18px 0; }

/* ---------- Stats ---------- */
.stat {
  background: var(--bg-2); border: 1px solid var(--border);
  padding: 20px; border-radius: var(--radius);
}
.stat-lbl { color: var(--text-mute); font-size: 0.85rem; margin-bottom: 6px; }
.stat-val { font-size: 1.9rem; font-weight: 900; color: var(--text); font-variant-numeric: tabular-nums; }
.stat-val.gold { color: var(--gold-3); }
.stat-delta { font-size: 0.85rem; margin-top: 4px; color: var(--text-mute); }
.stat-delta.up { color: #4ade80; }
.stat-delta.down { color: #ff7a86; }

/* ---------- Tables ---------- */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-2);
  margin-bottom: 0;
}
.table-wrap .table { border: none; border-radius: 0; min-width: 560px; }
.table {
  width: 100%; border-collapse: collapse;
  background: var(--bg-2); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
}
.table th, .table td {
  padding: 14px 16px; text-align: right;
  border-bottom: 1px solid var(--border);
}
.table th { background: var(--bg-3); font-weight: 700; color: var(--text-dim); font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.04em; }
.table tr:last-child td { border-bottom: none; }
.table tbody tr:hover { background: rgba(245, 200, 66, 0.04); }

/* ---------- Forms ---------- */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--text-dim); font-size: 0.92rem; }
.input, .select, .textarea {
  width: 100%; padding: 12px 14px;
  background: var(--bg-1); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text);
  font-family: var(--font); font-size: 0.97rem;
  transition: border-color .2s;
}
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 200, 66, 0.15);
}

/* ---------- Tabs ---------- */
.tabs { display: flex; gap: 4px; background: var(--bg-2); padding: 5px; border-radius: 12px; border: 1px solid var(--border); margin-bottom: 24px; width: fit-content; }
.tab { padding: 9px 18px; border-radius: 9px; cursor: pointer; font-weight: 600; color: var(--text-dim); transition: all .2s; border: none; background: transparent; font-family: var(--font); font-size: 0.95rem; }
.tab:hover { color: var(--text); }
.tab.active { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #1a1206; }

/* ---------- Pricing tier ---------- */
.tier {
  border: 1px solid var(--border); border-radius: 18px; padding: 28px;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  position: relative; transition: transform .2s;
}
.tier:hover { transform: translateY(-4px); }
.tier.featured {
  border-color: var(--border-strong);
  background: linear-gradient(180deg, rgba(245, 200, 66, 0.10), rgba(245, 200, 66, 0.02));
  box-shadow: 0 16px 50px rgba(245, 200, 66, 0.18);
}
.tier.featured::before {
  content: "המומלץ"; position: absolute; top: -12px; right: 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #1a1206;
  padding: 4px 12px; border-radius: 999px; font-size: 0.78rem; font-weight: 800;
}
.tier h3 { font-size: 1.3rem; margin-bottom: 6px; }
.tier-price { font-size: 2.6rem; font-weight: 900; margin: 8px 0 4px; color: var(--gold-3); }
.tier-period { color: var(--text-mute); }
.tier-list { list-style: none; margin: 20px 0; padding: 0; }
.tier-list li { padding: 8px 0; color: var(--text-dim); display: flex; gap: 8px; align-items: center; }
.tier-list li::before { content: "✓"; color: var(--gold); font-weight: 900; }

/* ---------- Footer ---------- */
.site-footer {
  margin-top: 80px;
  background: linear-gradient(180deg, transparent, var(--bg-1));
  border-top: 1px solid var(--border);
  padding: 50px 0 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px;
}
.footer-col h4 { color: var(--text); font-size: 1rem; margin-bottom: 14px; }
.footer-col a, .footer-col p { color: var(--text-dim); display: block; padding: 4px 0; font-size: 0.92rem; }
.footer-bottom {
  margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; gap: 16px;
  color: var(--text-mute); font-size: 0.85rem; flex-wrap: wrap;
}

/* ---------- Mobile menu ---------- */
.menu-toggle { display: none; background: transparent; border: 1px solid var(--border); color: var(--text); width: 40px; height: 40px; border-radius: 10px; cursor: pointer; font-size: 1.2rem; }

/* ============================================================
   RESPONSIVE — tablet, mobile, small phone
   ============================================================ */

/* Tablet & smaller */
@media (max-width: 960px) {
  .hero { padding: 40px 0 24px; }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .menu-toggle { display: grid; place-items: center; }
  .nav-links {
    display: none; position: absolute; top: 100%; right: 0; left: 0;
    background: var(--bg-1); border-bottom: 1px solid var(--border);
    flex-direction: column; padding: 12px; gap: 4px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.4);
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 12px 14px; font-size: 1rem; }
  .num-grid { grid-template-columns: repeat(7, minmax(38px, 1fr)); gap: 6px; }
  .section { padding: 50px 0; }
  .section-head { margin-bottom: 32px; }
  .page-hero { padding: 36px 0 20px; }
  .jackpot-card { padding: 28px 22px; }
  .countdown { gap: 8px; }
  .feature, .step, .tier { padding: 22px; }
}

/* Phones */
@media (max-width: 640px) {
  /* Tap-friendly buttons everywhere */
  .btn { min-height: 44px; padding: 12px 18px; }
  .btn-sm { min-height: 36px; padding: 8px 14px; }
  .btn-lg { min-height: 52px; padding: 14px 22px; font-size: 1rem; }

  /* Container & sections */
  .container { padding: 0 16px; }
  .section { padding: 40px 0; }
  .section-head { margin-bottom: 26px; }

  /* Layout grids → single column */
  .grid-3, .grid-4, .footer-grid { grid-template-columns: 1fr; gap: 14px; }
  .footer-grid { gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  /* Header */
  .nav { padding: 10px 0; gap: 8px; }
  .logo { font-size: 1.1rem; }
  .logo-mark { width: 34px; height: 34px; font-size: 1rem; }
  .nav-actions { gap: 6px; }
  .nav-actions .btn { padding: 8px 12px; font-size: 0.85rem; }

  /* Hero */
  h1 { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .hero { padding: 28px 0 14px; }
  .hero .lead { font-size: 1.02rem; margin-bottom: 22px; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1; min-width: 0; }

  /* Jackpot */
  .jackpot-card { padding: 26px 18px; border-radius: 18px; }
  .jackpot-amount { font-size: clamp(2.4rem, 12vw, 3.2rem); }
  .countdown { gap: 6px; }
  .countdown-item { padding: 10px 8px; min-width: 0; flex: 1; }
  .countdown-num { font-size: 1.3rem; }
  .countdown-lbl { font-size: 0.7rem; }

  /* Cards */
  .card { padding: 18px; border-radius: 12px; }

  /* Stats */
  .stat { padding: 16px; }
  .stat-val { font-size: 1.5rem; }

  /* Feature/step icons + content */
  .feature, .step { padding: 20px; }
  .feature h3, .step h3 { font-size: 1.05rem; }

  /* Tiers (pricing) */
  .tier { padding: 24px 22px; }
  .tier-price { font-size: 2.2rem; }

  /* Number grid — bigger touch targets */
  .num-grid { grid-template-columns: repeat(6, 1fr); gap: 8px; }
  .num-cell { font-size: 1.1rem; }
  .extra-grid { grid-template-columns: repeat(7, 1fr); gap: 8px; max-width: 100%; }

  /* Tables — horizontal scroll */
  .table { font-size: 0.88rem; min-width: 560px; }
  .table th, .table td { padding: 10px 12px; }

  /* Tabs — full width, scrollable */
  .tabs {
    width: 100%; overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap;
  }
  .tabs::-webkit-scrollbar { display: none; }
  .tab { padding: 9px 14px; font-size: 0.88rem; white-space: nowrap; flex: 0 0 auto; }

  /* Forms — full width inputs already */
  .input, .select, .textarea { font-size: 16px; /* prevents iOS auto-zoom */ }

  /* Site footer spacing */
  .site-footer { padding: 36px 0 24px; margin-top: 50px; }

  /* Section headings */
  h2 { font-size: clamp(1.4rem, 5vw, 1.8rem); }

  /* Hide redundant nav-actions buttons except the user chip */
  .nav-actions .btn-primary { display: none; }
}

/* Small phones (≤ 380px) */
@media (max-width: 380px) {
  .container { padding: 0 12px; }
  .num-grid { grid-template-columns: repeat(5, 1fr); gap: 6px; }
  .countdown-num { font-size: 1.1rem; }
  .countdown-lbl { font-size: 0.66rem; }
  .nav-actions .btn-secondary { padding: 8px 10px; font-size: 0.8rem; }
  .logo span { display: none; } /* keep just the mark on tiny screens */
}

/* Safe-area insets for notched iPhones */
@supports (padding: env(safe-area-inset-bottom)) {
  body { padding-bottom: env(safe-area-inset-bottom); }
  .site-header { padding-top: env(safe-area-inset-top); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .jackpot-card::before { animation: none; }
}
