/* ============================================================
   Chorenival v0.3.0 — Design System
   Dark carnival aesthetic with shared structural DNA
   Red + Gold accents, pixel-sharp radius, tactical grid
   ============================================================ */

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

:root {
  /* Structural — red-tinted for Chorenival */
  --bg-primary:     #050505;
  --bg-secondary:   #100808;
  --bg-surface:     #180c0c;
  --bg-card:        #140a0a;
  --bg-card-hover:  #201010;

  --text-primary:   #f0e0e0;
  --text-secondary: #a07878;
  --text-muted:     #603535;

  --border:         #281414;
  --border-light:   #481e1e;

  --font-body:      'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:      'Fira Code', 'JetBrains Mono', 'Consolas', monospace;
  --font-pixel:     'Press Start 2P', monospace;

  --radius:         3px;
  --radius-lg:      4px;
  --transition:     200ms ease;
  --transition-slow: 350ms ease;

  /* Chorenival carnival palette — Gold (primary) + Red (secondary) */
  --accent:             #f5c542;
  --accent-dim:         rgba(245, 197, 66, 0.08);
  --accent-hover:       #c49a1a;
  --accent-glow:        rgba(245, 197, 66, 0.35);
  --accent-glow-strong: rgba(245, 197, 66, 0.6);

  --red:            #e8423d;
  --red-dim:        #a82e2a;
  --red-bright:     #f06860;
  --red-glow:       rgba(232, 66, 61, 0.35);

  /* Semantic difficulty */
  --easy:           #4caf88;
  --medium:         #f0a04b;
  --hard:           #e05c5c;

  /* Effects */
  --glow-accent:    0 0 18px rgba(245, 197, 66, 0.35);
  --glow-red:       0 0 18px rgba(232, 66, 61, 0.35);
  --shadow:         0 4px 28px rgba(0,0,0,0.55);
  --shadow-card:    0 2px 16px rgba(0,0,0,0.4);
}

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Fira+Code:wght@400;500;600&family=Press+Start+2P&display=swap');

/* ── Base ── */

body {
  font-family: var(--font-mono);
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.5;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--text-primary); }

.back-link {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 500;
  color: #39ff14;
  text-decoration: none;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 0.6rem;
  border: 1px solid rgba(57, 255, 20, 0.2);
  border-radius: 3px;
  background: rgba(5, 5, 5, 0.9);
  margin-right: 0.75rem;
  transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease, color 200ms ease;
}
.back-link:hover {
  color: #f06860;
  border-color: rgba(232, 66, 61, 0.6);
  box-shadow: 0 0 12px rgba(232, 66, 61, 0.4), 0 0 24px rgba(245, 197, 66, 0.15);
  background: linear-gradient(135deg, rgba(245, 197, 66, 0.06), rgba(232, 66, 61, 0.08));
}

button {
  font-family: var(--font-mono);
  cursor: pointer;
}

/* ── Top bar ── */

.top-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--accent) 50%, var(--red) 100%);
  background-size: 200% 100%;
  animation: barSweep 4s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(57, 255, 20, 0.6), 0 0 30px rgba(57, 255, 20, 0.35);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
}

@keyframes barSweep {
  0%, 100% { background-position: 0% 0; }
  50% { background-position: 100% 0; }
}

/* ── Header ── */

.header {
  background: linear-gradient(90deg, #0f0a1f 0%, #1a1030 50%, #0f0a1f 100%);
  border-bottom: 2px solid var(--accent-hover);
  padding: 0 2rem;
  padding-top: 3px;
  height: 67px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--glow-accent), 0 2px 20px rgba(0,0,0,0.6);
}

.header-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-logo {
  font-size: 1.6rem;
  line-height: 1;
}

.header-title {
  font-family: var(--font-pixel);
  font-size: 0.85rem;
  color: var(--accent);
  text-shadow: var(--glow-accent);
  letter-spacing: 0.05em;
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.header-stat {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.header-stat-label {
  color: var(--text-muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.header-stat-value {
  color: var(--accent);
  font-weight: 600;
}

/* ── Page Layout ── */

.page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem;
}

/* ── Section titles ── */

.section-title {
  font-family: var(--font-pixel);
  font-size: 0.65rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border-light), transparent);
}

/* ── Cards / Widgets ── */

.card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  position: relative;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}

.card-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.card-body {
  padding: 1.25rem;
}

/* ── Player Stats Bar ── */

.player-bar {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-card);
}

.player-level-badge {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--accent-hover), var(--accent));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--glow-accent);
}

.player-level-badge .level-num {
  font-family: var(--font-pixel);
  font-size: 0.75rem;
  color: #0a0b12;
  line-height: 1;
}

