:root {
  color-scheme: dark;
  --bg: #100504;
  --bg-soft: #210807;
  --panel: rgba(56, 12, 9, .76);
  --panel-strong: rgba(98, 18, 12, .92);
  --line: rgba(255, 204, 92, .34);
  --gold: #f7c65a;
  --gold-2: #ffe3a0;
  --red: #c71d16;
  --red-2: #ff4234;
  --ink: #fff3d2;
  --muted: #d9b985;
  --green: #35e8a0;
  --shadow: 0 24px 80px rgba(0, 0, 0, .45);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 20% 0%, rgba(185, 32, 22, .32), transparent 34rem),
    radial-gradient(circle at 82% 12%, rgba(255, 188, 69, .18), transparent 28rem),
    linear-gradient(180deg, #160503 0%, #0c0302 42%, #150604 100%);
  color: var(--ink);
  font-family: Arial, "Helvetica Neue", sans-serif;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 223, 151, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 223, 151, .035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .55), transparent 70%);
}

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

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

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(14, 4, 3, .88);
  border-bottom: 1px solid rgba(255, 198, 90, .24);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 178px;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(247, 198, 90, .2));
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--gold-2);
  background: rgba(70, 12, 8, .8);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.main-nav a {
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 9px 12px;
  color: #f4d99d;
  font-size: 14px;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #fff8de;
  border-color: rgba(255, 207, 100, .46);
  background: rgba(199, 29, 22, .28);
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  padding: 54px 0 38px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255, 205, 92, .3);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(101, 15, 11, .9), rgba(25, 6, 5, .92)),
    radial-gradient(circle at 0% 0%, rgba(255, 199, 88, .25), transparent 20rem);
  box-shadow: var(--shadow);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--green);
  font-weight: 700;
  letter-spacing: .02em;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

h1,
h2,
h3 {
  margin: 0;
  color: #fff6d8;
  line-height: 1.1;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(36px, 4.4vw, 58px);
}

.hero-copy .lead {
  margin-top: 20px;
  color: #f2d6a2;
  font-size: 18px;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255, 217, 130, .5);
  border-radius: var(--radius);
  color: #fff7dd;
  font-weight: 700;
  background: linear-gradient(180deg, #d9281e, #8d120e);
  box-shadow: 0 12px 30px rgba(216, 43, 30, .2);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 235, 161, .9);
  box-shadow: 0 18px 38px rgba(216, 43, 30, .32);
}

.btn.secondary {
  background: rgba(255, 221, 131, .08);
  box-shadow: none;
}

.hero-image {
  position: relative;
  min-height: 430px;
  border: 1px solid rgba(255, 204, 92, .32);
  border-radius: var(--radius);
  overflow: hidden;
  background: #260807;
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.hero-stats {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.stat {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(255, 213, 116, .34);
  border-radius: var(--radius);
  background: rgba(18, 5, 4, .76);
  backdrop-filter: blur(10px);
}

.stat strong {
  display: block;
  color: var(--gold-2);
  font-size: 18px;
}

.stat span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 54px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.section-head p {
  margin-top: 12px;
  font-size: 17px;
}

.image-band {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(300px, 1.1fr);
  gap: 24px;
  align-items: center;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.panel-pad {
  padding: 24px;
}

.rank-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rank-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}

.rank-list b {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  color: #250906;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
}

.rank-list strong {
  display: block;
  color: #fff0c7;
}

.rank-list span {
  color: var(--muted);
}

.feature-image {
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.feature-image.tall img {
  aspect-ratio: 9 / 14;
  max-height: 760px;
  object-position: top center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  min-height: 100%;
  padding: 22px;
  border: 1px solid rgba(255, 204, 92, .28);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(84, 16, 11, .86), rgba(27, 7, 5, .82));
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 223, 148, .64);
  background:
    linear-gradient(180deg, rgba(115, 22, 14, .92), rgba(32, 8, 5, .9));
}

.card h3 {
  font-size: 21px;
  margin-bottom: 10px;
}

.card p:last-child {
  margin-bottom: 0;
}

.schedule-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 22px;
  align-items: start;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius);
}

