/* ============================================
   EVA999.CASINO — SHARED STYLES
   ============================================ */

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

:root {
  --bg-primary:    #080e0b;
  --bg-secondary:  #0d1a13;
  --bg-card:       #111e16;
  --bg-card-hover: #162a1c;
  --bg-sidebar:    #0b1610;
  --green-accent:  #1f5c35;
  --green-light:   #2d8a52;
  --green-glow:    rgba(45,138,82,0.25);
  --gold:          #d4af37;
  --gold-light:    #ffd966;
  --gold-dark:     #a8860e;
  --gold-glow:     rgba(212,175,55,0.35);
  --text-primary:  #e8ede9;
  --text-secondary:#8aaa93;
  --text-muted:    #4d6a57;
  --border:        rgba(45,138,82,0.25);
  --border-gold:   rgba(212,175,55,0.4);
  --shadow-card:   0 8px 32px rgba(0,0,0,0.6);
  --shadow-gold:   0 4px 24px rgba(212,175,55,0.3);
  --radius:        12px;
  --radius-lg:     18px;
  --transition:    0.22s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--green-accent); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* ─── HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8,14,11,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 20px;
}

.site-header .logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-header .logo-link img { height: 34px; width: auto; }
.site-header .logo-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}
.site-header .logo-text span { color: var(--gold); }

.header-spacer { flex: 1; }

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

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 0.2px;
}
.btn-gold {
  background: linear-gradient(135deg, #c9971f 0%, #ffd966 50%, #c9971f 100%);
  background-size: 200% auto;
  color: #0a0800;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background-position: right center;
  box-shadow: 0 6px 32px rgba(212,175,55,0.55);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border-gold);
  color: var(--gold-light);
}
.btn-outline:hover {
  background: rgba(212,175,55,0.08);
  border-color: var(--gold);
  transform: translateY(-1px);
}
.btn-green {
  background: linear-gradient(135deg, #1f5c35, #2d8a52);
  color: #fff;
  border: 1px solid var(--green-accent);
}
.btn-green:hover {
  background: linear-gradient(135deg, #2d8a52, #38a867);
  box-shadow: 0 4px 20px var(--green-glow);
  transform: translateY(-1px);
}
.btn-lg { padding: 14px 36px; font-size: 16px; border-radius: 10px; }
.btn-sm { padding: 7px 16px; font-size: 13px; }

/* ─── LAYOUT ─── */
.page-layout {
  display: flex;
  min-height: calc(100vh - 64px);
}

/* ─── SIDEBAR ─── */
.sidebar {
  width: 220px;
  flex-shrink: 0;
  background: var(--bg-sidebar);
  border-right: 1px solid var(--border);
  padding: 20px 0;
  position: sticky;
  top: 64px;
  height: calc(100vh - 64px);
  overflow-y: auto;
}

.sidebar-menu { list-style: none; }

.sidebar-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: all var(--transition);
}
.sidebar-menu li a:hover,
.sidebar-menu li a.active {
  color: var(--text-primary);
  background: rgba(45,138,82,0.12);
  border-left-color: var(--gold);
}
.sidebar-menu li a .menu-icon {
  font-size: 16px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.sidebar-divider {
  height: 1px;
  background: var(--border);
  margin: 12px 20px;
}

.sidebar-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 20px 4px;
}

/* ─── MAIN CONTENT ─── */
.main-content {
  flex: 1;
  min-width: 0;
  overflow-x: hidden;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0b1512;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('header-bg.webp');
  background-size: cover;
  background-position: center top;
  opacity: 0.45;
  filter: brightness(0.7) saturate(0.8);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8,14,11,0.95) 0%,
    rgba(8,14,11,0.5) 60%,
    rgba(8,14,11,0.1) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 48px;
  max-width: 560px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212,175,55,0.15);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero h1 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.hero h1 .gold { color: var(--gold); }
.hero p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat-value {
  font-size: 24px;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ─── LIVE WINS TICKER ─── */
.wins-ticker {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
  padding: 0;
  overflow: hidden;
  position: relative;
}
.wins-ticker-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(212,175,55,0.06);
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.live-dot {
  width: 8px;
  height: 8px;
  background: #ff4444;
  border-radius: 50%;
  animation: pulse-red 1.2s infinite;
}
@keyframes pulse-red {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,68,68,0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(255,68,68,0); }
}

.wins-feed {
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 220px;
  overflow: hidden;
}

.win-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  animation: slideInFade 0.5s ease forwards;
  opacity: 0;
}
@keyframes slideInFade {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.win-item.removing {
  animation: fadeOutRight 0.4s ease forwards;
}
@keyframes fadeOutRight {
  from { opacity: 1; transform: translateX(0); max-height: 60px; }
  to   { opacity: 0; transform: translateX(20px); max-height: 0; padding: 0; margin: 0; }
}

.win-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  color: #fff;
}
.win-player { font-size: 13px; font-weight: 600; color: var(--text-primary); }
.win-game   { font-size: 12px; color: var(--text-secondary); }
.win-meta   { flex: 1; min-width: 0; }
.win-amount {
  font-size: 15px;
  font-weight: 800;
  color: var(--gold-light);
  white-space: nowrap;
}
.win-time   { font-size: 11px; color: var(--text-muted); margin-left: auto; padding-left: 10px; }

