/* ✦ CosmosGuide — Mystical Theme ✦ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* ── Mystical Palette ── */
  --gold:          #E8B84B;
  --gold-light:    #F5D07A;
  --gold-dark:     #B8882A;
  --gold-glow:     rgba(232,184,75,0.25);
  --violet:        #8B5CF6;
  --violet-light:  #A78BFA;
  --violet-dark:   #6D28D9;
  --violet-glow:   rgba(139,92,246,0.2);
  --royal:         #3B82F6;
  --royal-glow:    rgba(59,130,246,0.15);
  --rose:          #EC4899;

  /* ── Backgrounds — deep space ── */
  --deep:     #06040F;   /* near-black space      */
  --deep2:    #0D0B1F;   /* card background        */
  --deep3:    #130F2E;   /* elevated card          */
  --surface:  #1A1640;   /* nav / modal            */
  --surface2: #221D52;   /* hover                  */

  /* ── Borders ── */
  --border:        rgba(139,92,246,0.18);
  --border-gold:   rgba(232,184,75,0.22);
  --border-bright: rgba(139,92,246,0.4);

  /* ── Text ── */
  --text:       #F0EEFF;
  --text-muted: #9D98CC;
  --text-dim:   #5C5888;

  /* ── Semantic ── */
  --success: #34D399;
  --error:   #F87171;
  --warn:    #FBBF24;
  --info:    #60A5FA;

  /* ── Aliases ── */
  --clr-gold:   var(--gold);
  --clr-bg:     var(--deep);
  --clr-bg2:    var(--deep2);
  --clr-border: var(--border);
  --clr-light:  var(--text);
  --clr-muted:  var(--text-muted);

  /* ── Fonts ── */
  --font-head: 'Cinzel', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* ── Shape ── */
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* ── Shadows ── */
  --shadow:         0 8px 40px rgba(0,0,0,0.7);
  --shadow-gold:    0 0 40px rgba(232,184,75,0.2), 0 0 80px rgba(232,184,75,0.05);
  --shadow-violet:  0 0 40px rgba(139,92,246,0.25), 0 0 80px rgba(139,92,246,0.08);
  --shadow-card:    0 4px 24px rgba(0,0,0,0.5), 0 0 0 1px var(--border);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── Body with starfield ── */