.schedule-table th,
.schedule-table td {
  padding: 15px 14px;
  border-bottom: 1px solid rgba(255, 204, 92, .18);
  text-align: left;
}

.schedule-table th {
  color: var(--gold-2);
  background: rgba(255, 204, 92, .08);
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(255, 214, 126, .45);
  border-radius: var(--radius);
  color: #ffe5a4;
  background: rgba(199, 29, 22, .28);
  font-weight: 700;
}

.tag.live {
  color: #dfffe9;
  border-color: rgba(53, 232, 160, .52);
  background: rgba(33, 156, 100, .18);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(255, 204, 92, .28);
  border-radius: var(--radius);
  background: rgba(44, 10, 7, .82);
  overflow: hidden;
}

.faq-button {
  width: 100%;
  min-height: 58px;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  color: #fff1c8;
  background: transparent;
  text-align: left;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.faq-button::after {
  content: "+";
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
}

.faq-item.open .faq-button::after {
  content: "-";
}

.faq-panel {
  display: none;
  padding: 0 18px 18px;
}

.faq-item.open .faq-panel {
  display: block;
}

.page-hero {
  padding: 58px 0 28px;
}

.page-hero .panel {
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(103, 16, 11, .88), rgba(20, 5, 4, .9)),
    radial-gradient(circle at 100% 0%, rgba(255, 205, 92, .24), transparent 22rem);
}

.page-hero h1 {
  font-size: clamp(36px, 6vw, 64px);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  align-items: start;
}

.content-flow h2 {
  margin: 28px 0 12px;
  font-size: 30px;
}

.content-flow h3 {
  margin: 20px 0 10px;
  font-size: 22px;
}

.content-flow ul {
  margin: 0 0 20px;
  padding-left: 20px;
  color: var(--muted);
}

.content-flow li {
  margin: 8px 0;
}

.side-note {
  position: sticky;
  top: 96px;
}

.side-note img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #fff1c8;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 204, 92, .3);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(16, 5, 4, .82);
  font: inherit;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(53, 232, 160, .32);
  border-color: rgba(53, 232, 160, .68);
}

.footer {
  margin-top: 42px;
  border-top: 1px solid rgba(255, 204, 92, .24);
  background: rgba(10, 3, 2, .74);
}

.footer-grid {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 24px;
}

.footer img {
  width: 210px;
  margin-bottom: 12px;
}

.footer h2,
.footer h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.footer a {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 7px 0;
  color: var(--muted);
  transition: color .2s ease;
}

.footer a:hover {
  color: var(--gold-2);
}

.small-print {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0 28px;
  border-top: 1px solid rgba(255, 204, 92, .16);
  color: #b89662;
  font-size: 14px;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    padding: 12px;
    border: 1px solid rgba(255, 204, 92, .32);
    border-radius: var(--radius);
    background: rgba(16, 4, 3, .96);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: grid;
    grid-template-columns: 1fr;
  }

  .main-nav a {
    padding: 12px;
  }

  .hero-grid,
  .image-band,
  .schedule-grid,
  .content-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-image,
  .hero-image img {
    min-height: 320px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .side-note {
    position: static;
  }
}

@media (max-width: 620px) {
  .nav-wrap,
  .container,
  .footer-grid,
  .small-print {
    width: min(100% - 24px, var(--max));
  }

  .brand img {
    width: 146px;
  }

  .hero {
    padding-top: 30px;
  }

  .hero-copy,
  .page-hero .panel,
  .panel-pad,
  .card {
    padding: 18px;
  }

  h1 {
    font-size: 36px;
  }

  .hero-stats {
    position: static;
    grid-template-columns: 1fr;
    margin: 12px;
  }

  .schedule-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .action-row .btn {
    width: 100%;
  }
}