/* ─── SECTION ─── */
.section { padding: 48px 32px; }
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
}
.section-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.3px;
}
.section-title .accent { color: var(--gold); }
.section-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ─── GAME CARDS ─── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 16px;
}

.game-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
  group: true;
}
.game-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(212,175,55,0.2);
  transform: translateY(-4px);
}
.game-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.game-card:hover .game-card-img { transform: scale(1.06); }

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(8,14,11,0.95) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
  opacity: 0;
  transition: opacity var(--transition);
}
.game-card:hover .game-card-overlay { opacity: 1; }

.game-card-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}
.game-card-play {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  background: linear-gradient(135deg, #c9971f, #ffd966);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  color: #0a0800;
  text-decoration: none;
}

.game-card-label {
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  border-top: 1px solid var(--border);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ─── BONUS CARDS ─── */
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.bonus-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.bonus-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-card), 0 0 40px rgba(212,175,55,0.08);
  transform: translateY(-3px);
}
.bonus-icon {
  font-size: 36px;
  margin-bottom: 12px;
  filter: drop-shadow(0 2px 8px var(--gold-glow));
}
.bonus-amount {
  font-size: 28px;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}
.bonus-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}
.bonus-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}
.bonus-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(212,175,55,0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

/* ─── FORMS ─── */
.form-page {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(45,138,82,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(212,175,55,0.05) 0%, transparent 50%),
    var(--bg-primary);
}
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}
.form-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}
.form-logo img { height: 36px; }
.form-title {
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 6px;
}
.form-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 28px;
}
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 7px;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border: 1.5px solid var(--border);
  border-radius: 9px;
  color: var(--text-primary);
  font-size: 14px;
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}
.form-input::placeholder { color: var(--text-muted); }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0;
  font-size: 13px;
  color: var(--text-secondary);
  cursor: pointer;
}
.form-check input[type=checkbox] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold);
}
.form-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  font-size: 12px;
  color: var(--text-muted);
}
.form-divider::before, .form-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.form-link { color: var(--gold); text-decoration: none; font-weight: 600; }
.form-link:hover { color: var(--gold-light); text-decoration: underline; }
.form-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-secondary);
}

/* ─── PAGE INNER ─── */
.page-inner { padding: 40px 32px; max-width: 960px; }
.page-title {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: -0.4px;
}
.page-title .accent { color: var(--gold); }
.page-lead {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 700px;
}

.content-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}
.content-block h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--gold-light);
}
.content-block h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.content-block p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 12px;
}
.content-block ul {
  padding-left: 20px;
  margin-bottom: 12px;
}
.content-block ul li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 4px;
}
.content-block ul li::marker { color: var(--gold); }

/* ─── INFO GRID ─── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  transition: all var(--transition);
}
.info-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.info-card-icon { font-size: 32px; margin-bottom: 10px; }
.info-card-value { font-size: 20px; font-weight: 800; color: var(--gold-light); margin-bottom: 4px; }
.info-card-label { font-size: 13px; color: var(--text-secondary); }

/* ─── PROMO CODE ─── */
.promo-box {
  background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(212,175,55,0.02));
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  margin-bottom: 24px;
}
.promo-code-display {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-primary);
  border: 2px dashed var(--gold-dark);
  border-radius: 10px;
  padding: 14px 28px;
  margin: 20px 0;
  font-size: 26px;
  font-weight: 900;
  color: var(--gold-light);
  letter-spacing: 3px;
  cursor: pointer;
  transition: all var(--transition);
}
.promo-code-display:hover {
  background: rgba(212,175,55,0.06);
  border-color: var(--gold);
}
.copy-hint { font-size: 12px; color: var(--text-muted); }

/* ─── STEPS ─── */
.steps { display: flex; flex-direction: column; gap: 16px; }
.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.step:hover { border-color: var(--border-gold); }
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #0a0800;
  font-weight: 900;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-title { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.step-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ─── MIRROR TABLE ─── */
.mirror-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.mirror-table th {
  text-align: left;
  padding: 12px 16px;
  background: rgba(212,175,55,0.06);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.mirror-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}
.mirror-table tr:last-child td { border-bottom: none; }
.mirror-table tr:hover td { background: rgba(45,138,82,0.06); color: var(--text-primary); }
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
}
.status-active { background: rgba(45,200,90,0.15); color: #4de87a; }
.status-check  { background: rgba(255,200,0,0.1);  color: #ffd966; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 40px 32px 20px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}
.footer-brand .logo-link { margin-bottom: 12px; }
.footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.7; max-width: 240px; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 2px solid var(--text-muted);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .sidebar { display: none; }
  .hero-content { padding: 40px 24px; }
  .section { padding: 32px 16px; }
  .page-inner { padding: 28px 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand p { max-width: 100%; }
  .header-nav .btn-outline { display: none; }
  .hero-stats { gap: 20px; }
  .form-card { padding: 28px 20px; }
}

/* ─── UTILITIES ─── */
.text-gold   { color: var(--gold); }
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.w-full { width: 100%; }

/* ─── TOAST NOTIFICATION ─── */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-light);
  box-shadow: var(--shadow-card), var(--shadow-gold);
  animation: toastIn 0.3s ease forwards;
  display: flex;
  align-items: center;
  gap: 10px;
}
@keyframes toastIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.toast.hiding {
  animation: toastOut 0.3s ease forwards;
}
@keyframes toastOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(20px); }
}
