/* ============================================
   REAL WINNERS UK — Design System
   ============================================ */

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

:root {
  --black: #08070a;
  --bg: #0c0a08;
  --bg-alt: #131009;
  --card: #17130d;
  --card-border: rgba(212, 175, 55, 0.22);
  --card-border-strong: rgba(212, 175, 55, 0.45);

  --gold: #d4af37;
  --gold-light: #f3dd96;
  --gold-pale: #f7ecc8;
  --gold-deep: #9c7a24;

  --text: #f3ede0;
  --text-muted: #ab9f8d;
  --text-faint: #766c5e;

  --urgent: #e2624f;
  --success: #7bb682;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-numeric: 'Bebas Neue', 'Inter', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --container: 1180px;

  --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.15);
  --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button, input { font-family: inherit; }

button { cursor: pointer; border: none; background: none; color: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 13px;
  color: var(--gold-light);
  font-weight: 700;
}

.eyebrow .muted { color: var(--text-muted); font-weight: 700; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.section-heading {
  font-size: clamp(28px, 4vw, 42px);
  text-align: center;
  margin-bottom: 12px;
}

.section-heading .accent { color: var(--gold); font-style: italic; }

.section-sub {
  text-align: center;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 48px;
  font-size: 16px;
}

.gold-text { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-deep));
  color: #1a1408;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(212, 175, 55, 0.28); }

.btn-outline {
  border: 1.5px solid var(--card-border-strong);
  color: var(--text);
  background: rgba(212, 175, 55, 0.04);
}

.btn-outline:hover { border-color: var(--gold); background: rgba(212, 175, 55, 0.1); transform: translateY(-2px); }

.btn-block { width: 100%; }

.btn-sm { padding: 10px 20px; font-size: 12px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 7, 10, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--card-border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.04em;
}

.logo .mark {
  width: 34px;
  height: 34px;
  color: var(--gold);
}

.logo .word-real { color: var(--text); }
.logo .word-winners { color: var(--gold); }
.logo small {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }

.header-actions { display: flex; align-items: center; gap: 16px; }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 84px;
  left: 0;
  right: 0;
  height: calc(100vh - 84px);
  height: calc(100dvh - 84px);
  background: var(--bg);
  z-index: 99;
  padding: 32px 24px;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  padding: 16px 4px;
  font-size: 18px;
  font-weight: 700;
  border-bottom: 1px solid var(--card-border);
  color: var(--text);
}

.mobile-nav .btn { margin-top: 24px; }

/* ---------- Hero ---------- */
.hero {
  padding: 64px 0 40px;
  background:
    radial-gradient(ellipse 900px 500px at 15% -10%, rgba(212, 175, 55, 0.16), transparent 60%),
    radial-gradient(ellipse 700px 500px at 100% 10%, rgba(212, 175, 55, 0.10), transparent 60%),
    var(--bg);
  overflow: hidden;
}

.hero-top {
  text-align: center;
  margin-bottom: 28px;
}

.hero-top .eyebrow-line {
  font-family: var(--font-display);
  font-size: clamp(14px, 2vw, 18px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.hero-top .eyebrow-line b { color: var(--gold-light); font-weight: 800; }

.category-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.category-nav a {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  padding: 6px 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.category-nav a:hover { color: var(--gold-light); border-color: var(--gold); }

.category-nav .sep { color: var(--card-border-strong); font-size: 14px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  margin-top: 56px;
}

.hero-copy h1 {
  font-size: clamp(36px, 5vw, 58px);
  margin-bottom: 20px;
}

.hero-copy h1 .em { color: var(--gold); font-style: italic; }

.hero-copy p {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 460px;
  margin-bottom: 32px;
}

.hero-copy .cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }

.trust-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
}

.trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.trust-row svg { width: 16px; height: 16px; color: var(--gold); }

/* Hero visual composition */
.hero-visual {
  position: relative;
  height: 460px;
}

.float-card {
  position: absolute;
  background: linear-gradient(160deg, var(--card), var(--bg-alt));
  border: 1px solid var(--card-border-strong);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-deep);
  padding: 18px;
  width: 168px;
}

.float-card .icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.float-card .icon-wrap svg { width: 22px; height: 22px; color: var(--gold); }

.float-card .label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 2px;
}

.float-card .sub { font-size: 11px; color: var(--text-muted); }

