﻿/* LIVE FILE — this is the file served to the browser. Always edit this one. */
/* ============================================================
   InkGiveaways Â· v2 Theme
   ------------------------------------------------------------
   - Lighter charcoal palette (not pure black)
   - Modern card-based UI
   - Fully mobile responsive
   - Better contrast & readability
   - Subtle textures, not heavy
   ============================================================ */

:root {
  /* Palette - lighter, more breathable */
  --bg:           #1a1816;       /* page background â€” charcoal not black */
  --bg-elevated: #232120;       /* cards, panels */
  --bg-soft:     #2a2725;       /* hover, inputs */
  --bg-deep:     #141312;       /* deepest accent */

  --line:        rgba(255,255,255,.06);
  --line-strong: rgba(255,255,255,.12);
  --line-gold:   rgba(201,168,90,.35);

  --text:        #f3ead2;       /* primary cream â€” brighter than before */
  --text-soft:   #c8bea7;       /* secondary */
  --text-fog:    #8a8175;       /* muted */
  --text-dim:    #5d564d;       /* very muted */

  --gold:        #d4af6a;       /* brand gold â€” slightly warmer */
  --gold-bright: #e8c878;
  --gold-soft:   rgba(212,175,106,.18);
  --gold-glow:   rgba(212,175,106,.4);

  --blood:       #c44545;
  --blood-bright: #d96565;
  --success:     #7fc97f;
  --warning:     #e8b657;
  --error:       #e57373;
  --info:        #7eb6d4;

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  /* Radius */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;

  /* Type */
  --f-display: 'Bangers', system-ui, sans-serif;
  --f-heading: 'Oswald', system-ui, sans-serif;
  --f-body:    'Manrope', system-ui, -apple-system, sans-serif;
  --f-mono:    'Special Elite', ui-monospace, monospace;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,.3);
  --shadow-md: 0 8px 24px rgba(0,0,0,.4);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.5);
  --shadow-gold: 0 8px 32px rgba(212,175,106,.15);

  /* Layout */
  --wrap: 1200px;
  --wrap-narrow: 760px;
  --wrap-wide: 1400px;
  --nav-h: 68px;
}

/* ------------------------------------------------------------ */
/* Reset & base                                                 */
/* ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .15s; }
a:hover { color: var(--gold-bright); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-heading);
  font-weight: 600;
  letter-spacing: .01em;
  margin: 0 0 var(--space-4);
  color: var(--text);
  line-height: 1.2;
}
h1 { font-size: clamp(32px, 5vw, 52px); font-family: var(--f-display); letter-spacing: .02em; }
h2 { font-size: clamp(26px, 4vw, 38px); }
h3 { font-size: clamp(20px, 3vw, 26px); }
h4 { font-size: 18px; }
p  { margin: 0 0 var(--space-4); color: var(--text-soft); }
small { color: var(--text-fog); font-size: 13px; }

::selection { background: var(--gold); color: var(--bg-deep); }

/* Subtle grain texture overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.85 0 0 0 0 0.78 0 0 0 0 0.6 0 0 0 0.018 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .5;
}
body > * { position: relative; z-index: 2; }

/* ------------------------------------------------------------ */
/* Layout helpers                                               */
/* ------------------------------------------------------------ */
.wrap        { max-width: var(--wrap);        margin: 0 auto; padding: 0 var(--space-5); }
.wrap-narrow { max-width: var(--wrap-narrow); margin: 0 auto; padding: 0 var(--space-5); }
.wrap-wide   { max-width: var(--wrap-wide);   margin: 0 auto; padding: 0 var(--space-5); }
.spacer-lg { height: var(--space-9); }
.spacer-md { height: var(--space-7); }
.spacer-sm { height: var(--space-5); }
.flex-1 { flex: 1; }
.hide-mobile { display: inline-flex; }
.show-mobile { display: none; }
@media (max-width: 760px) {
  .hide-mobile { display: none !important; }
  .show-mobile { display: inline-flex !important; }
}

/* ------------------------------------------------------------ */
/* Topbar                                                       */
/* ------------------------------------------------------------ */
.topbar {
  background: var(--bg-deep);
  border-bottom: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-fog);
}
.topbar-inner {
  max-width: var(--wrap-wide);
  margin: 0 auto;
  padding: 8px var(--space-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
}
.topbar-right { display: flex; gap: var(--space-5); }
.topbar-right a { color: inherit; }
.pulse { display: inline-flex; align-items: center; gap: 8px; color: var(--text-soft); }
.pulse-dot {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--success);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(1.3); }
}
@media (max-width: 640px) {
  .topbar-right { display: none; }
  .topbar-inner { justify-content: center; }
}

/* ------------------------------------------------------------ */
/* Main nav                                                     */
/* ------------------------------------------------------------ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(26, 24, 22, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--wrap-wide);
  margin: 0 auto;
  padding: 0 var(--space-5);
  height: var(--nav-h);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-5);
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-brand img { height: 40px; width: auto; }
.nav-brand-text {
  font-family: var(--f-display);
  font-size: 26px;
  color: var(--gold);
  letter-spacing: .04em;
  line-height: 1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: var(--text-soft);
  font-family: var(--f-heading);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: all .15s;
  text-decoration: none;
}
.nav-links a:hover {
  color: var(--text);
  background: var(--bg-soft);
}
.nav-links a.active {
  color: var(--gold);
}
.nav-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.nav-toggle {
  display: none;
  background: var(--bg-soft);
  border: 1px solid var(--line-strong);
  color: var(--text);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  font-family: var(--f-heading);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .1em;
  cursor: pointer;
}

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; gap: 6px; }
  .nav-toggle::before { content: "â˜°"; font-size: 16px; }
  .nav.open .nav-toggle::before { content: "âœ•"; }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--line-strong);
    padding: var(--space-4);
    gap: 2px;
    z-index: 50;
  }
  .nav.open .nav-links a {
    width: 100%;
    text-align: left;
    padding: 14px var(--space-4);
    border-radius: var(--r-sm);
  }
}
@media (max-width: 480px) {
  .nav-brand-text { font-size: 22px; }
}

/* ------------------------------------------------------------ */
/* Buttons                                                      */
/* ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  font-family: var(--f-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all .15s;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
}
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.btn-primary {
  background: var(--gold);
  color: var(--bg-deep);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: var(--bg-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  background: var(--bg-soft);
  border-color: var(--gold);
  color: var(--gold);
}
.btn-blood {
  background: var(--blood);
  color: var(--text);
  border-color: var(--blood);
}
.btn-blood:hover {
  background: var(--blood-bright);
  border-color: var(--blood-bright);
}
.btn-sm { padding: 7px 14px; font-size: 12px; }
.btn-lg { padding: 14px 30px; font-size: 15px; }
.btn-block { display: flex; width: 100%; }
.btn:disabled,
.btn[disabled] {
  opacity: .5;
  cursor: not-allowed;
  transform: none !important;
}

/* ------------------------------------------------------------ */
/* Cards                                                        */
/* ------------------------------------------------------------ */
.card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--space-5);
  transition: border-color .15s, transform .15s;
}
.card.framed {
  position: relative;
  border-color: var(--line-gold);
}
.card.framed:hover { border-color: var(--gold); }
/* Hide the old corner tick decorations (cleaner look now) */
.corner-tl, .corner-bl, .corner-tr, .corner-br { display: none; }

/* ------------------------------------------------------------ */
/* Typography decorations                                       */
/* ------------------------------------------------------------ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text-fog);
}
.eyebrow.gold { color: var(--gold); }
.rule {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: .6;
}
.breadcrumb {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-fog);
  margin: 0;
}
.breadcrumb a { color: inherit; }
.mono { font-family: var(--f-mono); }
.accent { color: var(--gold); }

/* ------------------------------------------------------------ */
/* Trust strip                                                  */
/* ------------------------------------------------------------ */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  justify-content: center;
  padding: var(--space-5);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
  font-size: 14px;
}
.trust-icon { font-size: 22px; }

/* ------------------------------------------------------------ */
/* Hero                                                         */
/* ------------------------------------------------------------ */
.hero {
  padding: var(--space-9) var(--space-5) var(--space-8);
  text-align: center;
  position: relative;
}
.hero-headline {
  font-family: var(--f-display);
  font-size: clamp(40px, 8vw, 88px);
  line-height: 1;
  letter-spacing: .02em;
  margin: var(--space-5) 0 var(--space-5);
  color: var(--text);
}
.hero-headline .accent {
  color: var(--gold);
  display: inline-block;
}
.hero-sub {
  max-width: 600px;
  margin: 0 auto var(--space-6);
  font-size: 18px;
  color: var(--text-soft);
}
.hero-ctas {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
}
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .6s ease-out forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ------------------------------------------------------------ */
/* Competition grid                                             */
/* ------------------------------------------------------------ */
.comp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-5);
}
.comp-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all .2s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.comp-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}
.comp-card-image {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg-soft);
  overflow: hidden;
}
.comp-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.comp-card:hover .comp-card-image img { transform: scale(1.05); }
.comp-card-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-dim);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.comp-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(6px);
  border-radius: var(--r-sm);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text);
}
.comp-card-badge.gold { background: var(--gold); color: var(--bg-deep); }
.comp-card-badge.live { background: var(--blood); color: white; }
.comp-card-body { padding: var(--space-4) var(--space-5) var(--space-5); flex: 1; display: flex; flex-direction: column; }
.comp-card-title {
  font-family: var(--f-heading);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--text);
  letter-spacing: .01em;
}
.comp-card-meta {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-fog);
  margin-bottom: var(--space-3);
}
.comp-card-price {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 8px;
  padding-top: var(--space-3);
  border-top: 1px solid var(--line);
}
.comp-card-price strong {
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
}
.comp-card-price small {
  color: var(--text-fog);
}
.comp-card-progress {
  background: var(--bg-deep);
  height: 4px;
  border-radius: 2px;
  overflow: hidden;
  margin-top: var(--space-3);
}
.comp-card-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  border-radius: 2px;
}

/* ------------------------------------------------------------ */
/* How it works tiles                                           */
/* ------------------------------------------------------------ */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-6);
}
.how-step {
  padding: var(--space-6) var(--space-5);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  text-align: left;
}
.how-step:hover { border-color: var(--gold); }
.how-step h3 {
  font-family: var(--f-display);
  font-size: 56px;
  color: var(--gold);
  margin: 0 0 10px;
  line-height: 1;
  letter-spacing: .03em;
}
.how-step h4 {
  font-family: var(--f-heading);
  font-size: 16px;
  margin: 0 0 8px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.how-step p { color: var(--text-soft); margin: 0; font-size: 14px; }
@media (max-width: 760px) {
  .how-grid { grid-template-columns: 1fr; gap: var(--space-3); }
}

/* ------------------------------------------------------------ */
/* Forms                                                        */
/* ------------------------------------------------------------ */
.field {
  margin-bottom: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-family: var(--f-heading);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 6px;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="password"],
.field input[type="tel"],
.field input[type="number"],
.field input[type="url"],
.field input[type="date"],
.field input[type="datetime-local"],
.field input[type="search"],
.field select,
.field textarea {
  background: var(--bg-deep);
  border: 1px solid var(--line-strong);
  color: var(--text);
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
  border-radius: var(--r-sm);
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-soft);
}
.field textarea { resize: vertical; min-height: 80px; }
.field .hint {
  font-size: 12px;
  color: var(--text-fog);
  margin-top: 2px;
}
.field .required {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--blood-bright);
  border-radius: 50%;
}
.field input[type="checkbox"] { width: auto; margin-right: 8px; }
.error-msg {
  color: var(--error);
  background: rgba(229,115,115,.08);
  border: 1px solid rgba(229,115,115,.3);
  padding: 10px 14px;
  border-radius: var(--r-sm);
  font-size: 14px;
}

/* ------------------------------------------------------------ */
/* Alerts                                                       */
/* ------------------------------------------------------------ */
.alert {
  padding: 14px 18px;
  border-radius: var(--r-sm);
  margin-bottom: var(--space-4);
  border: 1px solid;
  font-size: 14px;
}
.alert a { color: inherit; text-decoration: underline; }
.alert-success { background: rgba(127,201,127,.08); border-color: rgba(127,201,127,.3); color: var(--success); }
.alert-error   { background: rgba(229,115,115,.08); border-color: rgba(229,115,115,.3); color: var(--error); }
.alert-info    { background: rgba(126,182,212,.08); border-color: rgba(126,182,212,.3); color: var(--info); }
.alert-warning { background: rgba(232,182,87,.08);  border-color: rgba(232,182,87,.3);  color: var(--warning); }

/* ------------------------------------------------------------ */
/* Pills / badges                                               */
/* ------------------------------------------------------------ */
.pill {
  display: inline-block;
  padding: 3px 10px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.pill-gold    { border-color: var(--gold); color: var(--gold); }
.pill-success { border-color: rgba(127,201,127,.4); color: var(--success); }
.pill-fog     { color: var(--text-fog); }
.pill-blood   { border-color: var(--blood); color: var(--blood-bright); }

/* ------------------------------------------------------------ */
/* Tables                                                       */
/* ------------------------------------------------------------ */
.tbl {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: var(--space-5);
  font-size: 14px;
}
.tbl th,
.tbl td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.tbl th {
  background: var(--bg-deep);
  font-family: var(--f-heading);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-fog);
}
.tbl tr:last-child td { border-bottom: 0; }
.tbl tr:hover td { background: rgba(255,255,255,.02); }
@media (max-width: 760px) {
  .tbl { font-size: 13px; }
  .tbl th, .tbl td { padding: 10px 12px; }
  /* horizontal scroll on small screens */
  .tbl-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ------------------------------------------------------------ */
/* Footer                                                       */
/* ------------------------------------------------------------ */
.footer {
  margin-top: var(--space-9);
  padding: var(--space-7) 0 var(--space-5);
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}
.footer h5 {
  font-family: var(--f-heading);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 var(--space-4);
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: var(--text-soft); font-size: 14px; }
.footer ul a:hover { color: var(--text); }
.footer-brand p { font-size: 14px; color: var(--text-soft); margin: 12px 0 0; }
.footer-bottom {
  padding-top: var(--space-5);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: 12px;
  color: var(--text-fog);
  font-family: var(--f-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer-legal {
  background: rgba(0,0,0,.3);
  padding: var(--space-4);
  border-radius: var(--r-sm);
  font-size: 12px;
  color: var(--text-fog);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}
.footer-legal strong { color: var(--gold); }
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-5); }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}

/* ------------------------------------------------------------ */
/* Sections                                                     */
/* ------------------------------------------------------------ */
section {
  margin-bottom: var(--space-7);
}
.section-head {
  text-align: center;
  margin-bottom: var(--space-6);
}

/* ------------------------------------------------------------ */
/* Competition detail page                                      */
/* ------------------------------------------------------------ */
.comp-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-6);
  align-items: start;
}
@media (max-width: 960px) {
  .comp-layout { grid-template-columns: 1fr; }
}
.comp-buy {
  position: sticky;
  top: calc(var(--nav-h) + var(--space-4));
}
@media (max-width: 960px) {
  .comp-buy { position: static; }
}
.comp-gallery-main {
  aspect-ratio: 16/10;
  background: var(--bg-soft);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: var(--space-3);
}
.comp-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.comp-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.comp-thumb {
  width: 70px;
  aspect-ratio: 1/1;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: var(--bg-soft);
}
.comp-thumb.active { border-color: var(--gold); }
.comp-thumb img { width: 100%; height: 100%; object-fit: cover; }

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: var(--space-4);
}
.countdown-unit {
  text-align: center;
  padding: 12px 6px;
  background: var(--bg-deep);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
}
.countdown-num {
  font-family: var(--f-display);
  font-size: 32px;
  line-height: 1;
  color: var(--gold);
}
.countdown-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-fog);
  margin-top: 4px;
}

.progress-bar {
  background: var(--bg-deep);
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  border-radius: 4px;
  transition: width .4s;
}

.bundle-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bundle-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: var(--bg-deep);
  border: 2px solid var(--line);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all .15s;
}
.bundle-option:hover { border-color: var(--gold); }
.bundle-option.selected {
  border-color: var(--gold);
  background: var(--gold-soft);
}
.bundle-option-info { display: flex; align-items: center; gap: 12px; }
.bundle-option-count {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--gold);
  line-height: 1;
}
.bundle-option-label { font-size: 14px; color: var(--text); }
.bundle-option-badge {
  background: var(--gold);
  color: var(--bg-deep);
  padding: 3px 8px;
  border-radius: 100px;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-left: 8px;
}
.bundle-option-price {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--text);
  line-height: 1;
}

