:root {
  --bg-main: #1e0208;
  --bg-deep: #150106;
  --bg-card: #2a050d;
  --wine: #3d0610;
  --wine-2: #5c0a16;
  --gold: #d4af37;
  --gold-2: #f0d060;
  --ivory: #f7efdd;
  --muted: #d8ccb1;
  --line: rgba(240, 208, 96, 0.34);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ivory);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 210, 120, 0.12), transparent 33%),
    radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08), transparent 36%),
    linear-gradient(180deg, #29050d 0%, #170208 35%, #120106 100%);
  overflow-x: hidden;
}

.container { width: min(1140px, 94vw); margin: 0 auto; }

.bg-effects { position: fixed; inset: 0; pointer-events: none; z-index: -1; }
.spark {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,236,181,.95), rgba(255,236,181,0));
  animation: float 14s linear infinite;
}
.spark.s1 { left: 10%; top: 20%; animation-delay: 0s; }
.spark.s2 { left: 80%; top: 30%; animation-delay: 2s; }
.spark.s3 { left: 25%; top: 70%; animation-delay: 5s; }
.spark.s4 { left: 70%; top: 82%; animation-delay: 8s; }
@keyframes float {
  0% { transform: translateY(0) scale(.7); opacity: .2; }
  50% { transform: translateY(-26px) scale(1.2); opacity: .9; }
  100% { transform: translateY(0) scale(.7); opacity: .2; }
}

a { color: var(--gold-2); text-decoration: none; }
a:hover { color: #ffe9a8; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(24, 1, 8, .82);
  border-bottom: 1px solid rgba(240, 208, 96, .2);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 0;
}
.brand { display: flex; align-items: center; gap: .7rem; color: var(--ivory); }
.brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--gold-2);
  background: linear-gradient(160deg, #68111f, #2a040c);
  border: 1px solid rgba(240, 208, 96, .35);
}
.brand-text { font-weight: 700; line-height: 1.2; }
.brand-text small { font-size: .74rem; color: var(--muted); font-weight: 500; }

