/* MergeCash — Dark Offerwall Theme */
:root {
  --bg: #0b0f14;
  --bg-card: #131920;
  --bg-card-2: #1a2129;
  --border: #1e2730;
  --text: #e8edf2;
  --text-dim: #7d8a97;
  --accent: #0ea5e9;
  --accent-hover: #0284c7;
  --accent-dim: rgba(14, 165, 233, 0.1);
  --gold: #f5a623;
  --purple: #7c4dff;
  --red: #ff4757;
  --radius: 12px;
  --radius-sm: 8px;
}

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

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

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ===== NAVBAR ===== */
.navbar {
  background: rgba(19, 25, 32, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo { display: flex; align-items: center; }
.logo-svg { height: 38px; width: auto; }

.nav-spacer { flex: 1; }

.nav-links { display: flex; gap: 2px; }
.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.15s;
}
.nav-link:hover { background: var(--bg-card-2); color: var(--text); }
.nav-link.active { background: var(--accent-dim); color: var(--accent); }

#nav-auth-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.balance-pill {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 16px;
  font-weight: 700;
  color: var(--accent);
  font-size: 14px;
}

/* ===== BUTTONS ===== */
.btn {
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: none;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-secondary { background: var(--bg-card-2); color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { background: var(--border); }
.btn-lg { padding: 14px 28px; font-size: 16px; border-radius: var(--radius); }
.btn-block { width: 100%; }

/* ===== LAYOUT ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 24px 20px; }

.section { margin-bottom: 48px; }
.section-title { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.section-sub { color: var(--text-dim); font-size: 14px; margin-bottom: 20px; }

/* ===== OFFER CARD (Freecash-style) ===== */
.offer-card-large {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.2s;
}
.offer-card-large:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(14, 165, 233, 0.1);
}

.offer-card-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}
.offer-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.offer-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: #3d2800;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.offer-card-info {
  padding: 24px;
}

.offer-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 16px;
}

.offer-card-name {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}
.offer-card-desc {
  color: var(--text-dim);
  font-size: 15px;
}

.offer-card-payout { text-align: right; flex-shrink: 0; }
.offer-card-payout-label {
  color: var(--text-dim);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.offer-card-payout-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
}

.offer-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tag {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--text-dim);
}

.how-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 0;
  margin-bottom: 20px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.how-strip-step {
  display: flex;
  align-items: center;
  gap: 8px;
}

.how-strip-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.how-strip-text {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.how-strip-arrow {
  color: var(--text-dim);
  font-size: 14px;
}

.how-strip-meta {
  display: flex;
  gap: 16px;
  margin-left: auto;
}
.how-strip-meta span {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 600;
  padding: 4px 10px;
  background: var(--bg-card-2);
  border-radius: 4px;
}

/* ===== HERO CTA ROW ===== */
.hero-cta-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
  margin-bottom: 4px;
}

.store-badge-mini {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  transition: all 0.15s;
  white-space: nowrap;
}
.store-badge-mini:hover {
  border-color: var(--accent);
  background: var(--border);
}

/* ===== MILESTONES (Landing Page Preview) ===== */
.milestones-preview {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.milestones-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.milestones-header h3 { font-size: 18px; font-weight: 700; }
.milestones-total { color: var(--accent); font-weight: 800; font-size: 18px; }

.milestone-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  transition: background 0.1s;
}
.milestone-row:last-child { border-bottom: none; }
.milestone-row:hover { background: var(--bg-card-2); }

.milestone-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-card-2);
  border: 2px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 14px;
  flex-shrink: 0;
  color: var(--text-dim);
}

.milestone-info { flex: 1; min-width: 0; }
.milestone-name { font-weight: 600; font-size: 14px; }
.milestone-desc { font-size: 12px; color: var(--text-dim); }

.milestone-reward {
  color: var(--accent);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

/* ===== CARD (used by FAQ) ===== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 16px 0;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
}
.trust-svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ===== PAYMENT LOGOS ===== */
.payment-logos {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}
.payment-logo-label {
  font-size: 12px;
  color: var(--text-dim);
  margin-right: 4px;
}
.payment-logo-icon {
  width: 40px;
  height: 28px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.testimonial-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 14px; }
.testimonial-earned { font-size: 12px; color: var(--text-dim); }
.testimonial-card p {
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.6;
  font-style: italic;
}

/* ===== OFFER CARD OVERLAY (mobile above-fold) ===== */
.offer-card-overlay {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 16px;
  background: linear-gradient(transparent 0%, rgba(0,0,0,0.95) 100%);
}
.offer-card-overlay-text {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 1px 3px rgba(0,0,0,0.7);
}
.offer-card-overlay-text strong { color: var(--accent); text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 1px 3px rgba(0,0,0,0.7); }

/* ===== FOOTER LINKS ===== */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 12px;
}
.footer-links a {
  color: var(--accent);
  font-weight: 600;
  font-size: 12px;
  text-decoration: none;
}
.footer-links a:hover { text-decoration: underline; }

