/* MellowPineLand — Game styles (Pine Spin) */

.game-page { padding: var(--s-6) 0 var(--s-12); }

.game-layout {
  display: grid;
  gap: var(--s-6);
  max-width: 1100px;
  margin-inline: auto;
}

/* === HUD (Heads Up Display) === */
.game-hud {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3);
}
.hud-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  padding: var(--s-3) var(--s-4);
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
  position: relative;
  overflow: hidden;
}
.hud-item--accent {
  background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
  border-color: var(--amber-600);
  color: var(--pine-900);
  grid-column: span 2;
}
.hud-item--accent::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.hud-item__label {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-subtle);
}
.hud-item--accent .hud-item__label { color: var(--pine-900); opacity: 0.8; }
.hud-item__value {
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--pine-900);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: var(--s-2);
}
.hud-item__value svg { width: 18px; height: 18px; flex-shrink: 0; }
.hud-item--accent .hud-item__value { color: var(--pine-900); }
.hud-item__sub { font-size: 0.6875rem; color: var(--color-text-subtle); }
.hud-item--accent .hud-item__sub { color: var(--pine-900); opacity: 0.8; }

@media (min-width: 768px) {
  .game-hud { grid-template-columns: repeat(4, 1fr); gap: var(--s-4); }
  .hud-item--accent { grid-column: span 2; }
  .hud-item__value { font-size: var(--fs-2xl); }
}

/* === Slot Machine Frame === */
.slot-frame {
  background: linear-gradient(180deg, var(--pine-800), var(--pine-900));
  border-radius: var(--r-2xl);
  padding: var(--s-5);
  box-shadow: var(--shadow-xl), inset 0 2px 0 0 rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.slot-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(79, 195, 197, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 40%);
  pointer-events: none;
}
.slot-frame__inner { position: relative; }

.slot-machine {
  background: linear-gradient(180deg, var(--pine-900), #0A2820);
  border-radius: var(--r-xl);
  padding: var(--s-4);
  box-shadow: inset 0 4px 12px rgba(0,0,0,0.4);
  border: 2px solid var(--aurora-500);
  position: relative;
}
.slot-machine::before, .slot-machine::after {
  content: '★';
  position: absolute;
  width: 24px;
  height: 24px;
  background: var(--amber-500);
  color: var(--pine-900);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.6);
}
.slot-machine::before { top: -10px; left: -10px; }
.slot-machine::after { top: -10px; right: -10px; }

/* === Reels Grid === */
.slot-reels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-2);
  position: relative;
}
.reel {
  background: linear-gradient(180deg, #0A1F2A, #051410);
  border-radius: var(--r-md);
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(79, 195, 197, 0.2);
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.5);
}
.reel::before, .reel::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 30%;
  pointer-events: none;
  z-index: 2;
}
.reel::before { top: 0; background: linear-gradient(180deg, rgba(0,0,0,0.7), transparent); }
.reel::after { bottom: 0; background: linear-gradient(0deg, rgba(0,0,0,0.7), transparent); }

.reel__inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  transition: transform 0.08s linear;
}
.reel__cell {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8%;
}
.reel__cell img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4)); }
.reel.is-spinning .reel__inner { transition: none; }
.reel.is-stopping .reel__inner { transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); }

/* Win highlight on cells */
.reel__cell.is-winning {
  background: rgba(245, 158, 11, 0.3);
  box-shadow: inset 0 0 0 2px var(--amber-500);
  animation: winPulse 0.6s ease-in-out infinite alternate;
}
@keyframes winPulse {
  from { box-shadow: inset 0 0 0 2px var(--amber-500), 0 0 0 0 rgba(245, 158, 11, 0); }
  to { box-shadow: inset 0 0 0 2px var(--amber-500), 0 0 16px 4px rgba(245, 158, 11, 0.4); }
}