body {
  font-family: var(--font-body);
  background-color: var(--deep);
  background-image:
    /* stars */
    radial-gradient(1px 1px at 8%   12%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 22%  35%, rgba(232,184,75,0.5)  0%, transparent 100%),
    radial-gradient(1px 1px at 37%  8%,  rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 51%  55%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 63%  22%, rgba(139,92,246,0.6)  0%, transparent 100%),
    radial-gradient(1px 1px at 78%  44%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 91%  17%, rgba(232,184,75,0.4)  0%, transparent 100%),
    radial-gradient(1px 1px at 14%  72%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 44%  88%, rgba(139,92,246,0.4)  0%, transparent 100%),
    radial-gradient(1px 1px at 71%  78%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 88%  91%, rgba(232,184,75,0.3)  0%, transparent 100%),
    radial-gradient(2px 2px at 30%  60%, rgba(139,92,246,0.2)  0%, transparent 100%),
    radial-gradient(2px 2px at 66%  5%,  rgba(232,184,75,0.15) 0%, transparent 100%),
    /* nebula glows */
    radial-gradient(ellipse 60% 40% at 15% 20%, rgba(99,60,180,0.12)  0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 85% 15%, rgba(59,130,246,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 70% 30% at 50% 85%, rgba(139,92,246,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 90% 60%, rgba(232,184,75,0.06) 0%, transparent 70%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.25;
  color: var(--text);
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.7rem); }
h4 { font-size: 1rem; font-family: var(--font-body); font-weight: 700; }

.gold  { color: var(--gold); }
.violet{ color: var(--violet-light); }
.muted { color: var(--text-muted); }
.center{ text-align: center; }
.link-gold { color: var(--gold); }
.link-gold:hover { color: var(--gold-light); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 26px;
  border: none; border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.04em;
  cursor: pointer; transition: all 0.25s;
  text-decoration: none; white-space: nowrap;
}
.btn-primary, .btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #06040F;
  font-weight: 700;
  box-shadow: 0 2px 16px rgba(232,184,75,0.3);
}
.btn-primary:hover, .btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: #06040F;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(232,184,75,0.5);
}
.btn-violet {
  background: linear-gradient(135deg, var(--violet) 0%, var(--violet-dark) 100%);
  color: #fff;
  box-shadow: 0 2px 16px rgba(139,92,246,0.35);
}
.btn-violet:hover {
  background: linear-gradient(135deg, var(--violet-light) 0%, var(--violet) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(139,92,246,0.5);
  color: #fff;
}
.btn-secondary, .btn-outline {
  background: transparent;
  border: 1.5px solid var(--border-bright);
  color: var(--violet-light);
}
.btn-secondary:hover, .btn-outline:hover {
  background: rgba(139,92,246,0.12);
  border-color: var(--violet-light);
  color: var(--violet-light);
}
.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.08);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: var(--text); }
.btn-sm  { padding: 7px 16px; font-size: 0.82rem; }
.btn-lg  { padding: 15px 40px; font-size: 1.05rem; }
.btn-full, .btn-full { width: 100%; justify-content: center; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* ── Mystical card ── */
.card {
  background: linear-gradient(135deg, var(--deep2) 0%, var(--deep3) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(139,92,246,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.card:hover {
  border-color: rgba(139,92,246,0.4);
  box-shadow: var(--shadow-violet);
  transform: translateY(-3px);
}
.card-gold:hover {
  border-color: rgba(232,184,75,0.45);
  box-shadow: var(--shadow-gold);
}
.card-grid   { display: grid; gap: 24px; }
.card-grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); }
.card-grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); }
.card-grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); }

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(6,4,15,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(139,92,246,0.2);
  box-shadow: 0 1px 0 rgba(232,184,75,0.08), 0 4px 32px rgba(0,0,0,0.6);
  padding: 0 clamp(16px,4vw,52px);
  height: 66px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo img {
  height: 36px; width: 36px;
  border-radius: 8px; object-fit: cover;
  box-shadow: 0 0 12px rgba(139,92,246,0.4);
}
.nav-links { display: none; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  padding: 6px 11px; border-radius: 8px;
  font-size: 0.86rem; color: var(--text-muted);
  transition: all 0.2s; letter-spacing: 0.02em;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold); background: rgba(232,184,75,0.08);
}
.nav-links .btn-gold { padding: 7px 16px; font-size: 0.83rem; }
.nav-hamburger {
  display: block; background: none; border: none;
  cursor: pointer; color: var(--gold); font-size: 1.5rem; padding: 4px;
}
.nav-mobile {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(6,4,15,0.98);
  flex-direction: column; align-items: center; justify-content: flex-start;
  gap: 22px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 90px 24px 40px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 1.3rem; color: var(--text); font-family: var(--font-head); flex-shrink: 0; }
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile-close {
  position: fixed; top: 20px; right: 24px;
  background: none; border: none; color: var(--gold); font-size: 2rem; cursor: pointer;
  z-index: 1001;
}

/* ── Page layout ── */
.page-wrap { padding-top: 66px; }
.section { padding: clamp(48px,8vw,96px) clamp(16px,6vw,80px); }
.container { max-width: 1180px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 14px; }
.section-sub { text-align: center; color: var(--text-muted); margin-bottom: 48px; font-size: 1.05rem; }
.divider { border: none; border-top: 1px solid var(--border); margin: 48px 0; }