.player-level-badge .level-label {
  font-size: 0.55rem;
  color: rgba(10,11,18,0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.player-xp-section {
  min-width: 0;
}

.player-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.xp-bar-track {
  height: 8px;
  background: var(--bg-card);
  border-radius: 4px;
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 0.3rem;
}

.xp-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-hover), var(--accent));
  border-radius: 4px;
  transition: width 0.6s ease;
  box-shadow: 0 0 8px rgba(245,197,66,0.5);
}

.xp-label {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.player-stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  min-width: 60px;
}

.player-stat-block .stat-value {
  font-family: var(--font-pixel);
  font-size: 0.85rem;
  color: var(--accent);
}

.player-stat-block .stat-label {
  font-size: 0.65rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
}

/* ── Games Grid ── */

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.game-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  color: var(--text-primary);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s, background 0.2s;
  position: relative;
  overflow: hidden;
}

.game-card:hover {
  border-color: var(--accent-hover);
  border-top: 3px solid var(--accent);
  box-shadow: var(--glow-accent);
  transform: translateY(-2px);
  background: var(--bg-card);
  color: var(--text-primary);
}

.game-card.locked {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.game-card.locked:hover {
  transform: none;
  box-shadow: none;
}

.game-icon {
  font-size: 2.5rem;
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(245,197,66,0.3));
}

.game-name {
  font-family: var(--font-pixel);
  font-size: 0.55rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.game-desc {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.game-lock-badge {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.15rem 0.4rem;
  font-size: 0.6rem;
  color: var(--text-muted);
}

/* ── Active Chores ── */

.chore-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.chore-item {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s;
  position: relative;
}

.chore-item:hover {
  border-color: var(--border-light);
}

.chore-difficulty {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.chore-difficulty.easy   { background: var(--easy);   box-shadow: 0 0 6px var(--easy); }
.chore-difficulty.medium { background: var(--medium); box-shadow: 0 0 6px var(--medium); }
.chore-difficulty.hard   { background: var(--hard);   box-shadow: 0 0 6px var(--hard); }

.chore-title {
  font-size: 0.85rem;
  color: var(--text-primary);
}

.chore-source {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.chore-actions {
  display: flex;
  gap: 0.4rem;
}

.btn-done {
  background: var(--easy);
  color: #0a0b12;
  border: none;
  border-radius: var(--radius-lg);
  padding: 0.3rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  transition: opacity 0.15s;
}

.btn-done:hover { opacity: 0.85; }

.btn-opt {
  background: none;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.3rem 0.5rem;
  font-size: 0.7rem;
  transition: color 0.15s, border-color 0.15s;
}

.btn-opt:hover {
  color: var(--text-primary);
  border-color: var(--border-light);
}

.chore-empty {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  padding: 2rem 0;
  font-style: italic;
}

/* ── Difficulty badges ── */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.badge.easy   { background: rgba(76,175,136,0.15); color: var(--easy);   border: 1px solid rgba(76,175,136,0.3); }
.badge.medium { background: rgba(240,160,75,0.15);  color: var(--medium); border: 1px solid rgba(240,160,75,0.3); }
.badge.hard   { background: rgba(224,92,92,0.15);   color: var(--hard);   border: 1px solid rgba(224,92,92,0.3); }

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-lg);
  font-size: 0.8rem;
  font-weight: 500;
  border: none;
  transition: opacity 0.15s, transform 0.1s, box-shadow 0.15s;
  cursor: pointer;
  font-family: var(--font-mono);
  text-decoration: none;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent-hover), var(--accent));
  color: #0a0b12;
  font-weight: 700;
  box-shadow: var(--glow-accent);
}

.btn-primary:hover { opacity: 0.9; }

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

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

.btn-danger {
  background: rgba(232,66,61,0.15);
  color: var(--hard);
  border: 1px solid rgba(232,66,61,0.3);
}

.btn-danger:hover { background: rgba(232,66,61,0.25); }

.btn-sm {
  padding: 0.35rem 0.7rem;
  font-size: 0.72rem;
}

/* ── Modal ── */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow), var(--glow-accent);
  padding: 2rem;
  max-width: 480px;
  width: 90%;
  transform: translateY(16px) scale(0.97);
  transition: transform 0.2s;
}

.modal-backdrop.open .modal {
  transform: translateY(0) scale(1);
}

.modal-title {
  font-family: var(--font-pixel);
  font-size: 0.65rem;
  color: var(--accent);
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
}

.modal-body {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.modal-actions {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
}

/* ── Toast notifications ── */

.toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
}

.toast {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 0.7rem 1rem;
  font-size: 0.8rem;
  max-width: 280px;
  box-shadow: var(--shadow);
  animation: toastIn 0.25s ease forwards;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.toast.xp    { border-color: var(--accent-hover);  color: var(--accent); }
.toast.level { border-color: var(--red);     color: var(--red-bright); box-shadow: var(--glow-red); }
.toast.done  { border-color: var(--easy);       color: var(--easy); }
.toast.warn  { border-color: var(--medium);     color: var(--medium); }
.toast.error { border-color: var(--red-dim);    color: var(--hard); }

@keyframes toastIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes toastOut {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(20px); }
}

