/* ================================================================
   TaskRewards – Authentic Offerwall & Rewards Platform Stylesheet
   Modern Slate UI/UX • Dedicated Video Ad Watch Screen • Sunday Payouts
   ================================================================ */

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

:root {
  --c-bg:        #0b0f19;
  --c-bg-card:   #131b2e;
  --c-bg-card-hover: #18233c;
  --c-border:    #1e293b;
  --c-border-hi: #334155;

  --c-primary:   #6366f1;
  --c-primary-hover: #4f46e5;
  --c-green:     #10b981;
  --c-green-glow:rgba(16, 185, 129, 0.25);
  --c-amber:     #f59e0b;
  --c-amber-glow:rgba(245, 158, 11, 0.25);
  --c-red:       #ef4444;

  --c-text:      #f8fafc;
  --c-text-2:    #94a3b8;
  --c-text-3:    #64748b;

  --radius-s:  6px;
  --radius-m:  10px;
  --radius-l:  14px;
  --radius-xl: 20px;

  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 25px rgba(99, 102, 241, 0.2);
}

html { height: 100%; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* ── Live Payouts Ticker ─────────────────────────────────────── */
.live-payouts-ticker {
  display: flex;
  align-items: center;
  background: #0d1322;
  border-bottom: 1px solid var(--c-border);
  padding: 8px 14px;
  gap: 12px;
  font-size: 0.76rem;
  overflow: hidden;
}

.ticker-badge {
  background: var(--c-green);
  color: #0b0f19;
  font-weight: 800;
  font-size: 0.65rem;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.ticker-content-wrap {
  overflow: hidden;
  white-space: nowrap;
  flex: 1;
}

.ticker-text {
  display: inline-block;
  color: var(--c-text-2);
  animation: tickerSlide 25s linear infinite;
}

.ticker-text strong {
  color: var(--c-text);
}

.ticker-text .dot {
  margin: 0 8px;
  color: var(--c-text-3);
}

@keyframes tickerSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── App Shell ───────────────────────────────────────────────── */
.app-shell {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding: 0 0 24px;
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Header Bar ────────────────────────────────────────────── */
.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--c-bg-card);
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: 0;
  z-index: 40;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-s);
  background: linear-gradient(135deg, var(--c-primary), #4338ca);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.1;
  color: #fff;
}

.logo-tagline {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: var(--c-primary);
}

.header-wallet-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 6px 12px;
  border-radius: 99px;
}

.wallet-icon {
  font-size: 0.95rem;
}

.wallet-text {
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.wallet-val {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--c-green);
  font-family: 'JetBrains Mono', monospace;
}

.wallet-lbl {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--c-text-2);
}

/* ── Navigation Tabs ─────────────────────────────────────────── */
.app-nav-tabs {
  display: flex;
  background: #0f172a;
  border-bottom: 1px solid var(--c-border);
  padding: 4px;
  gap: 4px;
}

.nav-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 8px;
  background: transparent;
  border: none;
  color: var(--c-text-2);
  font-weight: 600;
  font-size: 0.82rem;
  border-radius: var(--radius-s);
  cursor: pointer;
  transition: all 0.2s ease;
}

.nav-tab.active {
  background: var(--c-bg-card);
  color: #fff;
  border: 1px solid var(--c-border-hi);
  font-weight: 700;
}

.nav-tab:hover:not(.active) {
  background: rgba(255,255,255,0.03);
}

/* ── Views ───────────────────────────────────────────────────── */
.tab-view {
  padding: 16px 18px;
}

/* ── Offerwall Hero ──────────────────────────────────────────── */
.offerwall-hero {
  margin-bottom: 14px;
}

.hero-main-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.hero-desc {
  font-size: 0.84rem;
  color: var(--c-text-2);
  line-height: 1.45;
}

.hero-desc strong {
  color: var(--c-green);
}

/* ── Stats Card ──────────────────────────────────────────────── */
.stats-card {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-m);
  padding: 12px 8px;
  margin-bottom: 18px;
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.stat-label {
  font-size: 0.68rem;
  color: var(--c-text-3);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.stat-value {
  font-size: 1.05rem;
  font-weight: 800;
}

.text-green { color: var(--c-green); }
.text-amber { color: var(--c-amber); }

.stat-divider {
  width: 1px;
  height: 26px;
  background: var(--c-border);
}

/* ── Offerwall Feed (Real Task Cards) ────────────────────────── */
.offerwall-feed {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.offer-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-l);
  padding: 16px;
  box-shadow: var(--shadow-card);
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offer-card:hover {
  border-color: var(--c-border-hi);
  background: var(--c-bg-card-hover);
}

.offer-card.task-completed {
  border-color: rgba(16, 185, 129, 0.35);
  background: rgba(16, 185, 129, 0.04);
}

.offer-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.provider-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--c-text-2);
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.04);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--c-border);
}