/* ── Hero ── */
.hero {
  min-height: 92vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 80px clamp(16px,6vw,80px) 60px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 30%, rgba(139,92,246,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(59,130,246,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 70%, rgba(232,184,75,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(139,92,246,0.12); border: 1px solid rgba(139,92,246,0.3);
  padding: 6px 18px; border-radius: 999px;
  font-size: 0.8rem; letter-spacing: 0.12em; color: var(--violet-light);
  text-transform: uppercase; margin-bottom: 28px;
  font-family: var(--font-body);
}
.hero-title { margin-bottom: 20px; }
.hero-sub { color: var(--text-muted); font-size: 1.1rem; max-width: 560px; margin: 0 auto 40px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hero-stars {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 15% 20%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 10%, rgba(139,92,246,0.5)  0%, transparent 100%),
    radial-gradient(1px 1px at 70% 30%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 65%, rgba(232,184,75,0.4)  0%, transparent 100%),
    radial-gradient(1px 1px at 25% 75%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 85%, rgba(139,92,246,0.3)  0%, transparent 100%),
    radial-gradient(2px 2px at 60% 50%, rgba(232,184,75,0.15) 0%, transparent 100%);
}
.star-spark {
  font-size: 1.2rem; color: var(--gold); margin-bottom: 16px;
  display: block; animation: twinkle 3s ease-in-out infinite;
}
@keyframes twinkle { 0%,100%{opacity:0.6;transform:scale(1)} 50%{opacity:1;transform:scale(1.2)} }

/* ── Forms ── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 0.8rem; color: var(--text-muted);
  margin-bottom: 8px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
}
.form-control, .form-input, .form-textarea, .form-select,
input[type=text], input[type=email], input[type=password],
input[type=date], input[type=time], input[type=number], input[type=tel],
select, textarea {
  width: 100%; padding: 11px 14px;
  background: rgba(6,4,15,0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.92rem;
  font-family: var(--font-body);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-control:focus, .form-input:focus, .form-textarea:focus,
input:focus, select:focus, textarea:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.15);
}
.form-control::placeholder, input::placeholder, textarea::placeholder { color: var(--text-dim); }
textarea { resize: vertical; min-height: 100px; }
.form-hint { font-size: 0.78rem; color: var(--text-dim); margin-top: 6px; }

/* ── Badge / Pill ── */
.badge {
  display: inline-block; padding: 3px 10px; border-radius: 99px;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
}
.badge-success { background: rgba(52,211,153,0.12); color: var(--success); border: 1px solid rgba(52,211,153,0.3); }
.badge-error   { background: rgba(248,113,113,0.12); color: var(--error);   border: 1px solid rgba(248,113,113,0.3); }
.badge-warn    { background: rgba(251,191,36,0.12);  color: var(--warn);    border: 1px solid rgba(251,191,36,0.3); }
.badge-info    { background: rgba(96,165,250,0.12);  color: var(--info);    border: 1px solid rgba(96,165,250,0.3); }
.badge-violet  { background: rgba(139,92,246,0.15);  color: var(--violet-light); border: 1px solid rgba(139,92,246,0.35); }
.badge-gold    { background: rgba(232,184,75,0.12);  color: var(--gold);    border: 1px solid rgba(232,184,75,0.3); }

/* ── Alerts ── */
.alert { padding: 14px 18px; border-radius: var(--radius); font-size: 0.9rem; display: flex; align-items: flex-start; gap: 10px; }
.alert-success { background: rgba(52,211,153,0.1);  border: 1px solid rgba(52,211,153,0.3);  color: var(--success); }
.alert-error   { background: rgba(248,113,113,0.1); border: 1px solid rgba(248,113,113,0.3); color: var(--error); }
.alert-warn    { background: rgba(251,191,36,0.1);  border: 1px solid rgba(251,191,36,0.3);  color: var(--warn); }
.alert-info    { background: rgba(139,92,246,0.1);  border: 1px solid rgba(139,92,246,0.3);  color: var(--violet-light); }

/* ── Tables ── */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
thead th {
  background: var(--deep3); padding: 13px 16px; text-align: left;
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--gold); border-bottom: 1px solid var(--border);
  font-family: var(--font-body);
}
tbody td { padding: 12px 16px; border-bottom: 1px solid rgba(139,92,246,0.08); color: var(--text-muted); }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: rgba(139,92,246,0.04); }

/* ── Stars ── */
.stars { display: flex; gap: 4px; }
.star { font-size: 1.2rem; color: var(--border); cursor: pointer; transition: color 0.15s; }
.star.filled, .star:hover { color: var(--gold); }

/* ── Modal ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.8); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal, .modal-box {
  background: linear-gradient(160deg, var(--deep2) 0%, var(--deep3) 100%);
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: var(--radius-xl);
  padding: 36px;
  max-width: 500px; width: 100%;
  box-shadow: var(--shadow-violet), var(--shadow);
  animation: slideUp 0.3s ease;
}
@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-title { font-size: 1.4rem; margin-bottom: 8px; }
.modal-sub   { color: var(--text-muted); margin-bottom: 24px; }
.modal-close, .modal-header button {
  float: right; background: none; border: none;
  color: var(--text-muted); font-size: 1.4rem; cursor: pointer; margin-top: -4px;
}
.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }

/* ── Tabs ── */
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--border); margin-bottom: 28px; overflow-x: auto; }
.tab-btn {
  padding: 11px 22px; border: none; border-radius: 8px 8px 0 0;
  background: none; color: var(--text-muted); cursor: pointer;
  font-size: 0.88rem; font-weight: 500; transition: all 0.2s;
  border-bottom: 2px solid transparent; margin-bottom: -1px; white-space: nowrap;
}
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); background: rgba(232,184,75,0.06); }
.tab-btn:hover:not(.active) { color: var(--text); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── Footer ── */
footer {
  background: linear-gradient(180deg, transparent 0%, rgba(139,92,246,0.05) 100%);
  border-top: 1px solid rgba(139,92,246,0.15);
  padding: 52px clamp(16px,6vw,80px) 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand p { color: var(--text-muted); font-size: 0.87rem; margin-top: 10px; line-height: 1.75; }
.footer-col h4 {
  color: var(--gold); font-size: 0.75rem; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 14px;
  padding-bottom: 8px; border-bottom: 1px solid rgba(232,184,75,0.12);
  font-family: var(--font-body);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.87rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  padding: 18px clamp(16px,6vw,80px);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 0.78rem; color: var(--text-dim);
  border-top: 1px solid rgba(139,92,246,0.1);
  background: rgba(0,0,0,0.2);
}

/* ── Toast ── */
#toast-container {
  position: fixed; top: 78px; right: 20px; z-index: 3000;
  display: flex; flex-direction: column; gap: 10px;
}
.toast {
  background: var(--deep3); border: 1px solid var(--border-bright);
  border-radius: var(--radius); padding: 13px 18px;
  min-width: 260px; font-size: 0.88rem;
  box-shadow: var(--shadow-violet);
  animation: toastIn 0.3s ease;
  display: flex; align-items: center; gap: 10px;
}
.toast.success { border-color: rgba(52,211,153,0.4); }
.toast.error   { border-color: rgba(248,113,113,0.4); }
.toast.warn    { border-color: rgba(251,191,36,0.4); }
@keyframes toastIn { from { transform: translateX(110%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ── Spinner ── */
.spinner {
  width: 40px; height: 40px;
  border: 3px solid rgba(139,92,246,0.15);
  border-top-color: var(--violet);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Stat card ── */
.stat-box {
  background: linear-gradient(135deg, var(--deep2), var(--deep3));
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.1rem 1.25rem; text-align: center;
  transition: border-color 0.2s;
}
.stat-box:hover { border-color: var(--border-bright); }
.stat-box .sv { font-size: 1.9rem; font-weight: 800; color: var(--gold); font-family: var(--font-head); line-height: 1.1; }
.stat-box .sl { font-size: .7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; margin-top: .3rem; }

/* ── Paywall / Price ── */
.price-card {
  background: var(--deep3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px 16px;
  cursor: pointer; transition: all 0.2s; text-align: center;
}
.price-card:hover, .price-card.selected {
  border-color: var(--gold);
  background: rgba(232,184,75,0.06);
  box-shadow: var(--shadow-gold);
}
.price-card .amount { font-size: 1.6rem; font-weight: 700; color: var(--gold); font-family: var(--font-head); }
.price-card .period { font-size: 0.8rem; color: var(--text-muted); }
.price-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0; }

/* ── Glow divider ── */
.glow-line {
  height: 1px; border: none;
  background: linear-gradient(90deg, transparent, var(--violet), var(--gold), var(--violet), transparent);
  opacity: 0.4; margin: 40px 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .modal, .modal-box { padding: 24px; }
}

/* ── Utilities ── */
.hidden { display: none !important; }
.flex   { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; } .gap-4 { gap: 16px; } .gap-6 { gap: 24px; }
.mt-2 { margin-top: 8px; } .mt-4 { margin-top: 16px; } .mt-6 { margin-top: 24px; }
.mb-2 { margin-bottom: 8px; } .mb-4 { margin-bottom: 16px; } .mb-6 { margin-bottom: 24px; }
.p-4 { padding: 16px; } .p-6 { padding: 24px; }
.w-full { width: 100%; }
.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }
.text-sm { font-size: 0.875rem; }
.font-bold { font-weight: 700; }
.overflow-hidden { overflow: hidden; }