/* === Controls === */
.slot-controls {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
  margin-top: var(--s-5);
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--r-lg);
  padding: var(--s-4);
}
.control-group { display: flex; flex-direction: column; gap: var(--s-2); }
.control-group__label { font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.6); }
.bet-selector { display: flex; gap: var(--s-1); }
.bet-btn {
  flex: 1;
  padding: var(--s-2) var(--s-1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  font-weight: 700;
  transition: all var(--d-fast);
}
.bet-btn:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--aurora-400); }
.bet-btn.is-active { background: var(--aurora-500); color: var(--white); border-color: var(--aurora-400); box-shadow: 0 0 0 3px rgba(79, 195, 197, 0.25); }
.bet-btn:disabled { opacity: 0.4; }

.spin-btn {
  background: linear-gradient(180deg, var(--amber-400), var(--amber-600));
  color: var(--pine-900);
  font-size: var(--fs-base);
  font-weight: 800;
  padding: var(--s-4);
  border-radius: var(--r-lg);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 4px 0 0 var(--amber-700), inset 0 1px 0 0 rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  transition: all 0.1s var(--ease-out);
}
.spin-btn:hover { transform: translateY(-1px); box-shadow: 0 5px 0 0 var(--amber-700), inset 0 1px 0 0 rgba(255,255,255,0.4); }
.spin-btn:active { transform: translateY(3px); box-shadow: 0 1px 0 0 var(--amber-700), inset 0 1px 0 0 rgba(255,255,255,0.4); }
.spin-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.spin-btn svg { width: 22px; height: 22px; }

.secondary-controls { display: flex; gap: var(--s-2); }
.secondary-btn {
  flex: 1;
  padding: var(--s-3);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-md);
  font-size: var(--fs-xs);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-1);
  transition: all var(--d-fast);
}
.secondary-btn:hover { background: rgba(255, 255, 255, 0.12); }
.secondary-btn.is-active { background: var(--aurora-500); color: var(--white); border-color: var(--aurora-400); }
.secondary-btn svg { width: 16px; height: 16px; }

@media (min-width: 600px) {
  .slot-controls { grid-template-columns: 1fr 1fr; align-items: end; }
  .control-group--spin { grid-column: span 1; }
}

/* === Win Lines Overlay === */
.slot-reels.is-locked { pointer-events: none; }

/* === Side panels (Paytable + History) === */
.game-side { display: grid; gap: var(--s-4); }

.panel {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.panel__header {
  padding: var(--s-4) var(--s-5);
  background: var(--pine-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.panel__title {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--pine-900);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: var(--s-2);
}
.panel__title svg { width: 18px; height: 18px; }
.panel__toggle { font-size: var(--fs-xs); color: var(--color-text-muted); display: flex; align-items: center; gap: 4px; }
.panel__toggle::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--pine-500);
  border-bottom: 2px solid var(--pine-500);
  transform: rotate(45deg);
  transition: transform var(--d-base) var(--ease-out);
}
.panel[open] .panel__toggle::after { transform: rotate(-135deg); }
.panel__body { padding: var(--s-4) var(--s-5); }
.panel[open] .panel__body { display: block; }
.panel:not([open]) .panel__body { display: none; }

.paytable {
  display: grid;
  gap: var(--s-1);
}
.paytable-row {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: var(--s-3);
  align-items: center;
  padding: var(--s-2) var(--s-2);
  border-radius: var(--r-sm);
  font-size: var(--fs-sm);
}
.paytable-row:nth-child(odd) { background: var(--snow-100); }
.paytable-row img { width: 32px; height: 32px; }
.paytable-row__name { font-weight: 600; color: var(--pine-900); }
.paytable-row__pay { color: var(--amber-600); font-weight: 700; font-variant-numeric: tabular-nums; }

.history { display: flex; flex-direction: column; gap: var(--s-1); max-height: 240px; overflow-y: auto; }
.history-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: var(--s-3);
  padding: var(--s-2) var(--s-3);
  border-radius: var(--r-sm);
  font-size: var(--fs-xs);
  align-items: center;
}
.history-row:nth-child(odd) { background: var(--snow-100); }
.history-row__time { color: var(--color-text-subtle); }
.history-row__bet { color: var(--color-text-muted); font-weight: 600; }
.history-row__win { font-weight: 700; font-variant-numeric: tabular-nums; }
.history-row__win--win { color: var(--success-500); }
.history-row__win--loss { color: var(--slate-500); }
.history-empty { text-align: center; padding: var(--s-6); color: var(--color-text-subtle); font-size: var(--fs-sm); }