/* ------------------------------------------------------------ */
/* Checkout grid                                                */
/* ------------------------------------------------------------ */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--space-5);
  align-items: start;
}
@media (max-width: 860px) {
  .checkout-grid { grid-template-columns: 1fr; }
}
.checkout-summary { position: sticky; top: calc(var(--nav-h) + var(--space-4)); }
@media (max-width: 860px) { .checkout-summary { position: static; order: -1; } }
.checkout-line {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--text-soft);
}
.checkout-line:last-child { border-bottom: 0; }
.checkout-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--gold);
  font-family: var(--f-heading);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.checkout-total span:last-child {
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--gold);
}

/* ------------------------------------------------------------ */
/* Ticket numbers (on receipt)                                  */
/* ------------------------------------------------------------ */
.ticket-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ticket-num {
  display: inline-block;
  padding: 8px 14px;
  background: var(--bg-deep);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: .1em;
}
.ticket-num-winner {
  border-color: var(--gold);
  background: var(--gold-soft);
  color: var(--gold);
}

/* ------------------------------------------------------------ */
/* Spinner                                                      */
/* ------------------------------------------------------------ */
.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid var(--line-strong);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ------------------------------------------------------------ */
/* Age gate modal                                               */
/* ------------------------------------------------------------ */
.age-gate {
  position: fixed; inset: 0;
  background: rgba(20,19,18,.96);
  backdrop-filter: blur(12px);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-5);
}
.age-gate.show { display: flex; }
.age-gate-card {
  background: var(--bg-elevated);
  border: 1px solid var(--gold);
  border-radius: var(--r-lg);
  padding: var(--space-6);
  max-width: 460px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.age-gate-card h2 {
  font-family: var(--f-display);
  color: var(--gold);
  font-size: 40px;
  margin: 0 0 var(--space-3);
}
.age-gate-actions { display: flex; gap: 10px; margin-top: var(--space-4); }
.age-gate-actions .btn { flex: 1; }

/* ------------------------------------------------------------ */
/* Cookie banner                                                */
/* ------------------------------------------------------------ */
.cookie-banner {
  position: fixed;
  bottom: var(--space-4);
  left: var(--space-4);
  right: var(--space-4);
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg-elevated);
  border: 1px solid var(--gold);
  border-radius: var(--r-md);
  padding: var(--space-4);
  box-shadow: var(--shadow-lg);
  z-index: 60;
  font-size: 13px;
  color: var(--text-soft);
  display: none;
  gap: var(--space-3);
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner.show { display: flex; }
.cookie-banner p { margin: 0; flex: 1; min-width: 200px; }

/* ------------------------------------------------------------ */
/* Admin panel                                                  */
/* ------------------------------------------------------------ */
.admin {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}
.admin-side {
  background: var(--bg-deep);
  border-right: 1px solid var(--line);
  padding: var(--space-5);
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.admin-brand {
  padding-bottom: var(--space-4);
  margin-bottom: var(--space-4);
  border-bottom: 1px solid var(--line);
}
.admin-brand .nav-brand-text { font-size: 22px; }
.admin-brand small {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--text-fog);
  text-transform: uppercase;
  margin-top: 4px;
}
.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.admin-nav a {
  padding: 10px 12px;
  border-radius: var(--r-sm);
  color: var(--text-soft);
  text-decoration: none;
  font-family: var(--f-heading);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all .15s;
}
.admin-nav a:hover { background: var(--bg-soft); color: var(--text); }
.admin-nav a.active {
  background: var(--gold-soft);
  color: var(--gold);
}
.admin-main {
  padding: var(--space-6);
  min-width: 0;
  overflow-x: auto;
}
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
  gap: var(--space-3);
}
.admin-header h1 { margin: 0; font-size: 28px; }
.admin-user {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-fog);
}
.admin-main code {
  background: var(--bg-deep);
  padding: 2px 6px;
  border-radius: 3px;
  color: var(--gold);
  font-size: .9em;
}
@media (max-width: 860px) {
  .admin { grid-template-columns: 1fr; }
  .admin-side {
    position: static;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .admin-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .admin-nav a { flex: 1 1 auto; }
  .admin-main { padding: var(--space-4); }
}

/* ------------------------------------------------------------ */
/* Account dashboard                                            */
/* ------------------------------------------------------------ */
.acc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.acc-stat {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--space-5);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all .15s;
}
.acc-stat:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.acc-stat-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.acc-stat-value {
  font-family: var(--f-display);
  font-size: 40px;
  line-height: 1;
  color: var(--text);
}
.acc-stat-sub {
  font-size: 12px;
  color: var(--text-fog);
  margin-top: 6px;
}

/* ------------------------------------------------------------ */
/* Confirm dialog (data-confirm)                                */
/* ------------------------------------------------------------ */
@media (prefers-reduced-motion: no-preference) {
  .fade-up { animation: fadeUp .6s ease-out forwards; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* Print */
@media print {
  .topbar, .nav, .footer, .cookie-banner, .age-gate { display: none !important; }
  body { background: white; color: black; }
}

/* ============================================================
   HOMEPAGE v2 â€” Palladium-style vivid layout
   ============================================================ */

/* Gold top accent on every page */
body::after {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--gold) 15%,
    var(--gold-bright) 50%,
    var(--gold) 85%,
    transparent 100%);
  z-index: 100;
  pointer-events: none;
}

/* ------- Simple centred hero ------- */
.home-hero-simple {
  padding: var(--space-8) 0 var(--space-7);
  text-align: center;
  background:
    radial-gradient(ellipse at top left, rgba(212,175,106,.12), transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(196,69,69,.08), transparent 55%);
}
.home-hero-simple .eyebrow { display: inline-flex; margin-bottom: var(--space-3); }
.home-hero-h1 {
  font-family: var(--f-display);
  font-size: clamp(52px, 8vw, 96px);
  line-height: 1;
  letter-spacing: .02em;
  margin: 0 auto var(--space-4);
  max-width: 900px;
}
.home-hero-h1 .accent { color: var(--gold); }
.home-hero-p {
  font-size: clamp(17px, 2.2vw, 21px);
  color: var(--text-soft);
  max-width: 560px;
  margin: 0 auto var(--space-6);
  line-height: 1.6;
}
.home-hero-btns {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  justify-content: center;
}

/* ------- Hero ------- */
.home-hero {
  padding: var(--space-7) 0 var(--space-7);
  background:
    radial-gradient(ellipse at top left, rgba(212,175,106,.10), transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(196,69,69,.06), transparent 60%);
}
.home-hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-7);
  align-items: center;
}
@media (max-width: 960px) {
  .home-hero-inner { grid-template-columns: 1fr; gap: var(--space-5); }
}
.home-hero-text h1 {
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  margin: var(--space-3) 0 var(--space-4);
  letter-spacing: .02em;
}
.home-hero-text h1 .accent { color: var(--gold); }
.home-hero-text p {
  font-size: 18px;
  color: var(--text-soft);
  max-width: 520px;
  margin-bottom: var(--space-5);
}
.home-hero-ctas {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-5);
}
.home-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-fog);
}

/* Hero featured card */
.home-hero-feature {
  display: block;
  background: var(--bg-elevated);
  border: 1px solid var(--line-gold);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all .2s;
  box-shadow: var(--shadow-md);
}
.home-hero-feature:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold), var(--shadow-lg);
}
.home-hero-feature-image {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg-soft);
  overflow: hidden;
}
.home-hero-feature-image img { width: 100%; height: 100%; object-fit: cover; }
.home-hero-feature-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-soft), var(--bg-deep));
  color: var(--gold);
  font-family: var(--f-display);
  font-size: 28px;
  text-align: center;
  padding: var(--space-5);
}
.home-hero-feature-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  background: var(--gold);
  color: var(--bg-deep);
  border-radius: var(--r-sm);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
}
.home-hero-feature-body { padding: var(--space-4) var(--space-5); }
.home-hero-feature-body h3 {
  font-family: var(--f-heading);
  font-size: 20px;
  margin: 0 0 8px;
}
.home-hero-feature-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-fog);
}
.home-hero-feature-meta strong {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--gold);
  letter-spacing: .02em;
}

/* ------- Section heads ------- */
.home-section-head {
  text-align: center;
  margin-bottom: var(--space-5);
}
.home-section-head .eyebrow { display: inline-flex; }
.home-section-head h2 {
  margin: 12px 0 0;
  font-family: var(--f-display);
  letter-spacing: .03em;
}
.home-section-head h2::before,
.home-section-head h2::after {
  content: "âœ¦";
  color: var(--gold);
  opacity: .5;
  margin: 0 var(--space-3);
  font-size: .6em;
  vertical-align: middle;
}

/* ------- Competition cards v2 (vivid, Palladium-style) ------- */
.home-comp-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.comp-card-v2 {
  display: block;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all .2s;
  position: relative;
}
.comp-card-v2:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}
.comp-card-v2-image {
  position: relative;
  aspect-ratio: 5/4;
  background: var(--bg-soft);
  overflow: hidden;
}
.comp-card-v2-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.comp-card-v2:hover .comp-card-v2-image img { transform: scale(1.05); }
.comp-card-v2-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    transparent 0%,
    transparent 40%,
    rgba(20,19,18,.5) 75%,
    rgba(20,19,18,.95) 100%);
  pointer-events: none;
}
.comp-card-v2-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-5);
  background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-deep) 100%);
  color: var(--gold);
  font-family: var(--f-display);
  font-size: 22px;
  text-align: center;
  letter-spacing: .03em;
}
.comp-card-v2-draw-date {
  position: absolute;
  top: 12px; left: 12px;
  padding: 5px 10px;
  background: rgba(20,19,18,.85);
  backdrop-filter: blur(6px);
  border: 1px solid var(--gold);
  border-radius: var(--r-sm);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  z-index: 2;
}
.comp-card-v2-iw-badge {
  position: absolute;
  top: 12px; right: 12px;
  padding: 5px 10px;
  background: var(--blood);
  border-radius: var(--r-sm);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: white;
  z-index: 2;
}
.comp-card-v2-body {
  padding: var(--space-4) var(--space-4) var(--space-5);
}

/* Countdown row */
.comp-card-v2-countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: var(--space-4);
}
.comp-card-v2-countdown > div {
  text-align: center;
  padding: 8px 4px;
  background: var(--bg-deep);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
}
.comp-card-v2-countdown strong {
  display: block;
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 1;
  color: var(--gold);
  letter-spacing: .02em;
}
.comp-card-v2-countdown small {
  display: block;
  margin-top: 4px;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-fog);
}

.comp-card-v2-progress {
  margin-bottom: var(--space-4);
}
.comp-card-v2-progress-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-fog);
  margin-bottom: 6px;
}
.comp-card-v2-progress-bar {
  height: 6px;
  background: var(--bg-deep);
  border-radius: 3px;
  overflow: hidden;
}
.comp-card-v2-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  border-radius: 3px;
  transition: width .4s;
  box-shadow: 0 0 8px var(--gold-glow);
}

.comp-card-v2-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: var(--space-3);
  padding: 10px;
  background: var(--bg-deep);
  border-radius: var(--r-sm);
  border: 1px solid var(--line-gold);
}
.comp-card-v2-price strong {
  font-family: var(--f-display);
  font-size: 32px;
  color: var(--gold);
  letter-spacing: .02em;
  line-height: 1;
}
.comp-card-v2-price small {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-fog);
}

.comp-card-v2-title {
  font-family: var(--f-heading);
  font-size: 16px;
  margin: 0;
  color: var(--text);
  text-align: center;
  line-height: 1.3;
  letter-spacing: .01em;
}

/* ------- Winners strip ------- */
.winners-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-3);
}
.winner-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .15s;
}
.winner-card:hover { border-color: var(--gold); }
.winner-card-image {
  aspect-ratio: 16/10;
  background: var(--bg-soft);
  overflow: hidden;
}
.winner-card-image img { width: 100%; height: 100%; object-fit: cover; }
.winner-card-body { padding: var(--space-3); }
.winner-card-name {
  font-family: var(--f-heading);
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.winner-card-prize {
  font-size: 13px;
  color: var(--text);
  margin-bottom: 4px;
}
.winner-card-meta {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-fog);
}

/* ------- Final CTA ------- */
.final-cta {
  background:
    linear-gradient(135deg, rgba(212,175,106,.12), rgba(196,69,69,.04)),
    var(--bg-elevated);
  border: 1px solid var(--gold);
  border-radius: var(--r-lg);
  padding: var(--space-7) var(--space-5);
  text-align: center;
}
.final-cta h2 {
  font-family: var(--f-display);
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: var(--space-3);
}
.final-cta p {
  font-size: 17px;
  color: var(--text-soft);
  max-width: 480px;
  margin: 0 auto var(--space-5);
}
.final-cta small {
  display: block;
  margin-top: var(--space-3);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-fog);
}

/* ------- Empty state ------- */
.empty-state {
  text-align: center;
  padding: var(--space-7) var(--space-5);
  background: var(--bg-elevated);
  border: 1px dashed var(--line-strong);
  border-radius: var(--r-md);
}
.empty-state h3 {
  font-family: var(--f-display);
  color: var(--gold);
  font-size: 32px;
  margin-bottom: var(--space-3);
}
.empty-state p {
  color: var(--text-soft);
  max-width: 480px;
  margin: 0 auto var(--space-4);
}

/* ============================================================
   OVERHAUL ADDITIONS â€” Modules 1-9
   ============================================================ */

/* MODULE 9 â€” AdminCP dark theme enforcement */
.admin-main { min-height: 100vh; }
.admin-main input:not([type="file"]):not([type="radio"]):not([type="checkbox"]),
.admin-main textarea,
.admin-main select {
  background: var(--bg-deep);
  color: var(--text);
  border-color: var(--line-strong);
}
.admin-main input::placeholder,
.admin-main textarea::placeholder { color: var(--text-fog); }
.admin-main details {
  background: var(--bg-elevated);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  border: 1px solid var(--line);
  margin-bottom: var(--space-3);
}
.admin-main details > summary {
  cursor: pointer;
  color: var(--gold);
  font-family: var(--f-heading);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 13px;
  user-select: none;
}

/* MODULE 6 â€” Mobile overflow fixes */
@media (max-width: 480px) {
  .comp-grid    { grid-template-columns: 1fr; }
  .how-grid     { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
}
@media (max-width: 380px) {
  .countdown-unit { padding: 8px 4px; }
  .countdown-num  { font-size: 24px; }
}
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* MODULE 1 â€” Trust signals */
.trust-float {
  position: fixed;
  right: 20px;
  bottom: 80px;
  z-index: 200;
  background: var(--bg-elevated);
  border: 1px solid var(--gold);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  font-family: var(--f-heading);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-soft);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background .15s;
  box-shadow: var(--shadow-md);
}
.trust-float:hover { background: var(--gold); color: var(--bg-deep); }
@media (max-width: 640px) { .trust-float { display: none; } }

.footer-legal-strip {
  border-top: 1px solid var(--line);
  padding-top: var(--space-4);
  margin-top: var(--space-4);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-fog);
  line-height: 1.8;
}
.footer-legal-strip a { color: var(--text-fog); text-decoration: underline; }
.footer-legal-strip a:hover { color: var(--text); }

.payment-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: var(--space-4) 0 var(--space-2);
}
.payment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  padding: 5px 10px;
  font-family: var(--f-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-soft);
  height: 30px;
}
.secure-line {
  text-align: center;
  color: var(--text-fog);
  font-size: 12px;
  margin-top: 8px;
  font-family: var(--f-mono);
  letter-spacing: .1em;
}

/* MODULE 2 â€” CRO: progress bar states */
.comp-card-v2-progress-fill.bar-low  { background: var(--success); box-shadow: none; }
.comp-card-v2-progress-fill.bar-mid  { background: var(--warning); box-shadow: none; }
.comp-card-v2-progress-fill.bar-high { background: var(--blood-bright); box-shadow: none; }
.progress-bar-fill.bar-low  { background: var(--success); }
.progress-bar-fill.bar-mid  { background: var(--warning); }
.progress-bar-fill.bar-high { background: var(--blood-bright); }

/* Compact countdown badge on cards */
.card-countdown {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(20,19,18,.85);
  border: 1px solid var(--line-strong);
  color: var(--gold);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .1em;
  padding: 4px 8px;
  backdrop-filter: blur(4px);
  border-radius: var(--r-sm);
  z-index: 2;
}

/* Instant Win overlay flag */
.iw-flag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(20,19,18,.85);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--f-heading);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  padding: 5px 10px;
  border-radius: var(--r-sm);
  z-index: 2;
  animation: iw-glow 2.5s ease-in-out infinite;
}
@keyframes iw-glow {
  0%, 100% { box-shadow: 0 0 8px rgba(212,175,106,.3); }
  50%       { box-shadow: 0 0 18px rgba(212,175,106,.7); }
}