/* ===== FAQ ===== */
.faq-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-item h4 { font-size: 15px; margin-bottom: 4px; }
.faq-item p { color: var(--text-dim); font-size: 14px; }

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
  color: var(--text-dim);
  font-size: 12px;
  text-align: center;
  margin-top: 40px;
}

/* ===== MODAL ===== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  place-items: center;
  z-index: 1000;
  backdrop-filter: blur(6px);
}
.modal-backdrop.active { display: grid; }

.modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  max-width: 400px;
  width: 90%;
}
.modal h2 { margin-bottom: 6px; font-size: 22px; }
.modal .modal-sub { color: var(--text-dim); margin-bottom: 24px; font-size: 14px; }

.form-row { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-dim);
}
.form-input {
  width: 100%;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.15s;
}
.form-input:focus { outline: none; border-color: var(--accent); }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-weight: 600;
  font-size: 14px;
  z-index: 2000;
  transform: translateX(400px);
  transition: transform 0.3s;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}
.toast.show { transform: translateX(0); }
.toast.error { border-color: var(--red); color: var(--red); }

/* ===========================================
   DASHBOARD PAGE
   =========================================== */

/* Player ID Entry */
.player-id-banner {
  background: linear-gradient(135deg, rgba(124, 77, 255, 0.15), rgba(0, 210, 106, 0.1));
  border: 1px solid var(--purple);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.player-id-banner .icon { font-size: 32px; }
.player-id-banner .info { flex: 1; }
.player-id-banner h3 { font-size: 16px; margin-bottom: 4px; }
.player-id-banner p { color: var(--text-dim); font-size: 13px; }
.player-id-form {
  display: flex;
  gap: 8px;
}
.player-id-form input {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  width: 200px;
}
.player-id-form input:focus { outline: none; border-color: var(--accent); }

/* Dashboard Stats */
.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.stat-card .label { color: var(--text-dim); font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.stat-card .value { font-size: 28px; font-weight: 800; }
.stat-card .value.green { color: var(--accent); }

/* Progress Section */
.progress-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 32px;
}

.progress-bar-track {
  background: var(--bg-card-2);
  border-radius: 999px;
  height: 10px;
  overflow: hidden;
  margin: 16px 0;
}
.progress-bar-fill {
  background: linear-gradient(90deg, var(--accent), var(--purple));
  height: 100%;
  border-radius: 999px;
  transition: width 0.5s ease;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-dim);
}

/* Dashboard Milestones */
.dash-milestone {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--bg-card-2);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  border-left: 3px solid var(--border);
  transition: all 0.15s;
}
.dash-milestone.completed {
  border-left-color: var(--accent);
  opacity: 0.6;
}
.dash-milestone.completed .milestone-name { text-decoration: line-through; color: var(--text-dim); }

.dash-milestone .check {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 13px;
}
.dash-milestone.completed .check {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Cashout */
.cashout-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.cashout-option {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
}
.cashout-option:hover, .cashout-option.selected {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.15);
}