@media (min-width: 1024px) {
  .game-layout { grid-template-columns: 1.5fr 1fr; align-items: start; }
  .game-side { position: sticky; top: calc(var(--header-h) + var(--s-4)); }
}

/* === Modals === */
.modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--s-4);
}
.modal.is-open { display: flex; animation: fadeIn var(--d-base) var(--ease-out); }
.modal__backdrop { position: absolute; inset: 0; background: rgba(10, 31, 51, 0.8); backdrop-filter: blur(4px); }
.modal__panel {
  position: relative;
  background: var(--color-surface);
  border-radius: var(--r-2xl);
  padding: var(--s-6);
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  animation: modalIn var(--d-base) var(--ease-out);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal__close {
  position: absolute;
  top: var(--s-3);
  right: var(--s-3);
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all var(--d-fast);
}
.modal__close:hover { background: var(--snow-100); color: var(--pine-900); }
.modal__close svg { width: 20px; height: 20px; }
.modal__title {
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--pine-900);
  text-align: center;
  margin-bottom: var(--s-2);
  letter-spacing: -0.02em;
}
.modal__text { color: var(--color-text-muted); text-align: center; margin-bottom: var(--s-5); line-height: 1.6; font-size: var(--fs-sm); }

/* Win modal */
.win-modal__amount {
  text-align: center;
  font-size: var(--fs-5xl);
  font-weight: 900;
  color: var(--amber-500);
  font-variant-numeric: tabular-nums;
  margin: var(--s-4) 0;
  text-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
  letter-spacing: -0.04em;
}
.win-modal__amount.is-bonus { color: var(--aurora-500); text-shadow: 0 4px 16px rgba(79, 195, 197, 0.4); }
.win-modal__actions { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-2); }
@media (max-width: 380px) {
  .win-modal__actions { grid-template-columns: 1fr; }
}

/* Bonus pick modal */
.chest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
  margin: var(--s-5) 0;
}
.chest {
  aspect-ratio: 1;
  background: linear-gradient(180deg, var(--amber-500), var(--amber-600));
  border: 3px solid var(--amber-700);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
  position: relative;
  box-shadow: 0 4px 0 0 var(--amber-700);
  user-select: none;
}
.chest:hover:not(:disabled):not(.is-revealed) { transform: translateY(-4px); box-shadow: 0 8px 0 0 var(--amber-700); }
.chest:active:not(:disabled) { transform: translateY(2px); box-shadow: 0 2px 0 0 var(--amber-700); }
.chest:disabled { cursor: not-allowed; }
.chest.is-revealed { background: var(--aurora-100); border-color: var(--aurora-500); box-shadow: 0 0 0 0 transparent; }
.chest.is-picked {
  background: linear-gradient(180deg, var(--aurora-400), var(--aurora-500));
  border-color: var(--pine-700);
  color: var(--white);
  font-size: var(--fs-2xl);
  font-weight: 800;
  animation: chestReveal 0.6s var(--ease-out);
}
.chest.is-hidden { background: var(--slate-200); border-color: var(--slate-300); color: var(--slate-400); }
@keyframes chestReveal {
  0% { transform: scale(1) rotate(0); }
  50% { transform: scale(1.2) rotate(-5deg); }
  100% { transform: scale(1) rotate(0); }
}

/* Free spins banner */
.free-spins-banner {
  position: absolute;
  top: var(--s-3);
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--aurora-400), var(--aurora-500));
  color: var(--white);
  padding: var(--s-2) var(--s-4);
  border-radius: var(--r-full);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 16px rgba(79, 195, 197, 0.5);
  z-index: 3;
  white-space: nowrap;
  display: none;
  align-items: center;
  gap: var(--s-2);
}
.free-spins-banner.is-active { display: flex; animation: bounceIn 0.5s var(--ease-out); }
.free-spins-banner svg { width: 14px; height: 14px; }
@keyframes bounceIn {
  0% { transform: translateX(-50%) scale(0); }
  60% { transform: translateX(-50%) scale(1.1); }
  100% { transform: translateX(-50%) scale(1); }
}