/* Winner marquee ticker */
.marquee-track {
  overflow: hidden;
  height: 38px;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  position: relative;
}
.marquee-track::before,
.marquee-track::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.marquee-track::before { left: 0; background: linear-gradient(90deg, var(--bg-deep), transparent); }
.marquee-track::after  { right: 0; background: linear-gradient(270deg, var(--bg-deep), transparent); }
.marquee-inner {
  display: flex;
  width: max-content;
  animation: marquee-scroll 60s linear infinite;
}
.marquee-track:hover .marquee-inner { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 32px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-soft);
  white-space: nowrap;
}
.marquee-pill .mp-sep { color: var(--gold); opacity: .5; }
.marquee-pill strong  { color: var(--gold); }

/* MODULE 3 â€” Checkout urgency timer */
.checkout-timer-bar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--blood);
  border-bottom: 1px solid var(--blood-bright);
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-family: var(--f-heading);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.checkout-timer-bar span[data-unit] {
  font-family: var(--f-display);
  font-size: 20px;
  color: var(--gold);
  letter-spacing: .04em;
}
.checkout-timer-bar.urgent { animation: timer-pulse 1s ease-in-out infinite; }
@keyframes timer-pulse {
  0%, 100% { background: var(--blood); }
  50%       { background: var(--blood-bright); }
}

/* MODULE 7 â€” Competition detail hero */
.comp-hero-wrap {
  width: 100%;
  max-height: 480px;
  overflow: hidden;
  position: relative;
  background: var(--bg-soft);
}
.comp-hero-wrap img { width: 100%; max-height: 480px; object-fit: cover; display: block; }
.comp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,19,18,.9) 0%, rgba(20,19,18,.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 40px;
}
@media (max-width: 640px) {
  .comp-hero-overlay { padding: 20px 18px; }
  .comp-hero-wrap { max-height: 260px; }
}
.prize-value-display {
  font-family: var(--f-display);
  font-size: clamp(32px, 5vw, 60px);
  color: var(--gold);
  letter-spacing: .04em;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
}
.comp-trust-micro {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.comp-trust-micro-item { display: flex; align-items: center; gap: 6px; }
.comp-trust-micro-item .ctm-icon { color: var(--gold); }

/* Stats bar */
.comp-stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line-strong);
  background: var(--bg-elevated);
  border-radius: var(--r-md);
  margin: var(--space-5) 0;
  overflow: hidden;
}
.comp-stats-bar-item {
  padding: 14px 18px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.comp-stats-bar-item:last-child { border-right: 0; }
.comp-stats-bar-num {
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--gold);
  letter-spacing: .04em;
  line-height: 1;
}
.comp-stats-bar-lbl {
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--text-fog);
  margin-top: 4px;
}
@media (max-width: 480px) {
  .comp-stats-bar { grid-template-columns: 1fr; }
  .comp-stats-bar-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .comp-stats-bar-item:last-child { border-bottom: 0; }
}

/* MODULE 8 â€” Ticket qty stepper */
.qty-stepper-wrap {
  border: 1px dashed var(--line-strong);
  background: var(--bg-deep);
  padding: 14px 16px;
  margin-bottom: var(--space-4);
  border-radius: var(--r-sm);
}
.qty-stepper-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-fog);
  margin-bottom: 10px;
  display: block;
}
.qty-stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  overflow: hidden;
  width: fit-content;
}
.qty-btn {
  background: var(--bg-elevated);
  border: 0;
  color: var(--text);
  width: 44px;
  height: 44px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s;
}
.qty-btn:hover { background: var(--gold); color: var(--bg-deep); }
.qty-btn:disabled { opacity: .4; cursor: not-allowed; }
.qty-input {
  width: 80px;
  height: 44px;
  background: var(--bg-deep);
  border: 0;
  border-left: 1px solid var(--line-strong);
  border-right: 1px solid var(--line-strong);
  color: var(--text);
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: .04em;
  text-align: center;
  -moz-appearance: textfield;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty-price-line {
  margin-top: 10px;
  font-family: var(--f-heading);
  font-size: 14px;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.qty-price-line strong {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--gold);
  letter-spacing: .04em;
  margin-left: 8px;
}
.qty-or-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
  color: var(--text-fog);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.qty-or-divider::before,
.qty-or-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* Video embed responsive wrapper */
.video-embed {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  background: var(--bg-deep);
  border-radius: var(--r-sm);
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-thumb-wrap {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--r-sm);
}
.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20,19,18,.4);
  transition: background .2s;
}
.video-play-btn::after {
  content: 'â–¶';
  font-size: 48px;
  color: white;
  text-shadow: 0 2px 12px rgba(0,0,0,.7);
  transition: transform .2s;
}
.video-thumb-wrap:hover .video-play-btn { background: rgba(20,19,18,.6); }
.video-thumb-wrap:hover .video-play-btn::after { transform: scale(1.15); }

/* Breadcrumb comp-filters missing from v2 */
.comp-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: var(--space-5);
  padding: var(--space-3) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.comp-filters-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-fog);
  margin-right: 6px;
}
.comp-filters-count { margin-left: auto; color: var(--text-fog); font-size: 13px; }

/* ============================================================
   PART 2 ADDITIONS
   ============================================================ */

/* competition detail layout additions */
.comp-hero-wrap + .wrap { padding-top: var(--space-6); }

/* comp-card-v2 countdown data-end target */
.comp-card-v2-countdown[data-end] strong { color: var(--gold); }

/* Progress bar colour states on comp-card-v2 */
.comp-card-v2-progress-fill.bar-low  { background: var(--success); box-shadow: none; }
.comp-card-v2-progress-fill.bar-mid  { background: var(--warning); box-shadow: none; }
.comp-card-v2-progress-fill.bar-high { background: var(--blood-bright); box-shadow: none; }

/* Responsible gambling detail styling */
.rg-card-danger {
  border-color: var(--blood);
}

/* comp-card-v2 link reset */
.comp-card-v2 { text-decoration: none; color: inherit; display: block; }

/* Account page: responsive stats */
@media (max-width: 480px) {
  .acc-grid { grid-template-columns: 1fr 1fr; }
  .acc-stat-value { font-size: 30px; }
}

/* Bundle option selected state in buy panel */
.bundle-option.selected {
  border-color: var(--gold);
  background: var(--gold-soft);
}

/* Comp detail: no image state */
.comp-gallery-main-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/10;
  background: var(--bg-soft);
  border-radius: var(--r-md);
  margin-bottom: var(--space-3);
}

/* Prize value hero display */
.prize-value-display {
  font-family: var(--f-display);
  font-size: clamp(32px, 5vw, 56px);
  color: var(--gold);
  letter-spacing: .04em;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
}

/* Trust micro strip */
.comp-trust-micro {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}
.comp-trust-micro-item { display: flex; align-items: center; gap: 6px; }
.comp-trust-micro-item .ctm-icon { color: var(--gold); }

/* Auth forms */
.field input[type="checkbox"] { accent-color: var(--gold); }

/* Topbar: center on mobile (single item) */
@media (max-width: 640px) {
  .topbar-inner { justify-content: center; }
}

/* Admin: hide --ink-* refs in inline styles gracefully */
[style*="ink-"] { /* no rule needed â€” just ensures no parser errors */ }

/* ============================================================
/* ============================================================
   UI OVERHAUL — Dark Obsidian Professional Theme (ui.txt)
   Body canvas: #121318  |  Cards: #1C1E26
   ============================================================ */

/* ---- 1. Dark obsidian global canvas ---- */
body {
  background: #121318;
  color: #F3F4F6;
  --bg:          #121318;
  --bg-elevated: #1C1E26;
  --bg-soft:     #1A1C23;
  --bg-deep:     #0E1015;
  --text:        #F3F4F6;
  --text-soft:   #C9BDA4;
  --text-fog:    #6B7280;
  --line:        rgba(255,255,255,.06);
  --line-strong: rgba(255,255,255,.12);
}
main { background: #121318; }

/* Grain texture — low on dark bg */
body::before { opacity: .25; }

/* ---- 2. Gold — Champagne #D4AF37 ---- */
:root {
  --gold:       #D4AF37;
  --gold-bright:#E8C857;
  --gold-soft:  rgba(212,175,55,.14);
  --gold-glow:  rgba(212,175,55,.35);
  --line-gold:  rgba(212,175,55,.3);
}

/* ---- 3. Card containers — charcoal-slate depth ---- */
.card {
  background: #1C1E26;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
  border-color: rgba(255,255,255,.06);
}
.card.framed::before, .card.framed::after,
.card.framed .corner-tl, .card.framed .corner-bl {
  border-color: var(--gold);
}

/* ---- 4. Competition cards — charcoal pop ---- */
.comp-card-v2 {
  background: #1C1E26;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
  border-color: rgba(255,255,255,.06);
}
.comp-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
  border-color: var(--gold);
}

