:root {
  color-scheme: dark;
  --navy: #030914;
  --ivory: #f2eee6;
  --muted: rgba(242, 238, 230, 0.68);
  --quiet: rgba(242, 238, 230, 0.5);
  --line: rgba(255, 255, 255, 0.13);
  --line-soft: rgba(255, 255, 255, 0.08);
  --crimson: #c6284a;
  --panel: rgba(255, 255, 255, 0.04);
}

* { box-sizing: border-box; }
html { background: var(--navy); }
body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 16% 0%, rgba(198, 40, 74, 0.18), transparent 34rem),
    linear-gradient(180deg, #030914 0%, #05070f 54%, #02040a 100%);
  color: var(--ivory);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, ui-sans-serif, system-ui, sans-serif;
}

a { color: inherit; }
h1, h2, h3, p { margin-top: 0; }

.site-bar {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(3, 9, 20, 0.9);
  backdrop-filter: blur(18px);
}

.site-bar-inner,
.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-bar-inner {
  width: calc(100% - 32px);
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-mark {
  display: flex;
  align-items: baseline;
  gap: clamp(10px, 1.8vw, 18px);
}

.brand-home,
.nav-links a,
.more-menu summary,
.kicker,
.card-meta {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.brand-home,
.brand-title,
.nav-links a {
  text-decoration: none;
}

.brand-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.88rem, 1.35vw, 1.18rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 22px);
  white-space: nowrap;
}

.nav-links a,
.more-menu summary {
  color: rgba(242, 238, 230, 0.78);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.more-menu summary:hover,
.more-menu summary:focus-visible {
  color: var(--ivory);
}

.more-menu {
  position: relative;
}

.more-menu summary {
  cursor: pointer;
  list-style: none;
}

.more-menu summary::-webkit-details-marker {
  display: none;
}

.more-panel {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 170px;
  border: 1px solid var(--line);
  background: rgba(3, 9, 20, 0.96);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.34);
  padding: 10px;
  display: grid;
  gap: 8px;
}

.page-hero {
  border-bottom: 1px solid var(--line-soft);
  padding: clamp(56px, 9vw, 108px) 0 clamp(34px, 6vw, 64px);
}

.kicker {
  color: var(--crimson);
  margin-bottom: 12px;
}

h1 {
  max-width: 12ch;
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.deck {
  max-width: 42rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.5;
}

.hero-cta {
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.45;
}

.hero-cta a,
.video-site {
  color: var(--ivory);
  text-decoration-color: rgba(198, 40, 74, 0.75);
  text-underline-offset: 0.18em;
}

.section {
  padding: clamp(34px, 6vw, 66px) 0;
  border-bottom: 1px solid var(--line-soft);
}

.section h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1;
  text-transform: uppercase;
}

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

.video-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.video-card {
  border: 1px solid var(--line);
  background: var(--panel);
}

.video-card.featured {
  margin-bottom: 24px;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.video-frame.short {
  max-width: 360px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
}

.video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  color: var(--ivory);
  text-decoration: none;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.03);
  transition: transform 180ms ease, filter 180ms ease;
}

.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 9, 20, 0.05), rgba(3, 9, 20, 0.28));
}

.video-thumb:hover img,
.video-thumb:focus-visible img {
  transform: scale(1.015);
  filter: saturate(1.03) contrast(1.08);
}

.play-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(242, 238, 230, 0.72);
  border-radius: 999px;
  background: rgba(3, 9, 20, 0.62);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
  transform: translate(-50%, -50%);
}

.play-dot::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 13px;
  border-left: 13px solid var(--ivory);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.video-card.featured .play-dot {
  width: 54px;
  height: 54px;
}

.video-card.featured .play-dot::before {
  left: 21px;
  top: 16px;
  border-left-width: 16px;
  border-top-width: 10px;
  border-bottom-width: 10px;
}

.video-copy {
  padding: 14px 16px 16px;
}

.video-copy h3 {
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  line-height: 1.1;
}

.video-copy p {
  color: var(--muted);
  margin-bottom: 0;
  line-height: 1.45;
}

.video-site {
  display: inline-block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.archive-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 22px;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--panel);
  padding: clamp(16px, 3vw, 24px);
}

.archive-meta {
  color: var(--crimson);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.archive-title {
  margin: 12px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
}

.archive-copy {
  color: var(--muted);
  line-height: 1.5;
}

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

.future-card {
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.025);
  padding: 16px;
}

.rules-list {
  display: grid;
  border: 1px solid var(--line-soft);
  border-bottom: 0;
}

.rule-row {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
  gap: clamp(16px, 4vw, 34px);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.025);
  padding: clamp(18px, 3vw, 26px);
}

.rule-row h2 {
  margin: 0;
  font-size: clamp(1.2rem, 2.5vw, 1.82rem);
}

.rule-row p {
  max-width: 46rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.65vw, 1.18rem);
  line-height: 1.48;
}

.rule-note {
  margin-top: 18px;
  border-left: 3px solid var(--crimson);
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.3;
  padding-left: 18px;
}

.footer {
  color: var(--muted);
  padding: 26px 0 42px;
}

@media (max-width: 960px) {
  .site-bar-inner {
    min-height: 64px;
    padding: 16px 0;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .video-grid,
  .video-grid.two,
  .future-grid,
  .archive-card,
  .rule-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-bar-inner,
  .wrap {
    width: min(100% - 32px, 1180px);
  }

  .brand-home {
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }

  .brand-title {
    font-size: clamp(0.8rem, 3.5vw, 1rem);
  }

  .nav-links a,
  .more-menu summary {
    font-size: 0.68rem;
  }
}