/* Multiplier indicator during free spins */
.multiplier-flash {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: var(--fs-5xl);
  font-weight: 900;
  color: var(--amber-500);
  text-shadow: 0 0 20px rgba(245, 158, 11, 0.8), 0 4px 12px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 4;
  opacity: 0;
  font-variant-numeric: tabular-nums;
}
.multiplier-flash.is-active {
  animation: multiplierPop 1.2s var(--ease-out);
}
@keyframes multiplierPop {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
  20% { opacity: 1; transform: translate(-50%, -50%) scale(1.3); }
  40% { transform: translate(-50%, -50%) scale(1); }
  80% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.2); }
}

/* Gamble modal */
.gamble-display {
  background: linear-gradient(180deg, var(--pine-800), var(--pine-900));
  border-radius: var(--r-lg);
  padding: var(--s-5);
  text-align: center;
  margin-bottom: var(--s-4);
}
.gamble-display__label {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--s-2);
}
.gamble-display__amount {
  font-size: var(--fs-3xl);
  font-weight: 900;
  color: var(--amber-400);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.gamble-display__round {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.5);
  margin-top: var(--s-2);
}
.gamble-cards { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }
.gamble-card {
  aspect-ratio: 1;
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--slate-700);
  transition: all var(--d-fast);
  position: relative;
  cursor: pointer;
  min-height: 120px;
}
.gamble-card--red { color: var(--danger-500); }
.gamble-card--black { color: var(--slate-900); }
.gamble-card:hover:not(:disabled) { transform: translateY(-2px); border-color: var(--aurora-500); box-shadow: var(--shadow-md); }
.gamble-card:disabled { cursor: not-allowed; }
.gamble-card.is-revealed-wrong { background: var(--danger-100); border-color: var(--danger-500); animation: shake 0.4s var(--ease-out); }
.gamble-card.is-revealed-correct { background: var(--success-100); border-color: var(--success-500); }
.gamble-card__label { font-size: var(--fs-xs); font-weight: 600; color: var(--color-text-muted); margin-top: var(--s-1); text-transform: uppercase; letter-spacing: 0.1em; }
.gamble-card__suit { font-size: 3rem; }
.gamble-actions { display: flex; gap: var(--s-2); margin-top: var(--s-4); }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-8px); }
  40%, 80% { transform: translateX(8px); }
}

/* Reality check modal */
.reality-check-modal__icon {
  width: 64px;
  height: 64px;
  background: var(--amber-100);
  color: var(--amber-600);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--s-4);
}
.reality-check-modal__icon svg { width: 32px; height: 32px; }
.reality-check-modal__stat {
  background: var(--pine-100);
  border-radius: var(--r-lg);
  padding: var(--s-4);
  text-align: center;
  margin-bottom: var(--s-4);
}
.reality-check-modal__stat-value {
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: var(--pine-900);
  font-variant-numeric: tabular-nums;
}
.reality-check-modal__stat-label {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* Self-exclusion modal */
.exclusion-form { display: grid; gap: var(--s-3); margin: var(--s-4) 0; }
.exclusion-option {
  padding: var(--s-4);
  background: var(--snow-100);
  border: 2px solid var(--color-border);
  border-radius: var(--r-md);
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  gap: var(--s-3);
  transition: all var(--d-fast);
}
.exclusion-option:hover { border-color: var(--aurora-400); background: var(--aurora-100); }
.exclusion-option input { width: 20px; height: 20px; accent-color: var(--pine-700); }
.exclusion-option__title { font-weight: 700; color: var(--pine-900); }
.exclusion-option__sub { font-size: var(--fs-xs); color: var(--color-text-muted); }

/* Game footer note */
.game-footer-note {
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--color-text-subtle);
  padding: var(--s-6) var(--s-4);
  max-width: 720px;
  margin-inline: auto;
  line-height: 1.6;
}