.card-car   { top: 8%;  left: 2%;  transform: rotate(-4deg); animation: float1 6s ease-in-out infinite; }
.card-cash  { top: 4%;  right: 4%; transform: rotate(3deg);  animation: float2 7s ease-in-out infinite; }
.card-watch { bottom: 10%; left: 10%; transform: rotate(2deg); animation: float2 6.5s ease-in-out infinite; }
.card-bag   { bottom: 4%;  right: 0%; transform: rotate(-3deg); animation: float1 7.5s ease-in-out infinite; }

@keyframes float1 { 0%,100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-14px) rotate(-4deg); } }
@keyframes float2 { 0%,100% { transform: translateY(0) rotate(3deg); } 50% { transform: translateY(-14px) rotate(3deg); } }

.phone-mock {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 420px;
  background: linear-gradient(165deg, #1c170f, #0c0a08);
  border: 6px solid #221b10;
  border-radius: 36px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px var(--card-border);
  padding: 22px 18px;
  z-index: 2;
}

.phone-mock .p-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.phone-mock .p-head .dot-menu { display: flex; flex-direction: column; gap: 3px; }
.phone-mock .p-head .dot-menu span { width: 16px; height: 2px; background: var(--gold); border-radius: 2px; }
.phone-mock .p-head .p-title { font-family: var(--font-display); font-weight: 800; font-size: 14px; letter-spacing: 0.08em; }

.phone-mock h4 {
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 4px;
}

.phone-mock h4 .go { color: var(--gold); }

.phone-mock .p-cta {
  margin-top: 14px;
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 14px;
  border-radius: 999px;
}

.phone-mock .p-section-label {
  margin-top: 26px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 10px;
}

.phone-mock .p-prize {
  background: rgba(212,175,55,0.07);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.phone-mock .p-prize .thumb {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  flex-shrink: 0;
}

.phone-mock .p-prize .pt { font-size: 12px; font-weight: 700; }
.phone-mock .p-prize .ps { font-size: 10px; color: var(--text-muted); }

/* ---------- Features strip ---------- */
.features {
  padding: 56px 0;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.features .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature {
  text-align: center;
  padding: 20px 12px;
}

.feature .icon-circle {
  width: 68px;
  height: 68px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 1.5px solid var(--card-border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.feature:hover .icon-circle { background: rgba(212,175,55,0.08); border-color: var(--gold); }

.feature .icon-circle svg { width: 28px; height: 28px; color: var(--gold); }

.feature .f-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---------- Notify banner ---------- */
.notify-banner {
  margin: 56px auto;
  max-width: var(--container);
  border: 1px solid var(--card-border-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, rgba(212,175,55,0.08), rgba(212,175,55,0.02));
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.notify-banner .nb-left { display: flex; align-items: center; gap: 16px; }

.notify-banner .bell {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notify-banner .bell svg { width: 22px; height: 22px; color: var(--gold); }

.notify-banner .nb-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.notify-banner .nb-sub {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(18px, 2.4vw, 26px);
  letter-spacing: 0.02em;
}

.notify-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.notify-form input[type="email"] {
  background: var(--bg);
  border: 1px solid var(--card-border-strong);
  border-radius: 999px;
  padding: 13px 20px;
  color: var(--text);
  min-width: 240px;
  font-size: 14px;
}

.notify-form input[type="email"]::placeholder { color: var(--text-faint); }
.notify-form input[type="email"]:focus { outline: none; border-color: var(--gold); }

.notify-msg { font-size: 13px; color: var(--success); margin-top: 10px; display: none; }
.notify-msg.show { display: block; }

/* Countdown */
.countdown {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin: 28px 0;
}

.countdown .cd-box {
  background: var(--card);
  border: 1px solid var(--card-border-strong);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  text-align: center;
  min-width: 72px;
}

.countdown .cd-num {
  font-family: var(--font-numeric);
  font-size: 30px;
  color: var(--gold-light);
  letter-spacing: 0.02em;
  line-height: 1;
}

.countdown .cd-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.countdown.sm .cd-box { padding: 8px 10px; min-width: 52px; }
.countdown.sm .cd-num { font-size: 20px; }
.countdown.sm .cd-label { font-size: 8px; }

/* ---------- Raffle cards ---------- */
.raffle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.raffle-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.raffle-card:hover {
  transform: translateY(-6px);
  border-color: var(--card-border-strong);
  box-shadow: var(--shadow-deep);
}

.raffle-media {
  position: relative;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.raffle-media.cat-cars   { background: linear-gradient(145deg, #241d10, #0c0a08); }
.raffle-media.cat-cash   { background: linear-gradient(145deg, #1c2015, #0c0a08); }
.raffle-media.cat-watches{ background: linear-gradient(145deg, #241a10, #0c0a08); }
.raffle-media.cat-bags   { background: linear-gradient(145deg, #201017, #0c0a08); }

.raffle-media svg { width: 84px; height: 84px; color: var(--gold); opacity: 0.85; }

.raffle-media .cat-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(8,7,10,0.75);
  border: 1px solid var(--card-border-strong);
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

.raffle-media .status-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

.status-tag.live { background: rgba(123,182,130,0.15); color: var(--success); border: 1px solid rgba(123,182,130,0.4); }
.status-tag.ending { background: rgba(226,98,79,0.15); color: var(--urgent); border: 1px solid rgba(226,98,79,0.4); }

.raffle-body { padding: 22px; display: flex; flex-direction: column; gap: 14px; flex: 1; }

.raffle-body h3 { font-size: 19px; }

.raffle-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
}

.raffle-price .worth { color: var(--text-faint); font-weight: 500; font-size: 12px; font-family: var(--font-body); }

.progress-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}

.progress-bar .fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}

.progress-meta b { color: var(--text); }

.raffle-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.ticket-from {
  font-size: 12px;
  color: var(--text-muted);
}

.ticket-from b {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text);
  font-weight: 800;
}

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step {
  text-align: center;
  padding: 28px 18px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  background: var(--card);
  position: relative;
}

.step .step-num {
  font-family: var(--font-numeric);
  font-size: 42px;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 6px;
}

.step h4 { font-size: 17px; margin-bottom: 8px; }
.step p { font-size: 13.5px; color: var(--text-muted); }

/* ---------- Winners strip ---------- */
.winners-strip {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.winners-strip::-webkit-scrollbar { display: none; }

.winner-card {
  flex: 0 0 240px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.winner-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: #1a1408;
  font-size: 16px;
  flex-shrink: 0;
}

.winner-name { font-weight: 700; font-size: 14px; }
.winner-prize { font-size: 12.5px; color: var(--gold-light); }
.winner-loc { font-size: 11.5px; color: var(--text-faint); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--card-border);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
}

.faq-q svg { width: 18px; height: 18px; color: var(--gold); transition: transform 0.25s ease; flex-shrink: 0; margin-left: 16px; }

.faq-item.open .faq-q svg { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--text-muted);
  font-size: 14.5px;
}

.faq-a-inner { padding: 0 4px 22px; }

.faq-item.open .faq-a { max-height: 240px; }

/* ---------- Final CTA ---------- */
.final-cta {
  text-align: center;
  padding: 90px 0;
  background:
    radial-gradient(ellipse 800px 400px at 50% 100%, rgba(212,175,55,0.12), transparent 70%),
    var(--bg-alt);
  border-top: 1px solid var(--card-border);
}

.final-cta h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; }
.final-cta p { color: var(--text-muted); margin-bottom: 32px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--card-border);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}

.footer-col p { color: var(--text-muted); font-size: 13.5px; max-width: 280px; }

.footer-col ul li { margin-bottom: 11px; }
.footer-col ul a { color: var(--text-muted); font-size: 14px; transition: color 0.2s ease; }
.footer-col ul a:hover { color: var(--gold-light); }

.social-row { display: flex; gap: 12px; margin-top: 20px; }

.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--card-border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.social-row a:hover { border-color: var(--gold); background: rgba(212,175,55,0.08); }
.social-row a svg { width: 16px; height: 16px; color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--card-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: var(--text-faint);
}

.footer-bottom .legal-links { display: flex; gap: 20px; }
.footer-bottom .legal-links a:hover { color: var(--gold-light); }

.age-note {
  margin-top: 20px;
  font-size: 11.5px;
  color: var(--text-faint);
  line-height: 1.6;
}

/* ---------- Page header (inner pages) ---------- */
.page-header {
  padding: 56px 0 40px;
  text-align: center;
  background: radial-gradient(ellipse 800px 400px at 50% 0%, rgba(212,175,55,0.12), transparent 65%);
  border-bottom: 1px solid var(--card-border);
}

.page-header .eyebrow { display: block; margin-bottom: 12px; }
.page-header h1 { font-size: clamp(30px, 4.5vw, 46px); }

.breadcrumb {
  font-size: 12.5px;
  color: var(--text-faint);
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.breadcrumb a:hover { color: var(--gold-light); }

/* ---------- Filter tabs ---------- */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 40px 0 40px;
}

.filter-tab {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid var(--card-border-strong);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.filter-tab:hover { color: var(--gold-light); border-color: var(--gold); }

.filter-tab.active {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-deep));
  color: #1a1408;
  border-color: transparent;
}

/* ---------- Raffle detail page ---------- */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding: 56px 0 40px;
  align-items: start;
}

.gallery-main {
  height: 380px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.gallery-main svg { width: 130px; height: 130px; color: var(--gold); opacity: 0.85; }

.gallery-thumbs { display: flex; gap: 12px; }

.gallery-thumbs .thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.gallery-thumbs .thumb svg { width: 30px; height: 30px; color: var(--gold); opacity: 0.7; }
.gallery-thumbs .thumb.active { border-color: var(--gold); }

.detail-info .cat-tag { display: inline-block; margin-bottom: 14px; }

.detail-info h1 { font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 10px; }

.detail-worth { color: var(--text-muted); font-size: 15px; margin-bottom: 24px; }
.detail-worth b { color: var(--gold-light); }

.detail-card {
  border: 1px solid var(--card-border-strong);
  border-radius: var(--radius-md);
  background: var(--card);
  padding: 24px;
  margin-bottom: 24px;
}

.detail-card .progress-meta { margin: 12px 0 4px; }
.detail-card .progress-bar { margin-bottom: 4px; }

.urgency-note {
  font-size: 12.5px;
  color: var(--urgent);
  font-weight: 600;
  margin-top: 10px;
}

.ticket-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.ticket-price-row .tp-label { font-size: 13px; color: var(--text-muted); }
.ticket-price-row .tp-value { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--gold-light); }

.qty-selector {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--card-border-strong);
  border-radius: 999px;
  overflow: hidden;
  width: fit-content;
  margin-bottom: 18px;
}

.qty-selector button {
  width: 44px;
  height: 44px;
  font-size: 20px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.qty-selector button:hover { background: rgba(212,175,55,0.1); }

.qty-selector input {
  width: 60px;
  text-align: center;
  background: transparent;
  border: none;
  border-left: 1px solid var(--card-border);
  border-right: 1px solid var(--card-border);
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  height: 44px;
}

.qty-selector input:focus { outline: none; }

.quick-qty { display: flex; gap: 8px; margin-bottom: 22px; flex-wrap: wrap; }

.quick-qty button {
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--card-border);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.quick-qty button:hover, .quick-qty button.active {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(212,175,55,0.08);
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 18px;
  border-top: 1px solid var(--card-border);
  margin-bottom: 20px;
}

.total-row .tr-label { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.total-row .tr-value { font-family: var(--font-display); font-weight: 900; font-size: 30px; color: var(--gold); }

.payment-note {
  font-size: 12px;
  color: var(--text-faint);
  text-align: center;
  margin-top: 12px;
  line-height: 1.6;
}

.detail-tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--card-border); margin-bottom: 22px; }

.detail-tab-btn {
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.detail-tab-btn.active { color: var(--gold-light); border-color: var(--gold); }

.detail-tab-panel { display: none; color: var(--text-muted); font-size: 14.5px; line-height: 1.8; }
.detail-tab-panel.active { display: block; }

.detail-tab-panel ul { list-style: disc; padding-left: 20px; }
.detail-tab-panel ul li { margin-bottom: 8px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 380px; margin-top: 20px; }
  .detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .features .container { grid-template-columns: repeat(2, 1fr); }
  .raffle-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 940px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn-primary.btn-sm { display: none; }
}

@media (max-width: 760px) {
  .notify-banner { flex-direction: column; align-items: flex-start; }
  .notify-form { width: 100%; }
  .notify-form input[type="email"] { flex: 1; min-width: 0; }
}

@media (max-width: 620px) {
  .raffle-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .features .container { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .category-nav { gap: 12px; }
  .hero-visual { display: none; }
  .countdown .cd-box { min-width: 60px; padding: 10px 12px; }
  .countdown .cd-num { font-size: 22px; }
}