.top-nav { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.top-nav a { color: #f2dfbf; font-size: .95rem; }

.header-cta { display: flex; gap: .6rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .72rem 1.2rem;
  font-weight: 800;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: .28s ease;
  cursor: pointer;
}
.btn-gold {
  color: #2d1300;
  background: linear-gradient(120deg, #f8db77 0%, #d4af37 40%, #f0d060 100%);
  box-shadow: 0 0 0 rgba(240,208,96,0), 0 12px 30px rgba(212,175,55,.28);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(212,175,55,.4); }
.btn-outline {
  color: var(--ivory);
  border-color: rgba(240,208,96,.48);
  background: rgba(240,208,96,.08);
}
.btn-outline:hover { background: rgba(240,208,96,.18); }
.pulse { animation: pulse 2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(240,208,96,.32); }
  70% { box-shadow: 0 0 0 15px rgba(240,208,96,0); }
  100% { box-shadow: 0 0 0 0 rgba(240,208,96,0); }
}

.ticker {
  overflow: hidden;
  border-block: 1px solid rgba(212,175,55,.5);
  background: linear-gradient(90deg, rgba(236,196,87,.9), rgba(208,163,47,.9));
}
.ticker.secondary { background: linear-gradient(90deg, rgba(255,224,130,.86), rgba(232,184,70,.88)); }
.ticker-track {
  display: inline-flex;
  white-space: nowrap;
  min-width: 200%;
  color: #3e1804;
  gap: 1.1rem;
  padding: .55rem 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .08em;
  animation: marquee 28s linear infinite;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.hero { padding: 2rem 0 1.2rem; }
.hero-slider {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(92,10,22,.8), rgba(30,2,8,.95));
  overflow: hidden;
}
.hero-slide { display: none; padding: 2.2rem 1.6rem 2.6rem; min-height: 380px; }
.hero-slide.active { display: block; }
.eyebrow {
  margin: .2rem 0 .6rem;
  color: #f6da96;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-family: 'Barlow Condensed', sans-serif;
}
h1, h2, h3 {
  margin: .2rem 0 .8rem;
  font-family: 'Playfair Display', serif;
  letter-spacing: .02em;
  line-height: 1.22;
}
h1 { font-size: clamp(2rem, 4.2vw, 3.3rem); }
h2 { font-size: clamp(1.45rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.42rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1rem; }
.hero-actions.center { justify-content: center; }
.slider-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(240,208,96,.55);
  background: rgba(22,3,8,.72);
  color: var(--gold-2);
  font-size: 1.8rem;
  cursor: pointer;
}
.slider-arrow.prev { left: 12px; }
.slider-arrow.next { right: 12px; }
.slider-dots, .mini-dots {
  display: flex;
  gap: .4rem;
  justify-content: center;
  padding-bottom: 1rem;
}
.slider-dots button, .mini-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(247,239,221,.35);
  cursor: pointer;
}
.slider-dots button.active, .mini-dots button.active { background: var(--gold-2); }

.quick-card { padding: .6rem 0 1.4rem; }
.access-ticket {
  border-radius: 18px;
  border: 1px dashed rgba(240,208,96,.55);
  background: linear-gradient(160deg, rgba(42,5,13,.9), rgba(92,10,22,.44));
  padding: 1.2rem 1.1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.ticket-label {
  margin: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: .84rem;
  color: #f3d285;
}
.ticket-actions { display: flex; gap: .6rem; flex-wrap: wrap; }

.content-section { padding: 1.4rem 0; }
.content-section.alt { background: linear-gradient(180deg, rgba(43,6,14,.4), rgba(13,1,5,.18)); border-block: 1px solid rgba(240,208,96,.14); }
.section-heading {
  display: flex;
  gap: .9rem;
  align-items: center;
  margin-bottom: .6rem;
}
.section-no {
  width: 46px;
  min-width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-family: 'JetBrains Mono', monospace;
  color: #2d1300;
  background: linear-gradient(180deg, #f8e090, #d4af37);
}

p { margin: .45rem 0 1rem; color: #f7efdd; }
.small-note { font-size: .93rem; color: var(--muted); }

.address-card {
  background: linear-gradient(165deg, rgba(37,5,11,.95), rgba(91,10,22,.35));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.2rem;
}
.address-top { display: flex; justify-content: space-between; gap: .8rem; flex-wrap: wrap; }
.status {
  font-family: 'JetBrains Mono', monospace;
  padding: .24rem .62rem;
  border-radius: 999px;
  font-size: .84rem;
  border: 1px solid rgba(189,242,162,.5);
}
.status.active { background: rgba(53,120,45,.24); color: #c8f5b0; }
.updated { font-family: 'JetBrains Mono', monospace; color: #f4dfae; font-size: .87rem; }
.address-main {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(.95rem, 1.8vw, 1.16rem);
  color: #ffe8a3;
  word-break: break-all;
  padding: .6rem .8rem;
  border-radius: 12px;
  border: 1px solid rgba(240,208,96,.3);
  background: rgba(14,1,5,.6);
}
.address-actions { display: flex; flex-wrap: wrap; gap: .6rem; }
.copy-feedback { min-height: 24px; color: #f8da8d; font-size: .95rem; }
.table-wrap { overflow-x: auto; margin-top: .6rem; }
table { width: 100%; border-collapse: collapse; min-width: 620px; }
th, td { border: 1px solid rgba(240,208,96,.25); padding: .62rem; text-align: left; }
th { background: rgba(240,208,96,.13); }

.mini-slider {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(45,7,14,.9), rgba(20,2,8,.85));
}
.mini-track { display: flex; transition: transform .45s ease; }
.mini-card { min-width: 100%; padding: 1.2rem; }
.mini-card p { margin-bottom: 0; }

.rating-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 1rem;
}
.score-card, .bars-card, .review-card, .pros-cons article {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(26,2,8,.74);
  padding: 1rem;
}
.score-label { font-family: 'JetBrains Mono', monospace; color: #efd28b; }
.score-value { font-size: 3rem; margin: .15rem 0; font-weight: 900; color: #ffe39a; line-height: 1; }
.score-value span { font-size: 1.1rem; color: var(--muted); }
.score-count { color: #f2ddb0; }
.bar-item { display: grid; grid-template-columns: 170px 1fr 45px; gap: .6rem; align-items: center; margin-bottom: .56rem; }
.bar-item span { font-size: .94rem; }
.bar-item div { height: 8px; border-radius: 99px; background: rgba(247,239,221,.2); overflow: hidden; }
.bar-item b { display: block; height: 100%; border-radius: 99px; background: linear-gradient(90deg, #f8e090, #d4af37); }
.bar-item small { text-align: right; color: #f2ddb0; font-family: 'JetBrains Mono', monospace; }
.stars { color: #f7d26f; letter-spacing: .2em; }
.review-author { font-weight: 800; }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.pros-cons ul { margin: 0; padding-left: 1.1rem; }

.faq-list { display: grid; gap: .7rem; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(30,2,8,.82);
}
.faq-q {
  width: 100%;
  text-align: left;
  border: 0;
  cursor: pointer;
  background: none;
  color: var(--ivory);
  padding: .9rem 1rem;
  font-size: 1rem;
  font-weight: 700;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  padding: 0 1rem;
}
.faq-item.open .faq-a { max-height: 260px; padding-bottom: .8rem; }

.final-cta {
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid rgba(240,208,96,.22);
  border-bottom: 1px solid rgba(240,208,96,.22);
  background: linear-gradient(160deg, rgba(92,10,22,.45), rgba(31,2,8,.7));
}
.site-footer {
  padding: 1.3rem 0 6rem;
  color: #f0dfc0;
}
.footer-links { display: flex; gap: .8rem; flex-wrap: wrap; margin-bottom: .8rem; }
.footer-links a {
  border: 1px solid rgba(240,208,96,.35);
  border-radius: 999px;
  padding: .2rem .56rem;
  color: #f5dda3;
}

.mobile-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  display: none;
  gap: .55rem;
  padding: .62rem .8rem calc(.62rem + env(safe-area-inset-bottom));
  background: rgba(20,1,7,.96);
  border-top: 1px solid rgba(240,208,96,.35);
}
.mobile-dock .btn { flex: 1; padding: .78rem .7rem; }

.reveal { opacity: 0; transform: translateY(24px); transition: .6s ease; }
.reveal.show { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
  .rating-grid, .pros-cons { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  body { font-size: 17px; }
  .top-nav { display: none; }
  .nav-wrap { flex-wrap: wrap; }
  .header-cta { width: 100%; }
  .header-cta .btn { flex: 1; }
  .hero-slide { min-height: 420px; padding: 1.6rem 1rem 2rem; }
  .bar-item { grid-template-columns: 1fr; }
  .mobile-dock { display: flex; }
}
@media (max-width: 480px) {
  .container { width: min(1140px, 92vw); }
  .section-no { width: 38px; min-width: 38px; height: 38px; font-size: .82rem; }
  h2 { font-size: 1.32rem; }
  .ticker-track { font-size: .92rem; }
}