/* Settings drawer toggle in game header */
.game-toolbar {
  display: flex;
  gap: var(--s-2);
  align-items: center;
  margin-bottom: var(--s-4);
}
.toolbar-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--d-fast);
}
.toolbar-btn:hover { color: var(--pine-700); border-color: var(--aurora-400); }
.toolbar-btn.is-active { color: var(--aurora-500); border-color: var(--aurora-400); background: var(--aurora-100); }
.toolbar-btn svg { width: 20px; height: 20px; }
.toolbar-spacer { flex: 1; }

/* Self-exclusion block screen */
.exclusion-block {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: var(--pine-900);
  color: var(--white);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--s-6);
}
.exclusion-block.is-active { display: flex; }
.exclusion-block__panel { text-align: center; max-width: 480px; }
.exclusion-block__icon { width: 80px; height: 80px; background: var(--aurora-500); color: var(--white); border-radius: var(--r-full); display: flex; align-items: center; justify-content: center; margin: 0 auto var(--s-5); }
.exclusion-block__icon svg { width: 40px; height: 40px; }
.exclusion-block__title { font-size: var(--fs-2xl); font-weight: 800; margin-bottom: var(--s-3); }
.exclusion-block__text { color: rgba(255, 255, 255, 0.8); margin-bottom: var(s-5); line-height: 1.6; }
.exclusion-block__timer {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  margin: var(--s-5) 0;
  font-variant-numeric: tabular-nums;
}
.exclusion-block__timer-value { font-size: var(--fs-3xl); font-weight: 800; color: var(--amber-400); }
.exclusion-block__timer-label { font-size: var(--fs-xs); color: rgba(255, 255, 255, 0.6); text-transform: uppercase; letter-spacing: 0.1em; margin-top: var(--s-1); }

/* Help orgs cards */
.help-org {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  transition: all var(--d-fast);
}
.help-org:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--aurora-300); }
.help-org__name { font-weight: 700; color: var(--pine-900); }
.help-org__desc { font-size: var(--fs-sm); color: var(--color-text-muted); line-height: 1.5; }
.help-org__contact { font-size: var(--fs-sm); color: var(--pine-700); font-weight: 600; }
.help-orgs { display: grid; grid-template-columns: 1fr; gap: var(--s-3); }
@media (min-width: 600px) { .help-orgs { grid-template-columns: repeat(2, 1fr); } }

/* Quiz */
.quiz { display: grid; gap: var(--s-5); }
.quiz-question { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--r-lg); padding: var(--s-5); }
.quiz-question__text { font-weight: 600; color: var(--pine-900); margin-bottom: var(--s-3); }
.quiz-options { display: grid; gap: var(--s-2); }
.quiz-option {
  padding: var(--s-3) var(--s-4);
  background: var(--snow-100);
  border: 1.5px solid var(--color-border);
  border-radius: var(--r-md);
  text-align: left;
  font-size: var(--fs-sm);
  font-weight: 500;
  transition: all var(--d-fast);
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.quiz-option:hover { border-color: var(--aurora-400); background: var(--aurora-100); }
.quiz-option.is-selected { border-color: var(--pine-700); background: var(--pine-100); }
.quiz-option__indicator {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--color-border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.quiz-option.is-selected .quiz-option__indicator { border-color: var(--pine-700); background: var(--pine-700); }
.quiz-option.is-selected .quiz-option__indicator::after { content: '✓'; color: var(--white); font-size: 12px; font-weight: 800; }
.quiz-result { background: var(--pine-100); border-radius: var(--r-lg); padding: var(--s-5); text-align: center; }

/* No deposit banner in RG */
.no-deposit-banner {
  background: linear-gradient(135deg, var(--pine-700), var(--pine-900));
  color: var(--white);
  padding: var(--s-6);
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  gap: var(--s-4);
  margin: var(--s-6) 0;
}
.no-deposit-banner__icon { width: 56px; height: 56px; background: var(--aurora-400); color: var(--pine-900); border-radius: var(--r-full); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.no-deposit-banner__icon svg { width: 28px; height: 28px; }
.no-deposit-banner__title { font-size: var(--fs-xl); font-weight: 800; margin-bottom: var(--s-1); }
.no-deposit-banner__text { font-size: var(--fs-sm); opacity: 0.9; line-height: 1.5; }