/* ── XP pop animation ── */

.xp-pop {
  position: fixed;
  font-family: var(--font-pixel);
  font-size: 0.6rem;
  color: var(--accent);
  text-shadow: var(--glow-accent);
  pointer-events: none;
  z-index: 400;
  animation: xpFloat 1.4s ease-out forwards;
}

@keyframes xpFloat {
  0%   { opacity: 1; transform: translateY(0) scale(1); }
  60%  { opacity: 1; transform: translateY(-50px) scale(1.1); }
  100% { opacity: 0; transform: translateY(-90px) scale(0.8); }
}

/* ── Achievements ── */

.achievement-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.achievement-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.7rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.achievement-badge.unlocked {
  border-color: var(--accent-hover);
  color: var(--accent);
  background: rgba(245,197,66,0.08);
}

/* ── Real Rewards booth ── */

.reward-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.reward-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  gap: 1rem;
  position: relative;
}

.reward-title {
  font-size: 0.85rem;
  flex: 1;
}

.reward-cost {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
}

.reward-item.redeemed {
  opacity: 0.45;
}

.reward-item.redeemed .reward-title {
  text-decoration: line-through;
  color: var(--text-secondary);
}

/* ── Game shell (shared for all game pages) ── */

.game-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.game-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  gap: 1.5rem;
}

.game-title {
  font-family: var(--font-pixel);
  font-size: 0.75rem;
  color: var(--accent);
  text-shadow: var(--glow-accent);
  text-align: center;
  letter-spacing: 0.1em;
}

.game-instructions {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 380px;
  line-height: 1.6;
}

.game-result-card {
  background: var(--bg-surface);
  border: 1px solid var(--accent-hover);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  max-width: 380px;
  width: 100%;
  box-shadow: var(--glow-accent), var(--shadow);
  animation: popIn 0.3s ease;
}

@keyframes popIn {
  from { transform: scale(0.85); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

.game-result-chore {
  font-size: 1rem;
  font-weight: 600;
  margin: 0.75rem 0;
}

.game-result-xp {
  font-family: var(--font-pixel);
  font-size: 0.6rem;
  color: var(--accent);
  margin-top: 0.5rem;
}

/* ── Tent stripe accent (used in game headers) ── */

.tent-stripe {
  background: repeating-linear-gradient(
    -45deg,
    var(--red),
    var(--red) 8px,
    var(--accent) 8px,
    var(--accent) 16px
  );
  height: 4px;
  width: 100%;
}

/* ── Input / Form ── */

.input {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.55rem 0.8rem;
  font-size: 0.85rem;
  font-family: var(--font-mono);
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.input:focus {
  border-color: var(--accent-hover);
  box-shadow: 0 0 0 3px rgba(245,197,66,0.1);
}

.input::placeholder { color: var(--text-muted); }

.input-row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

/* ── Tabs (settings panel) ── */

.tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.tab-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.6rem 1rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
  cursor: pointer;
  font-family: var(--font-mono);
  margin-bottom: -1px;
  transition: color 0.15s, border-color 0.15s;
}

.tab-btn.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.tab-btn:hover:not(.active) { color: var(--text-primary); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── Scrollbar ── */

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* ── Corner Bracket Decorations ── */

.card::before,
.game-card::before,
.player-bar::before,
.chore-item::before,
.reward-item::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 12px; height: 12px;
  border-top: 2px solid var(--accent-hover);
  border-left: 2px solid var(--accent-hover);
  transition: border-color var(--transition), filter var(--transition);
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}

.card::after,
.game-card::after,
.player-bar::after,
.chore-item::after,
.reward-item::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 12px; height: 12px;
  border-bottom: 2px solid var(--accent-hover);
  border-right: 2px solid var(--accent-hover);
  transition: border-color var(--transition), filter var(--transition);
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}

.card:hover::before,
.game-card:hover::before,
.chore-item:hover::before,
.card:hover::after,
.game-card:hover::after,
.chore-item:hover::after {
  border-color: var(--accent);
  opacity: 1;
  filter: drop-shadow(0 0 4px var(--accent-glow));
}

/* ── Responsive ── */

@media (max-width: 768px) {
  .page { padding: 1rem; }
  .header { padding: 0 1rem; }

  .player-bar {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }

  .player-stat-block { display: none; }
  .player-stat-block:nth-child(3) { display: flex; } /* show tickets */

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-meta .header-stat:not(:first-child) { display: none; }
}

@media (max-width: 480px) {
  .games-grid { grid-template-columns: 1fr; }
  .modal { padding: 1.5rem; }
}

/* ── Utilities ── */

.hidden  { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.gap-sm { gap: 0.5rem; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