/* ---- 5. Trust badge bar ---- */
.trust-strip {
  background: #181A21;
  border: 1px solid #252833;
  border-radius: 14px;
  box-shadow: none;
}
.trust-item { color: #C9BDA4; }

/* ---- 6. Topbar / nav / ticker / footer on obsidian ---- */
.topbar   { background: #0E1015; }
.nav      { background: rgba(14,16,21,.92); }
.footer   { background: #0E1015; border-top-color: rgba(255,255,255,.05); }
.marquee-track { background: #0E1015; }

/* ---- 7. Hero section ---- */
.home-hero-simple {
  background: transparent;
  padding: var(--space-7) 0;
}

/* ---- 8. Typography — high-contrast headers ---- */
h1, h2, h3, h4, h5 { color: #F3F4F6; }
p { color: #C9BDA4; }
.card p { color: #C9BDA4; }
.section-head h2,
.comp-listing-h1 { color: #F3F4F6; }

/* ---- 9. Champagne Gold CTA buttons ---- */
.btn-primary {
  background: #D4AF37;
  border-color: #D4AF37;
  color: #0E1015;
}
.btn-primary:hover {
  background: #E8C857;
  border-color: #E8C857;
  color: #0E1015;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,175,55,.35);
}

/* ---- 10. Winner cards ---- */
.winner-card {
  background: #1C1E26;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
  border-color: rgba(255,255,255,.06);
}

/* ---- 11. Section-head ghost buttons ---- */
.section-head .btn-ghost {
  color: #C9BDA4;
  border-color: rgba(255,255,255,.12);
}
.section-head .btn-ghost:hover {
  color: #F3F4F6;
  border-color: var(--gold);
  background: rgba(212,175,55,.08);
}

/* ---- 12. Single competition gallery — no crop ---- */
.comp-gallery-main {
  background: #1C1E26;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
  aspect-ratio: unset;
}
.comp-gallery-main img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 500px;
  border-radius: 12px;
  display: block;
}

/* ---- 13. Stop Scrolling spacing patch ---- */
.stop-scrolling-container { margin-top: 48px; }

/* ---- 14. Mobile <480px crossover ---- */
@media (max-width: 480px) {
  body, main { background: #121318; }

  .comp-gallery-main img {
    max-height: 280px;
    border-radius: 10px;
  }

  .comp-layout { gap: var(--space-4); }
  .comp-card-v2 { box-shadow: 0 6px 16px rgba(0,0,0,.25); }
  .stop-scrolling-container { margin-top: 3rem; }
  .trust-strip { padding: var(--space-4); }
}

/* ============================================================
   UI OVERHAUL v2 — Border purge + dark embed (ui.txt pass 2)
   ============================================================ */

/* ---- 1. Topbar & ticker: blend into #121318 canvas ---- */
.topbar        { background: #121318; border-bottom: 1px solid rgba(255,255,255,.04); }
.marquee-track { background: #121318; }
.marquee-track::before { background: linear-gradient(90deg, #121318, transparent); }
.marquee-track::after  { background: linear-gradient(270deg, #121318, transparent); }

/* ---- 2. Form input focus — soft muted glow, no harsh gold ---- */
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #4B5563;
  box-shadow: 0 0 0 2px rgba(212,175,55,.2);
  outline: none;
}

/* ---- 3. Button keyboard-focus — softer gold ring ---- */
.btn:focus-visible {
  outline: 2px solid rgba(212,175,55,.45);
  outline-offset: 2px;
}

/* ---- 4. Structural panel borders — slate not gold ---- */
.age-gate-card  { border: 1px solid #252833; }
.cookie-banner  { border: 1px solid #252833; }
.final-cta      { border: 1px solid #252833; }
.trust-float    { border: 1px solid #252833; }

/* ---- Hero countdown timer ---- */
.hero-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 20px 0 8px;
}
.hero-countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(212,175,55,.25);
  border-radius: 10px;
  padding: 10px 18px;
  min-width: 64px;
}
.hero-countdown-unit strong {
  font-family: var(--f-display, 'Bangers', sans-serif);
  font-size: 36px;
  color: #D4AF37;
  line-height: 1;
}
.hero-countdown-unit small {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #F3F4F6;
  margin-top: 4px;
}
.hero-countdown-sep {
  font-family: var(--f-display, 'Bangers', sans-serif);
  font-size: 28px;
  color: #D4AF37;
  line-height: 1;
  padding-bottom: 16px;
}
@media (max-width: 480px) {
  .hero-countdown-unit { padding: 8px 12px; min-width: 52px; }
  .hero-countdown-unit strong { font-size: 28px; }
  .hero-countdown-sep { font-size: 22px; }
}

/* ---- Nav toggle: replace corrupted unicode pseudo-elements with SVG icons ---- */
.nav-toggle::before { content: none !important; }
.nav-toggle { gap: 0; padding: 6px; }
.nav-toggle-close { display: none; }
.nav.open .nav-toggle-open  { display: none; }
.nav.open .nav-toggle-close { display: block; }

/* ============================================================
   ■■ TATTOO CULTURE FINAL OVERHAUL — ui.txt COMPLETE EXECUTION ■■
   ──────────────────────────────────────────────────────────────
   Deep Atmospheric Studio Dark · Ornate Filigree Framing
   Obsidian Canvas #0B0C0E · Slate Panel #12141A
   Ink Border #212531 · Filigree Gold #5C4D24
   Champagne CTA #D4AF37
   ============================================================ */

/* ══════════════════════════════════════════════
   1. DESIGN TOKENS — Exact ui.txt specification
   ══════════════════════════════════════════════ */
:root {
  --ink-canvas:    #0B0C0E;
  --ink-panel:     #12141A;
  --ink-border:    #212531;
  --ink-filigree:  #5C4D24;
  --ink-champagne: #D4AF37;

  --bg:            #0B0C0E;
  --bg-elevated:   #12141A;
  --bg-soft:       #181A22;
  --bg-deep:       #07080A;
  --line:          rgba(33,37,49,.85);
  --line-strong:   #212531;
  --line-gold:     rgba(92,77,36,.45);
  --gold:          #D4AF37;
  --gold-bright:   #E8CC50;
  --gold-soft:     rgba(212,175,55,.10);
  --gold-glow:     rgba(212,175,55,.28);
  --text:          #F0EDE6;
  --text-soft:     #C0B49E;
  --text-fog:      #64697A;
  --text-dim:      #3A3D4A;
}

/* ══════════════════════════════════════════════
   2. LAYERED ATMOSPHERIC BACKGROUND
   Layer 1 → #0B0C0E solid base
   Layer 2 → Amber/slate radial depth (studio atmosphere)
   Layer 3 → Luxury linear gradient mask
   ══════════════════════════════════════════════ */
html { background: #0B0C0E; }

body {
  background-color: #0B0C0E;
  background-image:
    linear-gradient(180deg, rgba(11,12,14,.93) 0%, rgba(18,20,26,.97) 100%),
    radial-gradient(ellipse 100% 65% at 8% 10%, rgba(92,77,36,.10) 0%, transparent 55%),
    radial-gradient(ellipse 80% 100% at 92% 90%, rgba(33,37,49,.22) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 50% 0%, rgba(92,77,36,.055) 0%, transparent 40%);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: #F0EDE6;
}

body::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.78 0 0 0 0 0.72 0 0 0 0 0.58 0 0 0 0.028 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .42;
  z-index: 0;
}

main { background: transparent; }

body::after {
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(92,77,36,.5) 8%,
    #D4AF37 30%,
    #E8CC50 50%,
    #D4AF37 70%,
    rgba(92,77,36,.5) 92%,
    transparent 100%
  );
}

@media (max-width: 768px) { body { background-attachment: scroll; } }

/* ══════════════════════════════════════════════
   3. BRAND LOGO IMAGES — Nav, Footer, Admin, Email
   ══════════════════════════════════════════════ */
.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  max-width: 200px;
}
@media (max-width: 639px) { .nav-logo-img { height: 36px; max-width: 150px; } }

.admin-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 6px;
}

.footer-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 14px;
}

/* ══════════════════════════════════════════════
   4. ORNATE TATTOO FILIGREE CARD FRAMING
   Fine-line Victorian corner SVG ornaments
   Top-left + Bottom-right, 4px inside card edges
   ══════════════════════════════════════════════ */

/* Top-left corner ornament */
.comp-card-v2::before,
.card.framed::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 38px;
  height: 38px;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='38' height='38' viewBox='0 0 38 38'%3E%3Cpath d='M3 35L3 9Q3 3 9 3L35 3' stroke='%235C4D24' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M3 26L3 12Q3 7 8 7L22 7' stroke='%235C4D24' stroke-width='0.75' fill='none' opacity='0.55' stroke-linecap='round'/%3E%3Ccircle cx='6' cy='6' r='2.2' fill='%235C4D24' opacity='0.65'/%3E%3Ccircle cx='3' cy='3' r='1.1' fill='%235C4D24' opacity='0.35'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

/* Bottom-right corner ornament */
.comp-card-v2::after,
.card.framed::after {
  content: '';
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 38px;
  height: 38px;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='38' height='38' viewBox='0 0 38 38'%3E%3Cpath d='M35 3L35 29Q35 35 29 35L3 35' stroke='%235C4D24' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M35 12L35 26Q35 31 30 31L17 31' stroke='%235C4D24' stroke-width='0.75' fill='none' opacity='0.55' stroke-linecap='round'/%3E%3Ccircle cx='32' cy='32' r='2.2' fill='%235C4D24' opacity='0.65'/%3E%3Ccircle cx='35' cy='35' r='1.1' fill='%235C4D24' opacity='0.35'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

/* Framed cards: render ornaments above content */
.card.framed::before,
.card.framed::after { z-index: 10; }

/* Mobile: suppress ornaments → elegant subtle border */
@media (max-width: 767px) {
  .comp-card-v2::before, .comp-card-v2::after,
  .card.framed::before,  .card.framed::after {
    display: none;
  }
  .comp-card-v2 { border: 1px solid rgba(92,77,36,.28) !important; }
  .card.framed  { border: 1px solid rgba(92,77,36,.28) !important; }
}

/* ══════════════════════════════════════════════
   5. BESPOKE INK DIVIDER — Tattoo scrollwork SVG
   Centered diamond motif · fades to transparent edges
   ══════════════════════════════════════════════ */
.ink-divider {
  display: block;
  width: 100%;
  height: 24px;
  margin: var(--space-7) 0 var(--space-6);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 24' preserveAspectRatio='xMidYMid meet'%3E%3Cdefs%3E%3ClinearGradient id='fL' x1='0' x2='1' y1='0' y2='0'%3E%3Cstop offset='0%25' stop-color='%235C4D24' stop-opacity='0'/%3E%3Cstop offset='100%25' stop-color='%235C4D24' stop-opacity='0.55'/%3E%3C/linearGradient%3E%3ClinearGradient id='fR' x1='0' x2='1' y1='0' y2='0'%3E%3Cstop offset='0%25' stop-color='%235C4D24' stop-opacity='0.55'/%3E%3Cstop offset='100%25' stop-color='%235C4D24' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cline x1='0' y1='12' x2='328' y2='12' stroke='url(%23fL)' stroke-width='0.8'/%3E%3Cpath d='M330 12Q336 8 342 12Q348 16 354 12Q360 8 366 12' stroke='%235C4D24' stroke-width='0.8' fill='none' opacity='0.7'/%3E%3Cpolygon points='400,7 408,12 400,17 392,12' fill='none' stroke='%235C4D24' stroke-width='1.2' opacity='0.92'/%3E%3Cpolygon points='400,9.5 406,12 400,14.5 394,12' fill='%235C4D24' opacity='0.38'/%3E%3Ccircle cx='400' cy='12' r='1.5' fill='%235C4D24' opacity='0.6'/%3E%3Cpath d='M434 12Q440 8 446 12Q452 16 458 12Q464 8 470 12' stroke='%235C4D24' stroke-width='0.8' fill='none' opacity='0.7'/%3E%3Cline x1='472' y1='12' x2='800' y2='12' stroke='url(%23fR)' stroke-width='0.8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border: none;
  overflow: visible;
}

/* ══════════════════════════════════════════════
   6. NAVIGATION — Obsidian depth
   ══════════════════════════════════════════════ */
.nav {
  background: rgba(7,8,10,.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid #212531;
}
.nav-links a { color: #C0B49E; }
.nav-links a:hover { color: #F0EDE6; background: rgba(33,37,49,.6); }
.nav-links a.active { color: #D4AF37; }
.nav.open .nav-links {
  background: #12141A;
  border-bottom: 1px solid #212531;
}
.nav-brand-text {
  color: #D4AF37;
}

/* Topbar */
.topbar { background: #07080A; border-bottom: 1px solid #212531; }
.marquee-track { background: #07080A; border-bottom: 1px solid #212531; }
.marquee-track::before { background: linear-gradient(90deg, #07080A, transparent); }
.marquee-track::after  { background: linear-gradient(270deg, #07080A, transparent); }

/* ══════════════════════════════════════════════
   7. FOOTER — Deep obsidian
   ══════════════════════════════════════════════ */
.footer { background: #07080A; border-top: 1px solid #212531; }
.footer-legal { background: rgba(0,0,0,.4); border-radius: 8px; }
.footer-meta {
  padding-top: var(--space-4);
  border-top: 1px solid #212531;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-fog);
  font-family: var(--f-mono);
  letter-spacing: .12em;
}

/* ══════════════════════════════════════════════
   8. HERO — Studio-atmosphere glow
   ══════════════════════════════════════════════ */
.home-hero-simple {
  background: transparent;
  padding: var(--space-8) 0 var(--space-7);
  position: relative;
  overflow: hidden;
}
.home-hero-simple::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 110vw);
  height: 480px;
  background: radial-gradient(ellipse, rgba(92,77,36,.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.home-hero-simple .wrap { position: relative; z-index: 1; }
.home-hero-h1 {
  color: #F0EDE6;
  text-shadow: 0 4px 48px rgba(0,0,0,.55);
}
.home-hero-h1 .accent {
  color: #D4AF37;
  text-shadow: 0 0 60px rgba(212,175,55,.18);
}

/* ══════════════════════════════════════════════
   9. COMPETITION CARDS — Obsidian-slate depth
   ══════════════════════════════════════════════ */
.comp-card-v2 {
  background: #12141A;
  border: 1px solid #212531;
  border-radius: 14px;
  box-shadow: 0 6px 28px rgba(0,0,0,.55);
}
.comp-card-v2:hover {
  border-color: #D4AF37;
  box-shadow: 0 18px 52px rgba(0,0,0,.65), 0 0 0 1px rgba(212,175,55,.12);
  transform: translateY(-5px);
}
.comp-card-v2-body { background: #12141A; }
.comp-card-v2-countdown > div {
  background: #0B0C0E;
  border-color: #212531;
}
.comp-card-v2-price {
  background: #0B0C0E;
  border: 1px solid rgba(92,77,36,.4);
  border-radius: 8px;
}
.comp-card-v2-progress-bar { background: #07080A; }
.comp-card-v2-overlay {
  background: linear-gradient(180deg,
    transparent 0%, transparent 30%,
    rgba(11,12,14,.55) 70%, rgba(11,12,14,.96) 100%
  );
}
.card-enter-cta {
  display: block;
  text-align: center;
  font-family: var(--f-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(212,175,55,.55);
  padding-top: var(--space-3);
  transition: color .2s;
}
.comp-card-v2:hover .card-enter-cta { color: #D4AF37; }

/* ══════════════════════════════════════════════
   10. CARDS & PANELS
   ══════════════════════════════════════════════ */
.card { background: #12141A; border-color: #212531; border-radius: 14px; }
.card.framed { border-color: rgba(92,77,36,.4); position: relative; }
.card.framed:hover { border-color: rgba(212,175,55,.45); }
.how-step { background: #12141A; border-color: #212531; border-radius: 14px; position: relative; }
.how-step:hover { border-color: rgba(212,175,55,.38); }
.bundle-option { background: #0B0C0E; border-color: #212531; position: relative; }
.bundle-option:hover { border-color: rgba(212,175,55,.45); }
.bundle-option.selected { border-color: #D4AF37; background: rgba(212,175,55,.05); }

/* ══════════════════════════════════════════════
   11. TRUST STRIP & WINNER CARDS
   ══════════════════════════════════════════════ */
.trust-strip { background: #12141A; border: 1px solid #212531; border-radius: 14px; }
.trust-item { color: #C0B49E; }
.winner-card { background: #12141A; border-color: #212531; border-radius: 14px; }
.winner-card:hover { border-color: rgba(212,175,55,.4); }

/* ══════════════════════════════════════════════
   12. BUTTONS — Champagne gold
   ══════════════════════════════════════════════ */
.btn-primary {
  background: #D4AF37;
  border-color: #D4AF37;
  color: #07080A;
  font-weight: 700;
}
.btn-primary:hover {
  background: #E8CC50;
  border-color: #E8CC50;
  color: #07080A;
  box-shadow: 0 8px 28px rgba(212,175,55,.38), 0 3px 10px rgba(0,0,0,.3);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); }
.btn-ghost { border-color: #212531; color: #C0B49E; }
.btn-ghost:hover { border-color: rgba(212,175,55,.45); background: rgba(212,175,55,.05); color: #F0EDE6; }

/* ══════════════════════════════════════════════
   13. FORMS & INPUTS
   ══════════════════════════════════════════════ */
.field input[type="text"],
.field input[type="email"],
.field input[type="password"],
.field input[type="tel"],
.field input[type="number"],
.field input[type="url"],
.field input[type="date"],
.field input[type="datetime-local"],
.field input[type="search"],
.field select,
.field textarea {
  background: #12141A;
  border-color: #212531;
  color: #F0EDE6;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(212,175,55,.45);
  box-shadow: 0 0 0 2px rgba(212,175,55,.09);
  outline: none;
}

/* ══════════════════════════════════════════════
   14. MODALS — Age gate, Cookie banner
   ══════════════════════════════════════════════ */
.age-gate { background: rgba(7,8,10,.97); }
.age-gate-card { background: #12141A; border: 1px solid #212531; border-radius: 18px; position: relative; }
.cookie-banner { background: #12141A; border: 1px solid #212531; border-radius: 14px; }

/* ══════════════════════════════════════════════
   15. ADMIN PANEL — Obsidian refinements
   ══════════════════════════════════════════════ */
.admin-side { background: #07080A; border-right: 1px solid #212531; }
.admin-brand { border-bottom: 1px solid #212531; }
.admin-nav a { color: #C0B49E; }
.admin-nav a:hover { background: rgba(33,37,49,.7); color: #F0EDE6; }
.admin-nav a.active {
  background: rgba(92,77,36,.14);
  color: #D4AF37;
  border-left: 2px solid #D4AF37;
}
.admin-header { border-bottom: 1px solid #212531; }
.admin-main code { background: #0B0C0E; color: #D4AF37; }

/* Admin fields */
.admin-main input:not([type="file"]):not([type="radio"]):not([type="checkbox"]),
.admin-main textarea,
.admin-main select {
  background: #12141A;
  border-color: #212531;
  color: #F0EDE6;
}

/* ══════════════════════════════════════════════
   16. LOGO UPLOAD PANEL (Admin CP Settings)
   ══════════════════════════════════════════════ */
.logo-settings-group {
  display: grid;
  gap: 20px;
}
.logo-slot {
  border: 1px solid #212531;
  background: #0B0C0E;
  border-radius: 12px;
  padding: 20px;
}
.logo-slot-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.logo-slot-preview {
  flex-shrink: 0;
  width: 120px;
  height: 56px;
  background: #12141A;
  border: 1px solid #212531;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8px;
}
.logo-slot-preview img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
.logo-slot-preview-empty {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-fog);
  text-align: center;
}
.logo-slot-info h4 {
  font-family: var(--f-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #F0EDE6;
  margin: 0 0 4px;
}
.logo-slot-info p {
  font-size: 12px;
  color: var(--text-fog);
  margin: 0;
  font-family: var(--f-mono);
  letter-spacing: .08em;
}
.logo-slot-controls {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: end;
}
.logo-slot-upload-form {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(33,37,49,.5);
}
.logo-slot-upload-form input[type="file"] {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--text-fog);
  flex: 1;
}

/* ══════════════════════════════════════════════
   17. COUNTDOWN, PROGRESS, STATS
   ══════════════════════════════════════════════ */
.countdown-unit { background: #0B0C0E; border-color: #212531; }
.progress-bar { background: #07080A; }
.comp-stats-bar { background: #12141A; border-color: #212531; }
.comp-stats-bar-item { border-right-color: #212531; }
.ticket-num { background: #0B0C0E; border-color: #212531; }
.acc-stat { background: #12141A; border-color: #212531; border-radius: 14px; }

/* ══════════════════════════════════════════════
   18. TABLES
   ══════════════════════════════════════════════ */
.tbl { background: #12141A; border-color: #212531; border-radius: 14px; }
.tbl th { background: #0B0C0E; border-bottom-color: #212531; color: var(--text-fog); }
.tbl td { border-bottom-color: rgba(33,37,49,.6); }

/* ══════════════════════════════════════════════
   19. CHECKOUT
   ══════════════════════════════════════════════ */
.checkout-total { border-top-color: rgba(92,77,36,.4); }
.checkout-line { border-bottom-color: rgba(33,37,49,.5); }

/* ══════════════════════════════════════════════
   20. ALERTS
   ══════════════════════════════════════════════ */
.alert-success { background: rgba(127,201,127,.05); border-color: rgba(127,201,127,.18); }
.alert-error   { background: rgba(229,115,115,.05); border-color: rgba(229,115,115,.18); }
.alert-info    { background: rgba(126,182,212,.05); border-color: rgba(126,182,212,.18); }
.alert-warning { background: rgba(232,182,87,.05);  border-color: rgba(232,182,87,.18); }

/* ══════════════════════════════════════════════
   21. TYPOGRAPHY
   ══════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 { color: #F0EDE6; }
p { color: #C0B49E; }
.accent { color: #D4AF37; }
.eyebrow { color: rgba(212,175,55,.65); }
.eyebrow.gold { color: #D4AF37; }
.rule { background: rgba(212,175,55,.35); }
.home-section-head h2::before,
.home-section-head h2::after { content: "✦"; color: rgba(212,175,55,.4); }

/* ══════════════════════════════════════════════
   22. SECTION HEAD
   ══════════════════════════════════════════════ */
.section-head { border: none; }

/* ══════════════════════════════════════════════
   23. RESPONSIVE MOBILE
   ══════════════════════════════════════════════ */
@media (max-width: 480px) {
  .home-hero-simple { padding: var(--space-7) 0 var(--space-6); }
  .trust-strip { padding: var(--space-3); gap: var(--space-3); }
  .comp-card-v2 { box-shadow: 0 4px 16px rgba(0,0,0,.4); }
}
@media (max-width: 380px) {
  .footer-grid { grid-template-columns: 1fr; }
}

@media print {
  body { background: white !important; color: black !important; }
  .ink-divider { display: none; }
}

/* ============================================================
   ■■ REDESIGN OVERHAUL — redesign.txt Full Execution
   ──────────────────────────────────────────────────────────────
   Bebas Neue / Oswald / Special Elite / Inter
   Ink Black #0A0A0A · Deep #111111 · Gold #C9A84C
   ============================================================ */

/* ══════════════════════════════════════════════
   R1. DESIGN TOKENS
   ══════════════════════════════════════════════ */
:root {
  --ink-black:      #0A0A0A;
  --ink-deep:       #111111;
  --ink-surface:    #1A1818;
  --ink-border:     #2A2520;
  --ink-gold:       #C9A84C;
  --ink-gold-light: #E8C96A;
  --ink-gold-dim:   #8A6D2E;
  --ink-red:        #8B1A1A;
  --ink-red-vivid:  #C0392B;
  --ink-white:      #F0EBE0;
  --ink-muted:      #9A9080;
  --ink-glow:       rgba(201,168,76,0.12);

  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Oswald', sans-serif;
  --font-accent:  'Special Elite', cursive;
  --font-body:    'Inter', sans-serif;

  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-pill: 999px;

  /* Map legacy tokens to new palette */
  --bg:          #0A0A0A;
  --bg-elevated: #111111;
  --bg-soft:     #1A1818;
  --bg-deep:     #0A0A0A;
  --line:        rgba(42,37,32,.9);
  --line-strong: #2A2520;
  --line-gold:   rgba(138,109,46,.4);
  --gold:        #C9A84C;
  --gold-bright: #E8C96A;
  --gold-soft:   rgba(201,168,76,.12);
  --gold-glow:   rgba(201,168,76,.28);
  --blood:       #8B1A1A;
  --blood-bright:#C0392B;
  --text:        #F0EBE0;
  --text-soft:   #C8B49A;
  --text-fog:    #9A9080;
  --text-dim:    #4A4440;

  /* Map legacy font vars */
  --f-display: 'Bebas Neue', sans-serif;
  --f-heading: 'Oswald', sans-serif;
  --f-body:    'Inter', sans-serif;
  --f-mono:    'Special Elite', cursive;

  /* Map legacy radius vars */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;

  color-scheme: dark;
}

/* ══════════════════════════════════════════════
   R2. GLOBAL LAYOUT & BACKGROUND
   ══════════════════════════════════════════════ */
html { background: #0A0A0A; }

body {
  background-color: #0A0A0A;
  background-image: none;
  background-attachment: initial;
  color: #F0EBE0;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

body::after {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #8A6D2E 15%, #C9A84C 50%, #8A6D2E 85%, transparent 100%);
}

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #F0EBE0;
  line-height: 0.95;
}
h2, h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: #F0EBE0;
  line-height: 1.1;
}
h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  color: #F0EBE0;
}
p {
  font-family: 'Inter', sans-serif;
  color: #9A9080;
  line-height: 1.7;
}
main { background: transparent; }

/* ══════════════════════════════════════════════
   R3. SECTION DIVIDER
   ══════════════════════════════════════════════ */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: var(--space-xl) 0;
  opacity: 0.5;
}
.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, #8A6D2E);
}
.section-divider::after {
  background: linear-gradient(to left, transparent, #8A6D2E);
}
.section-divider span {
  font-size: 10px;
  color: #8A6D2E;
  letter-spacing: 0.3em;
  font-family: 'Special Elite', cursive;
}

/* ══════════════════════════════════════════════
   R4. GLOBAL INK-CARD
   ══════════════════════════════════════════════ */
.ink-card {
  background: #111111;
  border: 1px solid #2A2520;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}
.ink-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #8A6D2E, transparent);
}
.card {
  background: #111111;
  border: 1px solid #2A2520;
  border-radius: var(--radius-md);
}
.card.framed { border-color: rgba(138,109,46,.35); }
.card.framed:hover { border-color: #8A6D2E; }

/* ══════════════════════════════════════════════
   R5. BUTTON SYSTEM
   ══════════════════════════════════════════════ */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.btn {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  line-height: 1.2;
}
.btn:focus-visible {
  outline: 2px solid #C9A84C;
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(90deg, #C9A84C 0%, #E8C96A 50%, #C9A84C 100%);
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
  color: #0A0A0A !important;
  border: none;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
}
.btn-primary:hover {
  animation-duration: 1.5s;
  color: #0A0A0A !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}
.btn-primary:active { transform: translateY(0); animation: none; background: #C9A84C; }

.btn-secondary {
  background: transparent;
  color: #F0EBE0;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid #2A2520;
  transition: all 0.2s ease;
}
.btn-secondary:hover {
  border-color: #8A6D2E;
  color: #C9A84C;
  background: transparent;
}

.btn-ghost {
  background: transparent;
  color: #F0EBE0;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(240,235,224,0.2);
  transition: all 0.2s ease;
}
.btn-ghost:hover {
  border-color: #8A6D2E;
  color: #C9A84C;
  background: transparent;
}

.btn-danger, .btn-blood {
  background: #8B1A1A;
  color: #F0EBE0;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  border: none;
  transition: all 0.2s ease;
}
.btn-danger:hover, .btn-blood:hover {
  background: #C0392B;
  box-shadow: 0 4px 16px rgba(139,26,26,0.4);
  color: #F0EBE0;
}

.btn-sm { padding: 7px 16px !important; font-size: 0.7rem !important; }
.btn-lg { padding: 16px 40px !important; font-size: 0.9rem !important; }
.btn-full, .btn-block { width: 100% !important; text-align: center; display: block; }
.btn:disabled, .btn[disabled] { opacity: 0.5; cursor: not-allowed; transform: none !important; animation: none !important; }

/* ══════════════════════════════════════════════
   R6. FORM ELEMENTS
   ══════════════════════════════════════════════ */
.ink-input,
.field input[type="text"],
.field input[type="email"],
.field input[type="password"],
.field input[type="tel"],
.field input[type="number"],
.field input[type="url"],
.field input[type="date"],
.field input[type="datetime-local"],
.field input[type="search"],
.field select,
.field textarea {
  background: #1A1818;
  border: 1px solid #2A2520;
  border-radius: var(--radius-sm);
  color: #F0EBE0;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  padding: 12px 16px;
  transition: border-color 0.2s ease;
  outline: none;
  -webkit-appearance: none;
}
.ink-input::placeholder,
.field input::placeholder,
.field textarea::placeholder { color: #9A9080; }
.ink-input:focus,
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #8A6D2E;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
  outline: none;
}
.ink-label, .field label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9A9080;
  margin-bottom: 6px;
}
.ink-form-group, .field { margin-bottom: 1.5rem; }

/* Admin fields */
.admin-main input:not([type="file"]):not([type="radio"]):not([type="checkbox"]),
.admin-main textarea,
.admin-main select {
  background: #1A1818;
  border-color: #2A2520;
  color: #F0EBE0;
}
.admin-main input::placeholder,
.admin-main textarea::placeholder { color: #9A9080; }

/* ══════════════════════════════════════════════
   R7. TOPBAR / ANNOUNCEMENT BAR
   ══════════════════════════════════════════════ */
.topbar {
  background: #111111;
  border-bottom: 1px solid #2A2520;
  font-family: 'Special Elite', cursive;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: #8A6D2E;
}
.topbar-inner { color: #8A6D2E; }
.pulse { color: #8A6D2E; }
.topbar a, .topbar-right a { color: #8A6D2E; }
.topbar a:hover, .topbar-right a:hover { color: #C9A84C; }

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74,222,128,0.4); }
  50%       { opacity: 0.8; box-shadow: 0 0 0 4px rgba(74,222,128,0); }
}
.live-dot, .pulse-dot {
  background: #4ADE80;
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: none;
}

/* ══════════════════════════════════════════════
   R8. NAVIGATION
   ══════════════════════════════════════════════ */
.nav {
  background: #111111;
  border-bottom: 1px solid #2A2520;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.nav-inner { height: 60px; }
.nav-brand img { image-rendering: -webkit-optimize-contrast; }
.nav-links a {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #9A9080;
  background: transparent;
  border-radius: 0;
  border-bottom: 1px solid transparent;
  padding: 8px 12px;
  transition: color 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}
.nav-links a:hover {
  color: #C9A84C;
  border-bottom-color: #C9A84C;
  background: transparent;
}
.nav-links a.active {
  color: #C9A84C;
  border-bottom-color: #C9A84C;
}
.nav-brand-text { color: #C9A84C; font-family: 'Bebas Neue', sans-serif; }

/* Mobile full-screen overlay */
@media (max-width: 960px) {
  .nav-toggle {
    background: transparent;
    border: none;
    color: #C9A84C;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
  }
  .nav-links {
    transform: translateX(100%);
    transition: transform 0.3s ease;
    position: fixed;
    inset: 0;
    background: #111111;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 40px 40px;
    z-index: 200;
    border-bottom: none;
    display: flex;
    pointer-events: none;
    visibility: hidden;
  }
  .nav.open .nav-links {
    transform: translateX(0);
    pointer-events: auto;
    visibility: visible;
  }
  .nav.open .nav-links a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 0.02em;
    font-weight: 400;
    color: #F0EBE0;
    padding: 10px 0 10px 16px;
    border-bottom: none;
    border-left: 2px solid transparent;
    width: 100%;
    transition: all 0.15s ease;
    text-align: left;
  }
  .nav.open .nav-links a:hover,
  .nav.open .nav-links a.active {
    color: #C9A84C;
    border-left-color: #C9A84C;
    background: transparent;
    border-bottom: none;
  }
  /* Overlay header (logo + close) */
  .nav-overlay-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 0; left: 0; right: 0;
    padding: 12px 20px 12px 40px;
    border-bottom: 1px solid #2A2520;
  }
  .nav-overlay-header { display: flex; }
  .nav-overlay-close {
    background: transparent;
    border: none;
    color: #C9A84C;
    font-size: 1.5rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }
  .nav-overlay-join {
    display: block;
    margin-top: 2rem;
    width: 100%;
    text-align: center;
  }
  .nav-mobile-signin { display: none; }
}
/* Hide overlay elements on desktop */
@media (min-width: 961px) {
  .nav-overlay-header { display: none; }
  .nav-overlay-join   { display: none; }
  .nav-overlay-close  { display: none; }
}

/* ══════════════════════════════════════════════
   R9. HERO SECTION
   ══════════════════════════════════════════════ */
.home-hero-simple {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(139,26,26,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(139,26,26,0.05) 0%, transparent 40%),
    #0A0A0A;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.home-hero-simple::before { display: none; }
.home-hero-simple::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23C9A84C' stroke-width='0.5' opacity='0.12'%3E%3Cpath d='M60 10L65 40L95 45L70 65L75 95L60 78L45 95L50 65L25 45L55 40Z'/%3E%3Ccircle cx='60' cy='60' r='8' stroke-dasharray='3 3'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 120px 120px;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}
.home-hero-simple .wrap {
  position: relative;
  z-index: 1;
  padding: 6rem 1rem 4rem;
  text-align: center;
  width: 100%;
}
.home-hero-simple .eyebrow {
  font-family: 'Special Elite', cursive;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: #8A6D2E;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.home-hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 10vw, 7rem);
  color: #F0EBE0;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-shadow: 0 0 40px rgba(201,168,76,0.15);
  margin-bottom: 1.5rem;
}
.home-hero-h1 .accent { color: #C9A84C; }
.home-hero-p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #9A9080;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.home-hero-btns {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .home-hero-simple { min-height: 100svh; }
  .home-hero-h1 { font-size: clamp(2.8rem, 14vw, 5rem); }
  .home-hero-btns { flex-direction: column; gap: 0.5rem; }
  .home-hero-btns .btn { width: 100%; }
}

/* ══════════════════════════════════════════════
   R10. TRUST STRIP
   ══════════════════════════════════════════════ */
.trust-strip {
  display: flex;
  gap: 2.5rem;
  padding: 1rem 0;
  border-top: 1px solid #2A2520;
  border-bottom: 1px solid #2A2520;
  border-left: none;
  border-right: none;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
  background: transparent;
  border-radius: 0;
  justify-content: flex-start;
}
.trust-strip::-webkit-scrollbar { display: none; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9A9080;
  flex-shrink: 0;
}
.trust-item svg, .trust-item .trust-icon { width: 16px; height: 16px; color: #C9A84C; font-size: 16px; }

/* ══════════════════════════════════════════════
   R11. COMPETITION CARDS
   ══════════════════════════════════════════════ */
.comp-card-v2 {
  background: #111111;
  border: 1px solid #2A2520;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,.4);
}
.comp-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 0 1px #8A6D2E;
  border-color: #8A6D2E;
}
.comp-card-v2-body { background: #111111; }
.comp-card-v2-countdown > div { background: #1A1818; border-color: #2A2520; }
.comp-card-v2-countdown strong { font-family: 'Bebas Neue', sans-serif; color: #C9A84C; }
.comp-card-v2-price { background: #1A1818; border-color: rgba(138,109,46,.35); }
.comp-card-v2-price strong { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: #C9A84C; line-height: 1; }
.comp-card-v2-price small { font-family: 'Special Elite', cursive; color: #9A9080; }
.comp-card-v2-title { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 1.1rem; color: #F0EBE0; }
.comp-card-v2-meta { font-family: 'Special Elite', cursive; color: #C9A84C; font-size: 0.85rem; }
.comp-card-v2-progress-bar { background: #2A2520; height: 3px; }
.comp-card-v2-progress-fill { background: linear-gradient(90deg, #8A6D2E, #C9A84C); }
.comp-card-v2-progress-fill.bar-low  { background: linear-gradient(90deg, #8A6D2E, #C9A84C); box-shadow: none; }
.comp-card-v2-progress-fill.bar-mid  { background: linear-gradient(90deg, #8A6D2E, #C9A84C); box-shadow: none; }
.comp-card-v2-progress-fill.bar-high { background: linear-gradient(90deg, #8B1A1A, #C0392B); box-shadow: none; }
.comp-card-v2-overlay {
  background: linear-gradient(180deg, transparent 0%, transparent 30%, rgba(10,10,10,.55) 70%, rgba(10,10,10,.96) 100%);
}
.comp-card-v2-placeholder {
  background: linear-gradient(135deg, #1A1818 0%, #0A0A0A 100%);
  color: #C9A84C;
  font-family: 'Bebas Neue', sans-serif;
}
/* LIVE badge */
.comp-card-v2-iw-badge {
  background: #8B1A1A;
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  padding: 4px 10px;
  letter-spacing: 0.1em;
  animation: pulse-badge 2s ease-in-out infinite;
  color: #F0EBE0;
}
@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.75; }
}
/* Card countdown badge */
.card-countdown {
  background: rgba(10,10,10,0.85);
  border: none;
  color: #C9A84C;
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  border-radius: var(--radius-pill);
  padding: 4px 10px;
}

/* ══════════════════════════════════════════════
   R12. SECTION HEADERS
   ══════════════════════════════════════════════ */
.home-section-head .eyebrow { font-family: 'Special Elite', cursive; color: #C9A84C; font-size: 0.7rem; letter-spacing: 0.2em; display: inline-block; }
.home-section-head h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 6vw, 3.5rem); color: #F0EBE0; letter-spacing: 0.02em; }
.home-section-head h2::before, .home-section-head h2::after { display: none; }
.section-head h2 { font-family: 'Bebas Neue', sans-serif; color: #F0EBE0; }

/* ══════════════════════════════════════════════
   R13. HOW IT WORKS — TIMELINE STEPS
   ══════════════════════════════════════════════ */
.steps-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}
.steps-container::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 16.66%;
  right: 16.66%;
  height: 1px;
  background: linear-gradient(90deg, #8A6D2E, #C9A84C, #8A6D2E);
  opacity: 0.4;
}
.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid #8A6D2E;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: #C9A84C;
  background: #111111;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}
.step-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #F0EBE0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
.step-body {
  font-family: 'Inter', sans-serif;
  color: #9A9080;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.6;
}
.how-step {
  background: #111111;
  border-color: #2A2520;
  border-radius: var(--radius-md);
  text-align: center;
  padding: 2.5rem 1rem;
}
.how-step:hover { border-color: rgba(201,168,76,.3); }
.how-step h3 { font-family: 'Bebas Neue', sans-serif; font-size: 56px; color: #C9A84C; }
.how-step h4 { font-family: 'Oswald', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: #F0EBE0; }
.how-step p  { color: #9A9080; font-size: 0.9rem; }
.how-grid    { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 768px) {
  .steps-container { grid-template-columns: 1fr; gap: 1.5rem; }
  .steps-container::before { display: none; }
  .how-grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* ══════════════════════════════════════════════
   R14. WINNERS — HALL OF FAME
   ══════════════════════════════════════════════ */
.winner-card { background: #111111; border-color: #2A2520; border-radius: var(--radius-md); overflow: hidden; transition: all 0.2s ease; }
.winner-card:hover { border-color: #8A6D2E; }
.winner-card-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: #F0EBE0; text-transform: none; letter-spacing: 0.02em; }
.winner-card-prize { font-family: 'Special Elite', cursive; color: #C9A84C; font-size: 0.9rem; }
.winner-card-meta { font-family: 'Inter', sans-serif; color: #9A9080; font-size: 0.75rem; letter-spacing: 0.05em; text-transform: none; }
.hof-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3rem, 8vw, 5rem); color: #F0EBE0; letter-spacing: 0.02em; }
.hof-quote { font-family: 'Special Elite', cursive; color: #9A9080; font-size: 0.95rem; }

/* ══════════════════════════════════════════════
   R15. FAQ ACCORDION
   ══════════════════════════════════════════════ */
.faq-item { border-bottom: 1px solid #2A2520; }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #F0EBE0;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
  user-select: none;
  list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: #C9A84C; }
.faq-icon {
  color: #8A6D2E;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  font-size: 1.2rem;
  line-height: 1;
  margin-left: 1rem;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-family: 'Inter', sans-serif;
  color: #9A9080;
  font-size: 0.9rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 600px; padding-bottom: 1.5rem; }

/* ══════════════════════════════════════════════
   R16. FOOTER
   ══════════════════════════════════════════════ */
.footer {
  background: #111111;
  border-top: 1px solid #2A2520;
  margin-top: 6rem;
  padding: 4rem 0 1.5rem;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #8A6D2E, transparent);
}
.footer h5 { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: #8A6D2E; }
.footer ul a { font-family: 'Inter', sans-serif; font-size: 0.85rem; color: #9A9080; }
.footer ul a:hover { color: #F0EBE0; text-decoration: none; }
.footer-legal {
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: #9A9080;
  line-height: 1.6;
  border-top: 1px solid #2A2520;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
}
.footer-legal strong { color: #8A6D2E; }
.footer-legal a { color: #8A6D2E; }
.footer-legal a:hover { color: #C9A84C; }
.footer-meta, .footer-bottom {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: #9A9080;
  opacity: 0.6;
  border-top-color: #2A2520;
}
.footer-tagline { font-family: 'Special Elite', cursive; color: #9A9080; font-size: 0.8rem; margin-top: 8px; display: block; }

/* ══════════════════════════════════════════════
   R17. AGE GATE — full-screen impactful
   ══════════════════════════════════════════════ */
.age-gate {
  background: #0A0A0A;
  z-index: 9999;
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: none;
}
.age-gate::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23C9A84C' stroke-width='0.5' opacity='0.08'%3E%3Cpath d='M60 10L65 40L95 45L70 65L75 95L60 78L45 95L50 65L25 45L55 40Z'/%3E%3Ccircle cx='60' cy='60' r='8' stroke-dasharray='3 3'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 120px 120px;
  pointer-events: none;
  opacity: 0.04;
}
.age-gate.show { display: flex; }
/* New inner structure */
.age-gate-inner {
  text-align: center;
  max-width: 500px;
  position: relative;
  z-index: 1;
}
.age-gate-logo {
  height: 60px;
  width: auto;
  display: block;
  margin: 0 auto 2.5rem;
  object-fit: contain;
}
.age-gate-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: #C9A84C;
  margin-bottom: 2.5rem;
}
.age-gate-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 8vw, 4rem);
  color: #F0EBE0;
  line-height: 0.95;
  margin-bottom: 1rem;
  margin-top: 0;
}
.age-gate-sub {
  font-family: 'Special Elite', cursive;
  color: #9A9080;
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}
.age-gate-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.age-gate-actions .btn { flex: 1; min-width: 160px; }
/* Neutralise old card style */
.age-gate-card { background: transparent; border: none; box-shadow: none; padding: 0; }

/* ══════════════════════════════════════════════
   R18. COOKIE BANNER
   ══════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  max-width: 100%;
  margin: 0;
  background: #111111;
  border: none;
  border-top: 1px solid #2A2520;
  border-radius: 0;
  padding: 12px 24px;
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  z-index: 60;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: none;
}
.cookie-banner.show { display: flex; }
.cookie-banner p { font-family: 'Inter', sans-serif; font-size: 0.8rem; color: #9A9080; margin: 0; flex: 1; min-width: 0; }
.cookie-banner a { color: #8A6D2E; }
.cookie-banner a:hover { color: #C9A84C; }

/* ══════════════════════════════════════════════
   R19. COMPETITION DETAIL PAGE
   ══════════════════════════════════════════════ */
.comp-buy {
  background: #111111;
  border: 1px solid #2A2520;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 2.5rem;
}
.bundle-option { background: #1A1818; border: 2px solid #2A2520; border-radius: var(--radius-sm); transition: all 0.15s; }
.bundle-option:hover { border-color: #8A6D2E; }
.bundle-option.selected { border-color: #C9A84C; background: rgba(201,168,76,0.05); }
.bundle-option-count { font-family: 'Bebas Neue', sans-serif; color: #C9A84C; }
.progress-bar { background: #2A2520; }
.progress-bar-fill { background: linear-gradient(90deg, #8A6D2E, #C9A84C); }
.progress-bar-fill.bar-low  { background: linear-gradient(90deg, #8A6D2E, #C9A84C); }
.progress-bar-fill.bar-mid  { background: linear-gradient(90deg, #8A6D2E, #C9A84C); }
.progress-bar-fill.bar-high { background: linear-gradient(90deg, #8B1A1A, #C0392B); }
.checkout-total span:last-child { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: #C9A84C; }

/* ══════════════════════════════════════════════
   R20. ALERTS, PILLS, BADGES
   ══════════════════════════════════════════════ */
.alert-success { color: #4ADE80; border-color: rgba(74,222,128,.25); background: rgba(74,222,128,.04); }
.alert-error   { color: #C0392B;  border-color: rgba(192,57,43,.25);  background: rgba(139,26,26,.04); }
.alert-info    { color: #7eb6d4;  border-color: rgba(126,182,212,.25); background: rgba(126,182,212,.04); }
.alert-warning { color: #E8C96A;  border-color: rgba(232,201,106,.25); background: rgba(201,168,76,.04); }

.pill { background: #1A1818; border-color: #2A2520; color: #9A9080; }
.pill-gold    { border-color: #C9A84C; color: #C9A84C; }
.pill-success { border-color: rgba(74,222,128,.4); color: #4ADE80; }
.pill-blood   { border-color: #8B1A1A; color: #C0392B; }

/* ══════════════════════════════════════════════
   R21. ADMIN PANEL
   ══════════════════════════════════════════════ */
.admin-side { background: #0A0A0A; border-right-color: #2A2520; }
.admin-brand { border-bottom-color: #2A2520; }
.admin-nav a { color: #9A9080; font-family: 'Oswald', sans-serif; font-size: 13px; }
.admin-nav a:hover { background: rgba(42,37,32,.5); color: #F0EBE0; }
.admin-nav a.active { background: rgba(138,109,46,.12); color: #C9A84C; border-left: 2px solid #C9A84C; }
.admin-header { border-bottom-color: #2A2520; }
.admin-main code { background: #0A0A0A; color: #C9A84C; }
.admin-main details { background: #111111; border-color: #2A2520; }
.admin-main details > summary { color: #C9A84C; font-family: 'Oswald', sans-serif; }

/* ══════════════════════════════════════════════
   R22. TABLES, COUNTDOWNS, STATS
   ══════════════════════════════════════════════ */
.tbl { background: #111111; border-color: #2A2520; border-radius: var(--radius-md); }
.tbl th { background: #0A0A0A; border-bottom-color: #2A2520; color: #9A9080; font-family: 'Oswald', sans-serif; }
.tbl td { border-bottom-color: rgba(42,37,32,.6); }

.countdown-unit { background: #0A0A0A; border-color: #2A2520; }
.countdown-num { font-family: 'Bebas Neue', sans-serif; color: #C9A84C; }
.countdown-label { font-family: 'Special Elite', cursive; color: #9A9080; }

.hero-countdown-unit { background: rgba(255,255,255,.04); border-color: rgba(201,168,76,.2); border-radius: var(--radius-sm); }
.hero-countdown-unit strong { font-family: 'Bebas Neue', sans-serif; color: #C9A84C; }
.hero-countdown-unit small { font-family: 'Special Elite', cursive; color: #F0EBE0; }
.hero-countdown-sep { font-family: 'Bebas Neue', sans-serif; color: #C9A84C; }

.comp-stats-bar { background: #111111; border-color: #2A2520; }
.comp-stats-bar-item { border-right-color: #2A2520; }
.comp-stats-bar-num { font-family: 'Bebas Neue', sans-serif; color: #C9A84C; }
.comp-stats-bar-lbl { font-family: 'Special Elite', cursive; color: #9A9080; }

.ticket-num { background: #1A1818; border-color: #2A2520; font-family: 'Special Elite', cursive; }
.ticket-num-winner { border-color: #C9A84C; background: rgba(201,168,76,.08); color: #C9A84C; }

.acc-stat { background: #111111; border-color: #2A2520; border-radius: var(--radius-md); }
.acc-stat:hover { border-color: #8A6D2E; }
.acc-stat-label { color: #C9A84C; font-family: 'Special Elite', cursive; }
.acc-stat-value { font-family: 'Bebas Neue', sans-serif; color: #F0EBE0; }
.acc-stat-sub { color: #9A9080; }

/* ══════════════════════════════════════════════
   R23. SCROLL REVEAL
   ══════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].fade-up-in {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal]:nth-child(2) { transition-delay: 100ms; }
[data-reveal]:nth-child(3) { transition-delay: 200ms; }

/* ══════════════════════════════════════════════
   R24. SKELETON LOADING
   ══════════════════════════════════════════════ */
@keyframes skeleton-shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.skeleton {
  background: linear-gradient(90deg, #1A1818 25%, #2A2520 50%, #1A1818 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s ease infinite;
  border-radius: var(--radius-sm);
  color: transparent !important;
}

/* ══════════════════════════════════════════════
   R25. CHECKOUT TIMER
   ══════════════════════════════════════════════ */
.checkout-timer-bar { background: #8B1A1A; border-bottom-color: #C0392B; font-family: 'Oswald', sans-serif; color: #F0EBE0; }
.checkout-timer-bar span[data-unit] { font-family: 'Bebas Neue', sans-serif; color: #E8C96A; }

/* ══════════════════════════════════════════════
   R26. MOBILE BOTTOM NAV BAR
   ══════════════════════════════════════════════ */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: #111111;
  border-top: 1px solid #2A2520;
  z-index: 50;
  align-items: center;
  justify-content: space-around;
}
@media (max-width: 768px) { .mobile-bottom-nav { display: flex; } }
.mobile-bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #9A9080;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex: 1;
  padding: 8px 0;
  min-height: 44px;
  justify-content: center;
}
.mobile-bottom-nav-item svg { width: 20px; height: 20px; }
.mobile-bottom-nav-item.active, .mobile-bottom-nav-item:hover { color: #C9A84C; }

/* ══════════════════════════════════════════════
   R27. MISC POLISH
   ══════════════════════════════════════════════ */
.marquee-track { background: #0A0A0A; border-bottom-color: #2A2520; }
.marquee-track::before { background: linear-gradient(90deg, #0A0A0A, transparent); }
.marquee-track::after  { background: linear-gradient(270deg, #0A0A0A, transparent); }
.marquee-pill strong { color: #C9A84C; }
.marquee-pill .mp-sep { color: #C9A84C; }

.final-cta { background: linear-gradient(135deg, rgba(201,168,76,.06), rgba(139,26,26,.03)), #111111; border: 1px solid rgba(138,109,46,.3); border-radius: var(--radius-lg); }
.final-cta h2 { font-family: 'Bebas Neue', sans-serif; color: #F0EBE0; }
.final-cta p { color: #9A9080; }
.final-cta small { font-family: 'Special Elite', cursive; color: #9A9080; }

::selection { background: #C9A84C; color: #0A0A0A; }

.trust-float { background: #111111; border-color: #2A2520; color: #9A9080; font-family: 'Oswald', sans-serif; }
.trust-float:hover { background: #C9A84C; color: #0A0A0A; }

.eyebrow { font-family: 'Special Elite', cursive; color: #8A6D2E; }
.eyebrow.gold { color: #C9A84C; }
.rule { background: rgba(138,109,46,.5); }
.breadcrumb { font-family: 'Special Elite', cursive; color: #9A9080; }
code { background: #1A1818; color: #C9A84C; }
.mono { font-family: 'Special Elite', cursive; }
.spinner { border-color: #2A2520; border-top-color: #C9A84C; }

.qty-stepper-wrap { background: #1A1818; border-color: #2A2520; }
.qty-btn { background: #111111; color: #F0EBE0; border-color: #2A2520; }
.qty-btn:hover { background: #C9A84C; color: #0A0A0A; }
.qty-input { background: #1A1818; color: #F0EBE0; border-color: #2A2520; font-family: 'Bebas Neue', sans-serif; }
.qty-price-line { color: #9A9080; font-family: 'Oswald', sans-serif; }
.qty-price-line strong { color: #C9A84C; font-family: 'Bebas Neue', sans-serif; }

.logo-slot { border-color: #2A2520; background: #0A0A0A; }
.logo-slot-preview { background: #1A1818; border-color: #2A2520; }
.logo-slot-info h4 { color: #F0EBE0; font-family: 'Oswald', sans-serif; }
.logo-slot-info p { color: #9A9080; }

.prize-value-display { font-family: 'Bebas Neue', sans-serif; color: #C9A84C; }
.comp-trust-micro { color: rgba(240,235,224,.75); }
.comp-trust-micro-item .ctm-icon { color: #C9A84C; }

/* ══════════════════════════════════════════════
   R28. MOBILE GLOBAL FIXES
   ══════════════════════════════════════════════ */
@media (max-width: 768px) {
  .wrap, .wrap-narrow, .wrap-wide { padding: 0 16px; }
  .home-hero-btns, .hero-ctas { flex-direction: column; gap: 8px; }
  .home-hero-btns .btn, .hero-ctas .btn { width: 100%; }
  .trust-strip { padding: 1rem 0; }
  .comp-layout { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   R29. PRINT
   ══════════════════════════════════════════════ */
@media print {
  body { background: white !important; color: black !important; }
  .topbar, .nav, .footer, .cookie-banner, .age-gate, .section-divider, .ink-divider, .mobile-bottom-nav { display: none !important; }
}

/* ============================================================
   ■■ PHASE 2 REFINEMENT — redesign.txt Phase 2 Execution
   Targeted fixes + enhancements from live site screenshots
   ============================================================ */

/* ── P1. TOPBAR TATTOO FLASH PATTERN (Option C, Section 1) ── */
.topbar {
  background-color: #0F0D0B !important;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 1 L11.5 8.5 L19 10 L11.5 11.5 L10 19 L8.5 11.5 L1 10 L8.5 8.5 Z' fill='none' stroke='%23C9A84C' stroke-width='0.5' opacity='0.15'/%3E%3C/svg%3E") !important;
  background-size: 20px 20px !important;
}

/* ── P2. CARD IMAGE — EDGE TO EDGE, NO BORDER ── */
.comp-card-v2-image {
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.comp-card-v2-image img {
  display: block;
  width: 100%;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.comp-card-v2 > .comp-card-v2-image:first-child img {
  border-top-left-radius: var(--radius-md) !important;
  border-top-right-radius: var(--radius-md) !important;
}

/* ── P3. HERO COUNTDOWN → BUTTONS SPACING ── */
.hero-countdown + .home-hero-btns {
  margin-top: 2.5rem;
}

/* ── P4. NAV LOGO SIZE +40% (Section 6) ── */
.nav-logo-img { height: 56px !important; max-width: 220px; }
@media (max-width: 768px) { .nav-logo-img { height: 44px !important; } }
.nav-inner { height: 72px !important; }

/* ── P5. VIEW ALL COMPETITIONS BUTTON (Section 4) ── */
.view-all-wrap {
  display: flex;
  justify-content: center;
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid #2A2520;
}
.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C9A84C;
  text-decoration: none;
  padding: 12px 32px;
  border: 1px solid #8A6D2E;
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.btn-view-all::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; bottom: 0; width: 100%;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.1), transparent);
  transition: left 0.4s ease;
}
.btn-view-all:hover::before { left: 100%; }
.btn-view-all:hover {
  border-color: #C9A84C;
  color: #E8C96A;
  box-shadow: 0 0 20px rgba(201,168,76,0.12);
}

/* ── P6. MOBILE SWIPE CAROUSEL (Section 5) ── */
@media (max-width: 768px) {
  .comp-carousel {
    position: relative;
    overflow: hidden;
    margin-left: -16px;
    margin-right: -16px;
    width: calc(100% + 32px);
  }
  .carousel-track {
    display: flex;
    gap: 0;
    transition: transform 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: transform;
  }
  .carousel-track .comp-card-v2 {
    flex: 0 0 calc(100% - 32px);
    margin: 0 16px;
    min-width: 0;
  }
  .comp-carousel::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; width: 40px;
    background: linear-gradient(to left, #0A0A0A, transparent);
    pointer-events: none;
    z-index: 2;
  }
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
    padding-bottom: 0.5rem;
  }
  .carousel-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #2A2520;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    padding: 0;
    flex-shrink: 0;
  }
  .carousel-dot.active {
    background: #C9A84C;
    width: 20px;
    border-radius: 999px;
  }
}
@media (min-width: 769px) {
  .comp-carousel { overflow: visible; }
  .carousel-track {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
    transform: none !important;
  }
  .carousel-track .comp-card-v2 { flex: none; margin: 0; }
  .carousel-dots { display: none !important; }
}

/* ── P7. SAMSUNG INTERNET FIXES (Section 8) ── */
html {
  forced-color-adjust: none;
  -ms-high-contrast-adjust: none;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  :root {
    --ink-gold: #C9A84C;
    --ink-gold-light: #E8C96A;
    --ink-gold-dim: #8A6D2E;
    --ink-black: #0A0A0A;
    --ink-deep: #111111;
    --ink-white: #F0EBE0;
    --gold: #C9A84C;
    --text: #F0EBE0;
  }
}
nav, header { background-color: #111111; background-color: var(--ink-deep); }

/* ── P8. FEATURED BADGE — GOLD NOT GREEN (9A) ── */
.comp-card-v2-draw-date[style*="gold"],
.comp-card-v2-draw-date[style*="--gold"] {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ── P9. CARD ENTER NOW — FULL-WIDTH BUTTON (9C) ── */
.card-enter-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem -1rem -1rem;
  padding: 13px;
  background: #C9A84C;
  background: var(--ink-gold);
  color: #0A0A0A !important;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  transition: background 0.2s ease;
}
.comp-card-v2:hover .card-enter-cta { background: #E8C96A; }

/* ── P10. COUNTDOWN URGENCY < 24 HRS (9D) ── */
.comp-card-v2-countdown.urgent > div {
  border-color: rgba(192,57,43,0.35) !important;
  background: rgba(139,26,26,0.12) !important;
}
.comp-card-v2-countdown.urgent strong { color: #C0392B !important; }
.hero-countdown.urgent .hero-countdown-unit { border-color: rgba(192,57,43,0.35); background: rgba(139,26,26,0.1); }
.hero-countdown.urgent .hero-countdown-unit strong { color: #C0392B; }

/* ── P11. MOBILE STICKY PURCHASE BAR (9E) ── */
@media (max-width: 768px) {
  .sticky-purchase-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 60;
    background: #111111;
    border-top: 1px solid #2A2520;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 -8px 24px rgba(0,0,0,0.5);
  }
  .spb-price {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #C9A84C;
    flex: 1;
    line-height: 1;
  }
  .spb-price small {
    font-size: 0.6rem;
    color: #9A9080;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-family: 'Special Elite', cursive;
  }
  .spb-btn {
    flex: 2;
    padding: 13px 20px;
    background: #C9A84C;
    color: #0A0A0A;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .spb-btn:hover { background: #E8C96A; color: #0A0A0A; }
  .comp-buy { padding-bottom: 80px; }
}

/* ── P12. PURCHASE TRUST SIGNALS (9I) ── */
.purchase-trust {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(42,37,32,0.6);
}
.purchase-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: #9A9080;
}

/* ── P13. SCROLL-TO-TOP BUTTON (9H) ── */
.scroll-top-btn {
  position: fixed;
  bottom: 80px; right: 16px;
  width: 44px; height: 44px;
  background: #111111;
  border: 1px solid #2A2520;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C9A84C;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  z-index: 40;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top-btn:hover {
  border-color: #C9A84C;
  box-shadow: 0 4px 20px rgba(201,168,76,0.2);
}
@media (min-width: 769px) { .scroll-top-btn { bottom: 24px; right: 24px; } }

/* ── P14. PAGE FADE-IN (9G) ── */
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
main { animation: pageFadeIn 0.3s ease both; }

/* ── P15. NAV ACTIVE UNDERLINE REFINEMENT (9F) ── */
@media (min-width: 961px) {
  .nav-links > a { position: relative; }
  .nav-links > a.active::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 8px; right: 8px;
    height: 2px;
    background: #C9A84C;
    border-radius: 999px;
  }
}

/* ── P16. MOBILE NAV FIX — Force full-screen fixed overlay ── */
@media (max-width: 960px) {
  /* Fix: old rule had position:absolute;top:100% which is more specific
     than the base .nav-links { position:fixed } — override explicitly */
  .nav.open .nav-links {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: #111111 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    padding: 80px 40px 40px !important;
    transform: none !important;
    visibility: visible !important;
    pointer-events: auto !important;
    z-index: 200 !important;
    overflow-y: auto;
  }
  /* Only style direct nav link children as big overlay text */
  .nav.open .nav-links > a:not(.nav-overlay-join):not(.btn) {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: clamp(2rem, 8vw, 2.5rem) !important;
    font-weight: 400 !important;
    letter-spacing: 0.02em !important;
    color: #F0EBE0 !important;
    padding: 10px 0 10px 16px !important;
    border-bottom: none !important;
    border-left: 2px solid transparent !important;
    width: 100% !important;
    text-align: left !important;
    text-decoration: none !important;
    display: block !important;
    transition: all 0.15s ease !important;
    border-radius: 0 !important;
    background: transparent !important;
  }
  .nav.open .nav-links > a:not(.nav-overlay-join):not(.btn):hover,
  .nav.open .nav-links > a:not(.nav-overlay-join):not(.btn).active {
    color: #C9A84C !important;
    border-left-color: #C9A84C !important;
  }
  /* Reset logo link inside overlay header — don't make it huge */
  .nav-overlay-header a,
  .nav-overlay-header a:hover,
  .nav-overlay-header a:focus {
    font-size: inherit !important;
    font-family: inherit !important;
    border: none !important;
    padding: 0 !important;
    width: auto !important;
    letter-spacing: inherit !important;
    color: inherit !important;
    display: flex !important;
    background: transparent !important;
    border-radius: 0 !important;
  }
  /* Join Now overlay CTA stays as a styled button */
  .nav.open .nav-links .nav-overlay-join {
    margin-top: 2rem !important;
    width: 100% !important;
    text-align: center !important;
    display: block !important;
    font-family: 'Oswald', sans-serif !important;
    font-size: 0.9rem !important;
    padding: 16px 40px !important;
  }
}

/* ── P17. COMPETITION DETAIL — BREADCRUMB (Section 7) ── */
.breadcrumb a { color: #9A9080; text-decoration: none; transition: color 0.2s ease; }
.breadcrumb a:hover { color: #C9A84C; }
.breadcrumb span { color: #8A6D2E; }

/* ── P18. COMPETITION DETAIL — QTY CONTROLS (Section 7) ── */
.qty-btn {
  width: 40px; height: 40px;
  background: #111111;
  border: 1px solid #2A2520;
  border-radius: var(--radius-sm);
  color: #F0EBE0;
  font-size: 1.2rem;
  font-family: 'Oswald', sans-serif;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.qty-btn:hover {
  border-color: #8A6D2E;
  color: #C9A84C;
  background: rgba(201,168,76,0.08);
}

/* ── P19. HOW TO WIN LIST (Section 7) ── */
.how-to-win-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 0.5rem;
  counter-reset: howto;
}
.how-to-win-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #9A9080;
  counter-increment: howto;
}
.how-to-win-list li::before {
  content: counter(howto, decimal-leading-zero);
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #8A6D2E;
  flex-shrink: 0;
  margin-top: 2px;
  min-width: 20px;
}

/* ============================================================
   ■■ PHASE 3 — Hero BG Image, HoF Gallery, Trust Strip Fix
   ============================================================ */

/* ── P20. HERO BACKGROUND IMAGE LAYER ── */
.home-hero-simple {
  position: relative;
  overflow: hidden;
}
.hero-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: blur(8px);
  transform: scale(1.08);
}
.hero-bg-layer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.85) 0%,
    rgba(10,10,10,0.55) 35%,
    rgba(10,10,10,0.50) 60%,
    rgba(10,10,10,0.90) 85%,
    rgba(10,10,10,1.00) 100%
  );
}
.home-hero-simple .wrap {
  position: relative;
  z-index: 1;
}

/* ── P21. TRUST STRIP CENTERING (desktop) ── */
@media (min-width: 769px) {
  .trust-strip {
    justify-content: center;
  }
}

/* ── P22. HALL OF FAME GALLERY ── */
.hof-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0 8px;
}
.hof-gallery-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 10px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 0 0 1px rgba(201,168,76,0.08), 0 4px 24px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.hof-gallery-frame:hover {
  transform: scale(1.02);
  border-color: rgba(201,168,76,0.65);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.2), 0 8px 32px rgba(0,0,0,0.6);
}
.hof-gallery-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .hof-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .hof-gallery {
    grid-template-columns: 1fr;
  }
}

/* ── P23. SECTION DIVIDER — force center on all screens ── */
.section-divider {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center;
}
.section-divider::before,
.section-divider::after {
  flex: 1 !important;
  max-width: 120px !important;
}

/* ── P24. STEPS CAROUSEL (mobile carousel, desktop grid) ── */
.steps-carousel { position: relative; }
@media (min-width: 769px) {
  .steps-carousel .carousel-track {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2.5rem !important;
    transform: none !important;
    overflow: visible !important;
    position: relative;
  }
  .steps-carousel .carousel-track::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 16.66%;
    right: 16.66%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.4), transparent);
  }
  .steps-carousel .carousel-dots { display: none !important; }
}
@media (max-width: 768px) {
  .steps-carousel .carousel-track {
    display: flex;
    gap: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  .steps-carousel .how-step {
    min-width: 100%;
    box-sizing: border-box;
    padding: 1.5rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 12px;
    text-align: center;
  }
}
.how-step { text-align: left; }

/* ── P25. HOF GALLERY PLACEHOLDER ── */
.hof-gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.4);
  text-align: center;
  padding: 12px;
}

/* ============================================================
   ■■ PHASE 3C — Section divider, hero border, page headers
   ============================================================ */

/* ── Hero section bottom border ── */
.home-hero-simple {
  border-bottom: 1px solid var(--line);
}

/* ── Section divider: GRID (bulletproof center, kills flex ambiguity) ── */
.section-divider {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
  gap: 12px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  justify-content: unset !important;
}
.section-divider::before,
.section-divider::after {
  content: '' !important;
  display: block !important;
  height: 1px !important;
  flex: none !important;
  max-width: none !important;
  width: auto !important;
}
.section-divider::before {
  background: linear-gradient(to right, transparent, #8A6D2E) !important;
}
.section-divider::after {
  background: linear-gradient(to left, transparent, #8A6D2E) !important;
}

/* ── Competitions page header ── */
.comp-listing-head {
  padding-top: 60px;
  padding-bottom: 20px;
  text-align: center;
}
.comp-listing-h1,
.comp-listing-sub {
  text-align: center;
}
.comp-listing-sub { margin: 0 auto 16px; }

/* ── Static page headers (How It Works, Contact, FAQ, etc.) ── */
section.wrap-narrow > .eyebrow,
section.wrap-narrow > h1 {
  text-align: center;
  display: block;
}

/* ── Winners page header ── */
.hof-title,
.hof-quote {
  text-align: center;
}
.hof-quote { margin-left: auto; margin-right: auto; }

/* ============================================================
   ■■ PHASE 3D — Steps carousel fix, Join Now button, header spacing
   ============================================================ */

/* ── Steps carousel: overflow on PARENT not track ── */
@media (max-width: 768px) {
  .steps-carousel {
    overflow: hidden;       /* clip here — track slides freely */
  }
  .steps-carousel .carousel-track {
    display: flex !important;
    gap: 0 !important;       /* no gap — offsetWidth = exact slide distance */
    overflow: visible !important;
    transition: transform 0.3s ease !important;
  }
  .steps-carousel .how-step {
    flex: 0 0 100% !important;   /* exact full-width slide, no shrink */
    min-width: 0 !important;
    box-sizing: border-box !important;
    padding: 2rem 1.5rem !important;
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(201,168,76,0.2) !important;
    border-radius: 12px !important;
    text-align: center !important;
  }
}

/* ── Join Now — gold button, dark text, pinned bottom of overlay ── */
@media (max-width: 960px) {
  .nav.open .nav-links .nav-overlay-join {
    background-color: #C9A84C !important;
    color: #0A0A0A !important;
    border: 2px solid #C9A84C !important;
    border-radius: 8px !important;
    font-family: 'Oswald', sans-serif !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    text-align: center !important;
    display: block !important;
    padding: 20px 32px !important;
    margin-top: auto !important;   /* push to bottom of flex overlay */
    width: 100% !important;
    box-sizing: border-box !important;
    border-left: 2px solid #C9A84C !important;
    border-bottom: none !important;
  }
  .nav.open .nav-links .nav-overlay-join:hover {
    background-color: #D4AF37 !important;
    border-color: #D4AF37 !important;
    color: #0A0A0A !important;
  }
}

/* ── Page header spacing — clear the sticky nav ── */
.comp-listing-head {
  padding-top: 80px !important;
  padding-bottom: 28px !important;
}
.hof-title-wrap,
section.wrap > .hof-title,
section.wrap > .eyebrow,
section.wrap > .hof-quote {
  /* Winners page header is inside first wrap section */
}

/* ============================================================
   ■■ PHASE 3E — redesign.txt 4-fix execution
   ============================================================ */

/* FIX 1 — Section dividers: exact spec from redesign.txt */
.section-divider {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  gap: 16px !important;
}
/* Pseudo-elements become flex items — reset grid properties */
.section-divider::before,
.section-divider::after {
  content: '' !important;
  display: block !important;
  flex: 0 0 80px !important;       /* fixed equal width — true centre */
  width: 80px !important;
  max-width: 80px !important;
  height: 1px !important;
}
.section-divider::before {
  background: linear-gradient(to right, transparent, #8A6D2E) !important;
}
.section-divider::after {
  background: linear-gradient(to left, transparent, #8A6D2E) !important;
}
.section-divider span {
  flex-shrink: 0 !important;
  font-size: 10px;
  color: #8A6D2E;
  letter-spacing: 0.3em;
  font-family: 'Special Elite', cursive;
}

/* FIX 2 — Enter Now corner decals: stop card clipping them */
.comp-card-v2 {
  overflow: visible !important;   /* ornaments sit outside border-radius when card clips */
}
.comp-card-v2-image {
  border-radius: 13px 13px 0 0;  /* clip only the image, not the full card */
  overflow: hidden;
}

/* FIX 3 — Hero bottom: gold gradient instead of solid line */
.home-hero-simple {
  border-bottom: none !important; /* remove solid line */
}
.home-hero-simple::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #8A6D2E 30%, #8A6D2E 70%, transparent 100%);
  z-index: 2;
}

/* FIX 4 — Hall of Fame carousel (mobile swipe, desktop grid) */
@media (min-width: 769px) {
  .hof-gallery .carousel-track {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px !important;
    transform: none !important;
    overflow: visible !important;
  }
  .hof-gallery .hof-gallery-frame {
    flex: none !important;
    margin: 0 !important;
    min-width: 0 !important;
  }
  .hof-gallery .carousel-dots { display: none !important; }
}
@media (max-width: 768px) {
  .hof-gallery {
    overflow: hidden;
    margin-left: -16px;
    margin-right: -16px;
    padding: 0;
  }
  .hof-gallery .carousel-track {
    display: flex !important;
    gap: 0 !important;
    overflow: visible !important;
    transition: transform 0.35s cubic-bezier(0.25, 0.1, 0.25, 1) !important;
  }
  .hof-gallery .hof-gallery-frame {
    flex: 0 0 calc(100% - 32px) !important;
    margin: 0 16px !important;
    min-width: 0 !important;
  }
}

/* ============================================================
   PURCHASE WIDGET — RIGHT COLUMN
   ============================================================ */

.purchase-widget {
  background: #111111;
  border: 1px solid #2A2520;
  border-radius: 12px;
  padding: 16px;
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Prize Value */
.pw-prize {
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #2A2520;
  margin-bottom: 20px;
}
.pw-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8A6D2E;
  margin-bottom: 4px;
}
.pw-prize-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: #C9A84C;
  line-height: 1;
}

/* Countdown */
.pw-countdown {
  padding-bottom: 20px;
  border-bottom: 1px solid #2A2520;
  margin-bottom: 20px;
}
.countdown-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
}
.countdown-box {
  background: #1A1818;
  border: 1px solid #2A2520;
  border-radius: 6px;
  padding: 8px 4px;
  text-align: center;
}
.countdown-number {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #C9A84C;
  display: block;
  line-height: 1;
}
.countdown-sep {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: #2A2520;
  text-align: center;
  font-weight: 700;
}
.countdown-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.5rem;
  color: #9A9080;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 3px;
  display: block;
}
.pw-draw-date {
  font-family: 'Special Elite', cursive;
  font-size: 0.68rem;
  color: #9A9080;
  text-align: center;
  letter-spacing: 0.1em;
}
.countdown-grid.urgent .countdown-number { color: #C0392B; }
.countdown-grid.urgent .countdown-box {
  border-color: rgba(192,57,43,0.3);
  background: rgba(139,26,26,0.1);
}

/* Progress */
.pw-progress {
  padding-bottom: 20px;
  border-bottom: 1px solid #2A2520;
  margin-bottom: 20px;
}
.pw-progress-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pw-sold { color: #C9A84C; }
.pw-remaining { color: #9A9080; }
.pw-progress-track {
  width: 100%;
  height: 3px;
  background: #2A2520;
  border-radius: 999px;
  overflow: hidden;
}
.pw-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #8A6D2E, #C9A84C);
  border-radius: 999px;
  transition: width 1s ease;
  min-width: 2px;
}

/* Skill Question */
.pw-skill {
  background: #1A1818;
  border: 1px solid #2A2520;
  border-left: 3px solid #C9A84C;
  border-radius: 8px;
  padding: 14px;
  margin-bottom: 16px;
}
.pw-skill-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8A6D2E;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pw-skill-dot {
  width: 6px; height: 6px;
  background: #C0392B;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.pw-skill-question {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: #F0EBE0;
  margin-bottom: 10px;
  line-height: 1.5;
}
.pw-skill-input {
  width: 100%;
  background: #0A0A0A;
  border: 1px solid #2A2520;
  border-radius: 6px;
  color: #F0EBE0;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  padding: 8px 12px;
  outline: none;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}
.pw-skill-input:focus {
  border-color: #C9A84C;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.pw-skill-input::placeholder { color: #9A9080; }

/* Quantity */
.pw-quantity { margin-bottom: 16px; }
.pw-section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9A9080;
  margin-bottom: 8px;
}
.pw-qty-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}
.pw-qty-btn {
  width: 36px; height: 36px;
  background: #1A1818;
  border: 1px solid #2A2520;
  border-radius: 6px;
  color: #F0EBE0;
  font-size: 1.1rem;
  font-family: 'Oswald', sans-serif;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  padding: 8px;
}
.pw-qty-btn:hover { border-color: #C9A84C; color: #C9A84C; }
.pw-qty-input {
  flex: 1;
  text-align: center;
  background: #1A1818;
  border: 1px solid #2A2520;
  border-radius: 6px;
  color: #F0EBE0;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px;
  outline: none;
  -moz-appearance: textfield;
}
.pw-qty-input::-webkit-inner-spin-button,
.pw-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }
.pw-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1A1818;
  border: 1px solid #2A2520;
  border-radius: 6px;
  padding: 8px 14px;
}
.pw-total-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9A9080;
}
.pw-total-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: #C9A84C;
  line-height: 1;
  transition: transform 0.15s ease;
}

/* Bundles */
/* ── BUNDLE CARDS ────────────────────────────────────── */

.pw-bundles {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.pw-bundle-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: stretch;
  background: #1A1818;
  border: 1px solid #2A2520;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  min-height: 72px;
}

.pw-bundle-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.2), transparent);
  pointer-events: none;
}

.pw-bundle-card.is-popular { border-color: #3A3020; }
.pw-bundle-card.is-popular::before {
  background: linear-gradient(90deg, transparent, #C9A84C, transparent);
  opacity: 0.6;
}

.pw-bundle-card.is-allin { border-color: #3A1A1A; }
.pw-bundle-card.is-allin::before {
  background: linear-gradient(90deg, transparent, #C0392B, transparent);
  opacity: 0.5;
}

.pw-bundle-card:hover {
  border-color: #8A6D2E;
  background: #1E1C1A;
  transform: translateX(3px);
}

.pw-bundle-card.selected {
  border-color: #C9A84C;
  background: rgba(201,168,76,0.07);
  box-shadow: 0 0 0 1px #C9A84C, 0 4px 24px rgba(201,168,76,0.12);
  transform: translateX(0);
}

.pw-bundle-count-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  border-right: 1px dashed #2A2520;
  transition: all 0.2s ease;
  gap: 2px;
}

.pw-bundle-card.selected .pw-bundle-count-col {
  border-right-color: rgba(201,168,76,0.2);
  background: rgba(201,168,76,0.05);
}

.pw-bundle-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: #9A9080;
  line-height: 1;
  transition: color 0.2s ease;
}

.pw-bundle-card.selected .pw-bundle-number { color: #C9A84C; }

.pw-bundle-tickets-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.45rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #6A5A4A;
  transition: color 0.2s ease;
}

.pw-bundle-card.selected .pw-bundle-tickets-label { color: #8A6D2E; }

.pw-bundle-info-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 14px;
  gap: 5px;
}

.pw-bundle-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #F0EBE0;
  line-height: 1;
}

.pw-bundle-card.selected .pw-bundle-title { color: #FFFFFF; }

.pw-bundle-meta {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.pw-bundle-per-ticket {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  color: #6A5A4A;
}

.pw-badge {
  font-family: 'Oswald', sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 999px;
  display: inline-block;
  line-height: 1.6;
}

.pw-badge-popular { background: rgba(74,222,128,0.12); color: #4ADE80; border: 1px solid rgba(74,222,128,0.25); }
.pw-badge-save    { background: rgba(201,168,76,0.12);  color: #C9A84C; border: 1px solid rgba(201,168,76,0.25); }
.pw-badge-allin   { background: rgba(192,57,43,0.12);   color: #E05040; border: 1px solid rgba(192,57,43,0.25); }

.pw-bundle-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 2px;
}

.pw-bundle-total {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: #F0EBE0;
  line-height: 1;
  transition: color 0.2s ease;
  margin-left: auto;
}

.pw-bundle-card.selected .pw-bundle-total { color: #C9A84C; }

/* ── END BUNDLE CARDS ────────────────────────────────── */

/* Summary */
.pw-summary {
  background: #1A1818;
  border: 1px solid #2A2520;
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 14px;
}
.pw-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid #2A2520;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: #9A9080;
}
.pw-summary-row:last-child { border-bottom: none; padding-bottom: 0; }
.pw-summary-row span:last-child {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  color: #F0EBE0;
  font-size: 0.88rem;
}
.pw-summary-total { margin-top: 4px; padding-top: 10px !important; }
.pw-summary-amount {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 1.4rem !important;
  color: #C9A84C !important;
  line-height: 1;
  transition: transform 0.15s ease;
}

/* CTA Button */
.pw-cta-btn {
  width: 100%;
  padding: 12px 16px;
  background: #C9A84C;
  color: #0A0A0A;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s ease;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}
.pw-cta-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; bottom: 0; width: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}
.pw-cta-btn:hover::before { left: 100%; }
.pw-cta-btn:hover {
  background: #E8C96A;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.35);
}
.pw-cta-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* Payment Icons */
.pw-payment-icons {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.pw-payment-badge {
  background: #1A1818;
  border: 1px solid #2A2520;
  border-radius: 4px;
  padding: 4px 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #9A9080;
}

/* Trust Signals */
.pw-trust { display: flex; flex-direction: column; gap: 7px; }
.pw-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: #9A9080;
  line-height: 1.4;
}
.pw-trust-item svg { flex-shrink: 0; color: #8A6D2E; margin-top: 1px; }

/* Mobile sticky bar */
@media (max-width: 1023px) {
  .purchase-widget {
    position: static;
    border: none;
    padding: 0;
    background: transparent;
  }
  .pw-sticky-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 50;
    padding: 10px 16px;
    background: #111111;
    border-top: 1px solid #2A2520;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 -8px 30px rgba(0,0,0,0.6);
  }
  .pw-sticky-price {
    flex: 1;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: #C9A84C;
    line-height: 1;
  }
  .pw-sticky-price small {
    font-family: 'Inter', sans-serif;
    font-size: 0.58rem;
    color: #9A9080;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .pw-sticky-btn {
    flex: 2;
    padding: 12px;
    background: #C9A84C;
    color: #0A0A0A;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }
  .competition-detail-page { padding-bottom: 90px; }
}

/* ============================================================
   HERO COMPETITION BANNER
   ============================================================ */

.hero-competitions {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: var(--hero-bg, none);
  background-size: cover;
  background-position: center;
}
.hero-competitions .hero-bg-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.4) 50%, rgba(10,10,10,0.95) 100%);
  z-index: 0;
}
.hero-competitions .hero-slide {
  position: relative;
  z-index: 1;
}

/* Carousel track */
.hero-carousel-track {
  position: relative;
  width: 100%;
}

.hero-slide {
  display: none;
  width: 100%;
}
.hero-slide.active {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 40px 80px;
}

/* Split layout */
.hero-split {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

/* LEFT: Image */
.hero-image-col {
  display: flex;
  justify-content: center;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 380px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px #2A2520,
    0 0 60px rgba(201,168,76,0.15),
    0 30px 80px rgba(0,0,0,0.6);
}

.hero-comp-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.hero-price-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: #C9A84C;
  color: #0A0A0A;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero-live-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(10,10,10,0.85);
  border: 1px solid rgba(74,222,128,0.3);
  color: #4ADE80;
  font-family: 'Oswald', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 5px;
  backdrop-filter: blur(4px);
}

.hero-live-dot {
  width: 6px; height: 6px;
  background: #4ADE80;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2s ease-in-out infinite;
}

/* RIGHT: Info */
.hero-info-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}

.hero-eyebrow {
  font-family: 'Special Elite', cursive;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: #8A6D2E;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  justify-content: center;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  flex: 0 0 30px;
  height: 1px;
  background: #2A2520;
}

.hero-comp-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  color: #F0EBE0;
  line-height: 1;
  letter-spacing: 0.03em;
  margin: 0;
  text-shadow: 0 2px 40px rgba(201,168,76,0.15);
}

.hero-comp-subtitle {
  font-family: 'Special Elite', cursive;
  font-size: 0.9rem;
  color: #9A9080;
  margin: 0;
  max-width: 400px;
}

/* Hero countdown */
.hero-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero-cd-box {
  background: #111111;
  border: 1px solid #2A2520;
  border-radius: 6px;
  padding: 12px 16px;
  text-align: center;
  min-width: 64px;
}

.hero-cd-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: #C9A84C;
  line-height: 1;
}

.hero-cd-label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.5rem;
  color: #6A5A4A;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 3px;
}

.hero-cd-sep {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: #2A2520;
  line-height: 1;
  margin-bottom: 12px;
}

/* Progress */
.hero-progress { display: flex; flex-direction: column; gap: 6px; width: 100%; }
.hero-progress-track {
  width: 100%;
  height: 4px;
  background: #2A2520;
  border-radius: 999px;
  overflow: hidden;
}
.hero-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #8A6D2E, #C9A84C);
  border-radius: 999px;
  transition: width 1s ease;
  min-width: 2px;
}
.hero-progress-label {
  display: flex;
  justify-content: space-between;
  font-family: 'Oswald', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6A5A4A;
}

/* CTA Row */
.hero-cta-row {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-enter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #C9A84C;
  color: #0A0A0A;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}
.hero-enter-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; bottom: 0; width: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}
.hero-enter-btn:hover::before { left: 100%; }
.hero-enter-btn:hover {
  background: #E8C96A;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.35);
}

.hero-how-btn {
  display: inline-flex;
  align-items: center;
  color: #9A9080;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 20px;
  border: 1px solid #2A2520;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.hero-how-btn:hover {
  border-color: #8A6D2E;
  color: #C9A84C;
}

/* Carousel dots */
.hero-carousel-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 0 24px;
}

.hero-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #2A2520;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.hero-dot.active {
  background: #C9A84C;
  width: 20px;
  border-radius: 999px;
}

/* Auto-advance progress line */
.hero-auto-progress {
  width: 120px;
  height: 2px;
  background: #2A2520;
  border-radius: 999px;
  overflow: hidden;
}
.hero-auto-fill {
  height: 100%;
  background: #C9A84C;
  border-radius: 999px;
  width: 0%;
  transition: width linear;
}

/* Mobile */
@media (max-width: 768px) {

  .hero-slide.active {
    flex-direction: column;
    padding: 20px 16px 60px;
    justify-content: flex-start;
  }

  .hero-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-image-col {
    width: 100%;
  }

  .hero-image-wrap {
    max-width: 100%;
    border-radius: 10px;
  }

  .hero-comp-image {
    aspect-ratio: 16/9;
    object-fit: cover;
  }

  .hero-comp-title {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }

  .hero-countdown {
    gap: 4px;
  }

  .hero-cd-box {
    padding: 8px 10px;
    min-width: 0;
    flex: 1;
  }

  .hero-cd-num {
    font-size: 1.5rem;
  }

  .hero-cta-row {
    flex-direction: column;
    gap: 8px;
  }

  .hero-enter-btn,
  .hero-how-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-carousel-track {
    overflow: hidden;
    touch-action: pan-y;
  }
}

/* END HERO COMPETITION BANNER */

/* Nav site credit pill */
.nav-credit-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #C9A84C;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 999px;
  padding: 4px 10px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

/* ══════════════════════════════════════════════
   GAMIFICATION UI
   ══════════════════════════════════════════════ */

/* XP / Level progress bar */
.xp-bar-wrap {
  background: #1A1510;
  border: 1px solid #2A2520;
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  display: flex;
  gap: var(--space-5);
  align-items: center;
  flex-wrap: wrap;
}
.xp-level-badge {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: #C9A84C;
  line-height: 1;
  flex-shrink: 0;
}
.xp-level-info { flex: 1; min-width: 180px; }
.xp-level-name {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 6px;
}
.xp-track {
  height: 8px;
  background: #2A2520;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 4px;
}
.xp-fill {
  height: 100%;
  background: linear-gradient(90deg, #8A6D2E, #C9A84C);
  border-radius: 999px;
  transition: width 0.8s cubic-bezier(.22,1,.36,1);
}
.xp-numbers {
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  color: #6B6055;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.xp-streak { text-align: center; flex-shrink: 0; }
.xp-streak-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: #F0EBE0;
  line-height: 1;
}
.xp-streak-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6B6055;
}

/* Activity toast */
.activity-toast-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.activity-toast {
  background: #1A1510;
  border: 1px solid #2A2520;
  border-left: 3px solid #C9A84C;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  min-width: 240px;
  max-width: 300px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #F0EBE0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: auto;
}
.activity-toast.show { opacity: 1; transform: translateY(0); }
.activity-toast-icon { font-size: 1rem; flex-shrink: 0; }
.activity-toast-msg {
  color: #9A9080;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 2px;
}

/* XP flash */
.xp-flash {
  position: fixed;
  top: 80px;
  right: 24px;
  z-index: 9000;
  background: #1A1510;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: #C9A84C;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 24px rgba(201,168,76,0.15);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.xp-flash.show { opacity: 1; transform: translateY(0); }

/* Share box */
.share-box {
  background: #111111;
  border: 1px solid #2A2520;
  border-radius: var(--radius-md);
  padding: var(--space-5);
  margin-top: var(--space-5);
}
.share-box-header {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: var(--space-3);
}
.share-btns { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 6px;
  border: 1px solid #2A2520;
  background: #1A1510;
  color: #F0EBE0;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.share-btn:hover { border-color: #C9A84C; color: #C9A84C; }
.share-btn.fb:hover { background: rgba(24,119,242,0.1); color: #4a90e2; border-color: #4a90e2; }
.share-btn.tw:hover { background: rgba(29,161,242,0.1); color: #1da1f2; border-color: #1da1f2; }
.share-btn.wa:hover { background: rgba(37,211,102,0.1); color: #25d366; border-color: #25d366; }
.share-btn-tick { color: #4CAF50 !important; border-color: #4CAF50 !important; }

/* Referral card */
.referral-card {
  background: linear-gradient(135deg, #1A1510 0%, #111111 100%);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-6);
}
.referral-card h3 { color: #C9A84C; margin: 0 0 var(--space-2); }
.referral-link-row {
  display: flex;
  gap: var(--space-3);
  align-items: stretch;
  margin-top: var(--space-4);
  flex-wrap: wrap;
}
.referral-link-input {
  flex: 1;
  min-width: 200px;
  background: #0A0A0A;
  border: 1px solid #2A2520;
  border-radius: 6px;
  padding: 10px 14px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: #C9A84C;
  user-select: all;
}

/* Badge grid */
.badge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: var(--space-3);
}
.badge-item {
  background: #111111;
  border: 1px solid #2A2520;
  border-radius: var(--radius-sm);
  padding: var(--space-4) var(--space-3);
  text-align: center;
  transition: border-color 0.2s ease;
}
.badge-item.unlocked { border-color: rgba(201,168,76,0.35); }
.badge-item.locked { opacity: 0.4; filter: grayscale(0.8); }
.badge-icon { font-size: 2rem; margin-bottom: 6px; }
.badge-name {
  font-family: 'Oswald', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9A9080;
  line-height: 1.3;
}
.badge-item.unlocked .badge-name { color: #C9A84C; }
.badge-rarity {
  font-family: 'Oswald', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}
.rarity-common    { color: #6B6055; }
.rarity-rare      { color: #4a90e2; }
.rarity-epic      { color: #9b59b6; }
.rarity-legendary { color: #C9A84C; }

/* Challenge cards */
.challenge-card {
  background: #111111;
  border: 1px solid #2A2520;
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  display: flex;
  gap: var(--space-4);
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-3);
}
.challenge-card.completed { border-color: rgba(76,175,80,0.4); }
.challenge-info { flex: 1; min-width: 160px; }
.challenge-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: #F0EBE0;
  margin-bottom: 4px;
}
.challenge-desc { font-size: 0.78rem; color: #6B6055; margin-bottom: 8px; }
.challenge-progress-track { height: 4px; background: #2A2520; border-radius: 999px; overflow: hidden; }
.challenge-progress-fill { height: 100%; background: #C9A84C; border-radius: 999px; }
.challenge-progress-fill.done { background: #4CAF50; }
.challenge-xp {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: #C9A84C;
  text-align: right;
  flex-shrink: 0;
}

/* Leaderboard */
.lb-row {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-3) var(--space-5);
  border-bottom: 1px solid #1A1510;
  transition: background 0.15s ease;
}
.lb-row:hover { background: rgba(201,168,76,0.04); }
.lb-row.you { background: rgba(201,168,76,0.07); border-color: rgba(201,168,76,0.2); }
.lb-rank {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: #6B6055;
  width: 36px;
  text-align: center;
  flex-shrink: 0;
}
.lb-rank.gold   { color: #C9A84C; }
.lb-rank.silver { color: #9A9080; }
.lb-rank.bronze { color: #8A6D2E; }
.lb-name { flex: 1; font-size: 0.9rem; }
.lb-level {
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6B6055;
}
.lb-xp {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #C9A84C;
  text-align: right;
  flex-shrink: 0;
}