.prov-dot {
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--c-green);
}

.offer-duration-tag {
  font-size: 0.7rem;
  color: var(--c-text-2);
  font-weight: 600;
}

.offer-reward-tag {
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--c-green), #059669);
  padding: 3px 10px;
  border-radius: 99px;
}

.offer-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: #fff;
}

.offer-sub {
  font-size: 0.8rem;
  color: var(--c-text-2);
  margin-top: 2px;
}

.offer-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
}

.offer-status-badge {
  font-size: 0.74rem;
  font-weight: 700;
}

.offer-status-badge.available {
  color: var(--c-green);
}

.offer-status-badge.completed {
  color: var(--c-text-3);
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-hover) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  border: none;
  border-radius: var(--radius-s);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-1px);
  filter: brightness(1.1);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 11px 16px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  color: var(--c-text);
  font-weight: 600;
  font-size: 0.86rem;
  border-radius: var(--radius-s);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: var(--c-bg-card-hover);
  border-color: var(--c-border-hi);
}

.btn-danger {
  padding: 10px 14px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
  font-weight: 600;
  font-size: 0.82rem;
  border-radius: var(--radius-s);
  cursor: pointer;
  width: 100%;
}

.btn-block {
  width: 100%;
  margin-top: 10px;
}

.refresh-bar {
  margin-top: 18px;
}

/* ── Sunday Payouts Section ──────────────────────────────────── */
.sunday-payout-hero {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(99, 102, 241, 0.08) 100%);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-l);
  padding: 18px;
  margin-bottom: 16px;
}

.hero-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.sun-badge {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--c-amber);
  letter-spacing: 0.5px;
}

.batch-status {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--c-green);
}

.sun-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.sun-sub {
  font-size: 0.82rem;
  color: var(--c-text-2);
  line-height: 1.4;
  margin-bottom: 16px;
}

.payout-countdown-box {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-m);
  padding: 12px;
  text-align: center;
}

.box-lbl {
  display: block;
  font-size: 0.66rem;
  font-weight: 800;
  color: var(--c-text-3);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.countdown-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.time-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--c-border);
  padding: 6px 10px;
  border-radius: var(--radius-s);
  min-width: 52px;
}

.time-card span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--c-amber);
}

.time-card label {
  font-size: 0.6rem;
  color: var(--c-text-3);
  text-transform: uppercase;
}

.time-colon {
  font-weight: 800;
  color: var(--c-amber);
  font-size: 1.1rem;
}

/* ── Wallet Overview Card ────────────────────────────────────── */
.wallet-balance-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-l);
  padding: 18px;
  margin-bottom: 16px;
}

.wb-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.wb-title {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--c-text-3);
  letter-spacing: 0.5px;
}

.wb-rate {
  font-size: 0.72rem;
  color: var(--c-text-2);
  font-weight: 600;
}

.wb-main {
  font-size: 2.1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  font-family: 'JetBrains Mono', monospace;
}

.wb-main small {
  font-size: 1rem;
  color: var(--c-green);
  font-weight: 700;
}

.wb-usd {
  font-size: 0.85rem;
  color: var(--c-text-2);
  margin-top: 6px;
}

.wb-usd strong {
  color: #fff;
}

/* ── Payment Methods Grid ────────────────────────────────────── */
.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.pm-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-m);
  padding: 10px 4px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pm-card.active, .pm-card:hover {
  border-color: var(--c-primary);
  background: var(--c-bg-card-hover);
}

.pm-icon {
  font-size: 1.25rem;
  margin-bottom: 2px;
}

.pm-name {
  font-size: 0.74rem;
  font-weight: 700;
  color: #fff;
}

.pm-min {
  font-size: 0.62rem;
  color: var(--c-text-3);
}

/* ── Cashout Form & History ──────────────────────────────────── */
.cashout-form-card, .history-card, .account-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-l);
  padding: 18px;
  margin-bottom: 16px;
}

.form-title {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: #fff;
}

.form-group {
  margin-bottom: 14px;
}

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-text-2);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 11px 14px;
  background: #0b0f19;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-s);
  color: #fff;
  font-size: 0.9rem;
  outline: none;
}

.form-input:focus {
  border-color: var(--c-primary);
}