.cashout-card-bg {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.cashout-label {
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cashout-label .name { font-weight: 600; font-size: 14px; }
.cashout-label .min { font-size: 11px; color: var(--text-dim); }

.cashout-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

/* Withdrawal History */
.history-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.history-row:last-child { border-bottom: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .container { padding: 16px; }
  .nav-links { display: none; }

  /* Navbar — compact for mobile */
  .navbar {
    padding: 0 12px;
    gap: 8px;
    height: 56px;
  }
  .logo-svg { height: 28px; }
  .navbar > .nav-link {
    font-size: 12px;
    padding: 6px 8px;
    white-space: nowrap;
  }
  #nav-auth-area { gap: 6px; }
  #nav-auth-area .btn {
    font-size: 12px;
    padding: 6px 10px;
  }

  /* Mobile: show overlay on banner, keep native 16:9 so nothing is cropped */
  .offer-card-overlay { display: block; }
  .offer-card-image {
    aspect-ratio: 16 / 9;
  }

  .offer-card-top { flex-direction: column; gap: 8px; }
  .offer-card-payout { text-align: left; }
  .offer-card-name { font-size: 22px; }
  .offer-card-payout-value { font-size: 28px; }

  .how-strip-meta { margin-left: 0; width: 100%; justify-content: center; }
  .hero-cta-row { flex-direction: column; }
  .store-badge-mini { justify-content: center; padding: 12px 16px; }

  .trust-strip { flex-wrap: wrap; gap: 16px; justify-content: center; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .dash-stats { grid-template-columns: repeat(2, 1fr); }
  .stat-card .value { font-size: 22px; }
  .cashout-grid { grid-template-columns: repeat(2, 1fr); }

  .player-id-banner { flex-direction: column; text-align: center; }
  .player-id-form { width: 100%; }
  .player-id-form input { flex: 1; }

  .payment-logos { flex-wrap: wrap; justify-content: center; }

  /* Toast — center on mobile */
  .toast {
    right: 16px;
    left: 16px;
    bottom: 16px;
    transform: translateY(100px);
    text-align: center;
  }
  .toast.show { transform: translateY(0); }

  /* Modal — reduce padding on small screens */
  .modal { padding: 24px 20px; }

  /* Footer — larger tap targets */
  .footer-links { gap: 16px; flex-wrap: wrap; }
  .footer-links a {
    font-size: 14px;
    padding: 8px 4px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

/* ===========================================
   SINGLE-OFFER DASHBOARD (v3)
   =========================================== */

/* Countdown Timer */
.offer-timer {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  margin-bottom: 24px;
}
.offer-timer.urgent {
  border-color: var(--red);
  background: rgba(255, 71, 87, 0.08);
}
.offer-timer.expired {
  border-color: var(--red);
  background: rgba(255, 71, 87, 0.08);
}
.timer-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-dim);
  display: block;
  margin-bottom: 12px;
}
.offer-timer.urgent .timer-label,
.offer-timer.expired .timer-label {
  color: var(--red);
}
.timer-digits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.timer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.timer-num {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  color: var(--text);
  min-width: 50px;
}
.offer-timer.urgent .timer-num { color: var(--red); }
.timer-unit {
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}
.timer-sep {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dim);
  margin-top: -14px;
}
.timer-sep.pulse {
  animation: pulse-sep 1s ease-in-out infinite;
}
@keyframes pulse-sep {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

/* Offer Hero Card */
.offer-hero {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  margin-bottom: 24px;
}
.offer-hero.active {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.06) 0%, var(--bg-card) 100%);
}
.offer-hero.completed {
  border-color: #22c55e;
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.06) 0%, var(--bg-card) 100%);
}
.offer-hero.expired {
  opacity: 0.7;
}

.offer-hero-badge {
  display: inline-block;
  background: var(--accent-dim);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.offer-hero h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}
.offer-hero-chapter {
  color: var(--text-dim);
  font-size: 16px;
  margin-bottom: 8px;
}
.offer-hero-reward {
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  margin: 12px 0 4px;
}
.offer-hero.completed .offer-hero-reward { color: #22c55e; }
.offer-hero-sub {
  color: var(--text-dim);
  font-size: 15px;
}

.offer-hero-check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  display: inline-grid;
  place-items: center;
  margin-bottom: 16px;
}

.offer-hero-progress {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-dim);
}

.offer-hero-progress-bar {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.offer-progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.offer-progress-labels span:nth-child(2) {
  color: var(--accent);
  font-weight: 700;
}
.offer-progress-hint {
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 8px;
}

/* Reward Status Card */
.reward-status-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}
.reward-status-card h3 {
  font-size: 16px;
  margin-bottom: 16px;
}
.reward-status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.reward-amount {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}
.reward-type {
  color: var(--text-dim);
  font-size: 14px;
}

/* Mobile adjustments for single-offer */
@media (max-width: 768px) {
  .offer-hero { padding: 28px 20px; }
  .offer-hero h2 { font-size: 22px; }
  .offer-hero-reward { font-size: 36px; }
  .timer-num { font-size: 28px; min-width: 40px; }
  .timer-sep { font-size: 22px; }
  .offer-hero-progress { flex-direction: column; gap: 4px; text-align: center; }
}

/* Safe area insets for notched phones */
@supports (padding: env(safe-area-inset-top)) {
  .navbar {
    padding-left: max(12px, env(safe-area-inset-left));
    padding-right: max(12px, env(safe-area-inset-right));
  }
  .footer {
    padding-bottom: max(32px, env(safe-area-inset-bottom));
  }
}