.history-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.empty-history {
  font-size: 0.82rem;
  color: var(--c-text-3);
  text-align: center;
  padding: 14px;
}

.history-item {
  background: #0b0f19;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-m);
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.history-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 700;
}

.history-method { color: var(--c-primary); }
.history-address { font-family: 'JetBrains Mono', monospace; font-size: 0.74rem; color: var(--c-text-2); }

.history-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
}

.history-points { color: var(--c-amber); font-weight: 800; }
.badge-sun {
  background: rgba(245, 158, 11, 0.15);
  color: var(--c-amber);
  padding: 2px 8px;
  border-radius: 99px;
  font-size: 0.68rem;
  font-weight: 700;
}

.history-date { font-size: 0.66rem; color: var(--c-text-3); }

/* ── Account View ────────────────────────────────────────────── */
.user-profile-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--c-primary), #4338ca);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.user-name { font-size: 1.05rem; font-weight: 800; color: #fff; }
.user-id-tag { font-size: 0.75rem; color: var(--c-text-3); font-family: 'JetBrains Mono', monospace; }

.storage-badge-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 12px;
  border-radius: var(--radius-m);
  font-size: 0.8rem;
  color: var(--c-text-2);
  line-height: 1.4;
  margin-bottom: 16px;
}

.box-title { font-size: 0.88rem; font-weight: 700; margin-bottom: 10px; color: #fff; }

/* ── Sponsored Banners ───────────────────────────────────────── */
.banner-ad-container {
  background: var(--c-bg-card);
  border: 1px dashed var(--c-border);
  border-radius: var(--radius-m);
  padding: 6px;
  margin: 12px 18px;
}

.ad-header-row { margin-bottom: 2px; text-align: right; }
.ad-label { font-size: 0.58rem; font-weight: 800; color: var(--c-text-3); letter-spacing: 0.5px; }
.banner-iframe { width: 100%; height: 85px; border: none; display: block; }

/* ── Footer ──────────────────────────────────────────────────── */
.app-footer {
  text-align: center;
  padding: 16px;
  font-size: 0.72rem;
  color: var(--c-text-3);
}

.user-id { font-family: 'JetBrains Mono', monospace; margin-bottom: 3px; }

/* ══════════════════════════════════════════════════════════════ */
/*  DEDICATED FULLSCREEN VIDEO AD WATCH VIEW MODAL               */
/* ══════════════════════════════════════════════════════════════ */
.video-watch-modal {
  position: fixed;
  inset: 0;
  background: rgba(11, 15, 25, 0.96);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow-y: auto;
  backdrop-filter: blur(12px);
}

.watch-modal-container {
  width: 100%;
  max-width: 520px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border-hi);
  border-radius: var(--radius-l);
  padding: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.watch-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.watch-badge {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--c-primary);
  letter-spacing: 0.5px;
}

.watch-modal-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}

.btn-exit-ad {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: var(--radius-s);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-exit-ad:hover {
  background: rgba(239, 68, 68, 0.3);
}

.watch-timer-banner {
  background: #0b0f19;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-m);
  padding: 12px;
}

.wt-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.wt-status {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
}

.wt-status strong {
  color: var(--c-amber);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.95rem;
}

.wt-reward-badge {
  background: var(--c-green);
  color: #0b0f19;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 99px;
}

.wt-progress-track {
  width: 100%;
  height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 6px;
}

.wt-progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--c-amber), var(--c-green));
  transition: width 1s linear;
}

.wt-hint {
  font-size: 0.72rem;
  color: var(--c-text-3);
  line-height: 1.35;
}

.watch-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--c-border);
}

.active-video-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.watch-sponsor-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: var(--radius-m);
  padding: 10px 12px;
  gap: 10px;
}

.spons-text {
  display: flex;
  flex-direction: column;
  font-size: 0.75rem;
  color: var(--c-text-2);
}

.spons-tag {
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--c-primary);
}

.spons-btn {
  background: var(--c-primary);
  color: #fff;
  border: none;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-s);
  cursor: pointer;
  white-space: nowrap;
}

.spons-btn:hover {
  filter: brightness(1.1);
}

.btn-claim-reward {
  width: 100%;
  padding: 13px;
  border: none;
  border-radius: var(--radius-m);
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #1e293b;
  color: var(--c-text-3);
}

.btn-claim-reward.unlocked {
  background: linear-gradient(135deg, var(--c-green), #059669);
  color: #fff;
  box-shadow: 0 4px 20px var(--c-green-glow);
  cursor: pointer;
  animation: pulseClaim 1.5s infinite;
}

@keyframes pulseClaim {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

/* ── Sponsored Banners ───────────────────────────────────────── */
.banner-ad-container {
  background: var(--c-bg-card);
  border: 1px dashed var(--c-border);
  border-radius: var(--radius-m);
  padding: 8px 12px;
  margin: 16px 18px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ad-header-row {
  display: flex;
  justify-content: flex-end;
}

.ad-label {
  font-size: 0.6rem;
  font-weight: 800;
  color: var(--c-text-3);
  letter-spacing: 0.5px;
}

.banner-ad-content {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: var(--radius-s);
}

.banner-iframe {
  width: 100%;
  height: 90px;
  border: none;
  display: block;
}

.banner-in-tab {
  margin: 12px 0 16px 0;
  background: rgba(0,0,0,0.25);
}

/* ── 5-Ads Milestone Bonus Card & Button ─────────────────────── */
.milestone-bonus-card {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(239, 68, 68, 0.08) 100%);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-l);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.1);
  margin-top: 4px;
}

.milestone-bonus-card.unlocked {
  border-color: rgba(245, 158, 11, 0.7);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.25);
}

.mb-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mb-badge {
  font-size: 0.64rem;
  font-weight: 800;
  color: var(--c-amber);
  letter-spacing: 0.5px;
}

.mb-title {
  font-size: 0.94rem;
  font-weight: 800;
  color: #fff;
}

.mb-sub {
  font-size: 0.76rem;
  color: var(--c-text-2);
}

.btn-bonus-action {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--c-border);
  color: var(--c-text-3);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--radius-s);
  cursor: default;
  white-space: nowrap;
}

.btn-bonus-action.unlocked {
  background: linear-gradient(135deg, var(--c-amber), #d97706);
  color: #0b0f19;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
  font-weight: 800;
  animation: pulseClaim 1.5s infinite;
}

/* ── Modal Bonus Action ──────────────────────────────────────── */
.bonus-ad-click-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(239, 68, 68, 0.1));
  border: 1px solid rgba(245, 158, 11, 0.5);
  border-radius: var(--radius-m);
  padding: 12px 14px;
  gap: 12px;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
}

.bonus-card-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bonus-tag {
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--c-amber);
  letter-spacing: 0.5px;
}

.bonus-headline {
  font-size: 0.86rem;
  font-weight: 800;
  color: #fff;
}

.btn-bonus-claim {
  background: linear-gradient(135deg, var(--c-amber), #d97706);
  color: #0b0f19;
  border: none;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: var(--radius-s);
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
  animation: pulseClaim 1.5s infinite;
}

.bonus-lock-pill {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-s);
  padding: 8px 12px;
  font-size: 0.74rem;
  color: var(--c-text-2);
  text-align: center;
}

.bonus-lock-pill strong {
  color: var(--c-amber);
}

/* ── SEO Guide & FAQ Section ─────────────────────────────────── */
.seo-guide-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-l);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}

.guide-h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}

.guide-p {
  font-size: 0.84rem;
  color: var(--c-text-2);
  line-height: 1.5;
}

.guide-steps-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.guide-step-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #0b0f19;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-m);
  padding: 12px 14px;
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 99px;
  background: var(--c-primary);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-body h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.step-body p {
  font-size: 0.78rem;
  color: var(--c-text-2);
  line-height: 1.4;
}

.seo-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 6px 0;
}

.sbg-item {
  background: #0b0f19;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-m);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.sbg-icon {
  font-size: 1.3rem;
  margin-bottom: 2px;
}

.sbg-item h5 {
  font-size: 0.88rem;
  font-weight: 800;
  color: #fff;
}

.sbg-item p {
  font-size: 0.72rem;
  color: var(--c-text-2);
  line-height: 1.35;
}

.faq-main-title {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-top: 10px;
  border-top: 1px solid var(--c-border);
  padding-top: 14px;
}

.faq-item {
  background: #0b0f19;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-m);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-q {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--c-amber);
}

.faq-a {
  font-size: 0.78rem;
  color: var(--c-text-2);
  line-height: 1.45;
}

/* ── Toast Container ─────────────────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.toast-message {
  background: rgba(19, 27, 46, 0.95);
  border: 1px solid var(--c-border-hi);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  color: #fff;
  padding: 10px 18px;
  border-radius: 99px;
  font-size: 0.84rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(12px);
  white-space: nowrap;
}

.toast-message.show {
  opacity: 1;
  transform: translateY(0);
}