:root {
  --bg: #050505;
  --bg-soft: #0a0a0b;
  --surface: #111113;
  --surface-soft: #18181b;
  --surface-raised: #202024;
  --text: #ffffff;
  --muted: #c7c7cc;
  --muted-strong: #ececef;
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.24);
  --accent: #e50914;
  --accent-strong: #ff2f3a;
  --accent-dark: #98070d;
  --focus: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.44);
  --max-width: min(1180px, calc(100% - 2rem));
  --radius: 8px;
  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(229, 9, 20, 0.13) 0, rgba(5, 5, 5, 0) 30rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0) 38%),
    var(--bg);
  color: var(--text);
  font-family: var(--font);
  letter-spacing: 0;
}

body.is-locked {
  overflow: hidden;
}

::selection {
  background: var(--accent);
  color: var(--text);
}

img {
  max-width: 100%;
  vertical-align: middle;
}

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

button {
  font: inherit;
}

code {
  padding: 0.12rem 0.32rem;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--surface-soft);
  color: var(--text);
}

.site-shell,
.legal-shell {
  width: var(--max-width);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  min-height: 78px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(16px);
}

.brand,
.site-nav,
.header-actions,
.hero-actions,
.age-actions,
.footer-links,
.contact-links {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.brand {
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--text);
  font-size: 0.8rem;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.site-nav {
  justify-content: center;
}

.header-actions {
  justify-content: flex-end;
  gap: 0.55rem;
}

.language-select {
  min-height: 40px;
  padding: 0.55rem 1.9rem 0.55rem 0.72rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(45deg, transparent 50%, var(--muted-strong) 50%) calc(100% - 0.9rem) 50% / 0.36rem
      0.36rem no-repeat,
    linear-gradient(135deg, var(--muted-strong) 50%, transparent 50%) calc(100% - 0.68rem) 50% / 0.36rem
      0.36rem no-repeat,
    rgba(255, 255, 255, 0.045);
  color: var(--text);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  appearance: none;
}

.language-select:hover,
.language-select:focus-visible {
  border-color: var(--accent);
  background-color: rgba(229, 9, 20, 0.1);
}

.language-select option {
  background: var(--surface);
  color: var(--text);
}

.site-nav a,
.footer-links a,
.legal-back {
  color: var(--muted);
  font-size: 0.95rem;
  transition:
    color 160ms ease,
    border-color 160ms ease;
}

.site-nav a:hover,
.footer-links a:hover,
.legal-back:hover {
  color: var(--text);
}

.site-nav a {
  padding-block: 0.35rem;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover {
  border-color: var(--accent);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.78rem 1.05rem;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(229, 9, 20, 0.22);
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  box-shadow: 0 16px 34px rgba(229, 9, 20, 0.3);
}

.button.secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
  box-shadow: none;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--accent);
  background: rgba(229, 9, 20, 0.1);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.button.compact {
  min-height: 40px;
  padding: 0.65rem 0.85rem;
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  min-height: min(760px, calc(100vh - 78px));
  padding: clamp(2.5rem, 7vw, 5.5rem) 0;
}

.label {
  margin: 0 0 0.85rem;
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.age-card h1,
.legal-card h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(3.1rem, 9vw, 7rem);
  line-height: 0.92;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.25rem);
  line-height: 0.96;
}

.lead,
.section-head p,
.panel p,
.age-card p,
.legal-card p,
.legal-card li,
.footer-meta {
  color: var(--muted);
  line-height: 1.7;
}

.lead {
  max-width: 38rem;
  margin: 1.2rem 0 1.6rem;
  font-size: clamp(1rem, 2vw, 1.16rem);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 2rem 0 0;
}

.stats div {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.stats dt,
.stats dd {
  margin: 0;
}

.stats dt {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--muted-strong);
}

.stats dd {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-media {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 0.75rem;
  align-items: stretch;
}

.hero-thumb,
.video-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.hero-thumb img,
.video-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.hero-thumb::after,
.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.38));
  opacity: 0.72;
  transition: opacity 180ms ease;
}

.hero-thumb:hover,
.video-thumb:hover {
  border-color: rgba(255, 47, 58, 0.72);
  transform: translateY(-2px);
}

.hero-thumb:hover img,
.video-thumb:hover img {
  transform: scale(1.025);
}

.hero-thumb:hover::after,
.video-thumb:hover::after {
  opacity: 0.48;
}

.primary-thumb {
  grid-row: span 2;
}

.hero-thumb:not(.primary-thumb) {
  min-height: 8.5rem;
}

.primary-thumb img {
  min-height: 18rem;
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  border-top: 1px solid var(--line);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(280px, 0.4fr);
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.35rem;
}

.section-head .label {
  grid-column: 1;
  margin-bottom: -0.65rem;
}

.schedule-badge {
  display: inline-flex;
  grid-column: 2;
  justify-self: end;
  align-self: start;
  padding: 0.42rem 0.65rem;
  border: 1px solid rgba(255, 47, 58, 0.42);
  border-radius: var(--radius);
  background: rgba(229, 9, 20, 0.1);
  color: var(--muted-strong);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.section-head h2 {
  grid-column: 1;
}

.section h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.section-head p:not(.label) {
  grid-column: 2;
  margin: 0;
}

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

.video-card {
  min-width: 0;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.video-card:hover {
  border-color: rgba(255, 47, 58, 0.58);
  background: linear-gradient(180deg, rgba(229, 9, 20, 0.12), rgba(255, 255, 255, 0.035));
  transform: translateY(-2px);
}

.video-thumb {
  aspect-ratio: 16 / 9;
  box-shadow: none;
}

.video-badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 2;
  display: inline-flex;
  padding: 0.34rem 0.48rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 6px;
  background: rgba(5, 5, 5, 0.78);
  color: var(--text);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1;
  backdrop-filter: blur(8px);
}

.video-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 0.1rem 0.05rem;
}

.video-info p {
  margin: 0;
  font-weight: 800;
  color: var(--muted-strong);
}

.video-copy {
  min-width: 0;
}

.video-meta {
  display: block;
  margin-top: 0.28rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.video-info a,
.contact-link {
  color: var(--accent-strong);
  font-size: 0.94rem;
  font-weight: 700;
}

.video-info a {
  flex: 0 0 auto;
  white-space: nowrap;
}

.video-card.is-featured {
  border-color: rgba(255, 47, 58, 0.7);
}

.top-video-grid .video-card {
  background: linear-gradient(180deg, rgba(229, 9, 20, 0.12), rgba(255, 255, 255, 0.028));
}

.split-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(320px, 0.45fr);
  gap: 1.5rem;
  align-items: start;
}

.panel {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-left-color: var(--accent);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.24);
}

.panel p {
  margin: 0 0 1.2rem;
}

.contact-links {
  justify-content: flex-start;
  padding-top: 0.35rem;
}

.contact-link {
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(255, 47, 58, 0.42);
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0 3rem;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer > p:first-child {
  font-weight: 800;
}

.footer-links {
  justify-content: center;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(229, 9, 20, 0.12), rgba(5, 5, 5, 0.94)),
    rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(12px);
}

.age-gate.is-hidden {
  display: none;
}

.age-card {
  width: min(100%, 560px);
  padding: clamp(1.35rem, 4vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface-raised), var(--surface));
  box-shadow: var(--shadow);
}

.age-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.age-card-top .label {
  margin: 0;
}

.age-card h1,
.legal-card h1 {
  font-size: clamp(2.3rem, 7vw, 4rem);
}

.age-card p {
  margin: 1rem 0 1.4rem;
}

.legal-shell {
  padding: 2rem 0 4rem;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 1.25rem;
}

.legal-card {
  padding: clamp(1.35rem, 4vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface-raised), var(--surface));
  box-shadow: var(--shadow);
}

.legal-card h2 {
  margin: 2rem 0 0.6rem;
  font-size: 1.35rem;
}

.legal-card ul {
  padding-left: 1.1rem;
}

@media (max-width: 980px) {
  .hero,
  .section-head,
  .split-section,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 0.85rem;
    padding: 0.85rem 0;
  }

  .site-nav {
    grid-column: 1 / -1;
    order: 3;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 0.25rem;
  }

  .site-nav,
  .footer-links {
    justify-content: flex-start;
  }

  .header-actions {
    justify-content: flex-end;
  }

  .hero {
    min-height: auto;
    padding-top: clamp(2rem, 8vw, 4rem);
  }

  .section-head .label,
  .section-head .schedule-badge,
  .section-head h2,
  .section-head p:not(.label) {
    grid-column: auto;
  }

  .schedule-badge {
    justify-self: start;
  }

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

@media (max-width: 640px) {
  :root {
    --max-width: min(1180px, calc(100% - 1.25rem));
  }

  .site-header {
    min-height: auto;
  }

  .header-actions {
    gap: 0.45rem;
  }

  .header-actions .language-select {
    width: 4.65rem;
  }

  .hero-media,
  .stats,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .primary-thumb {
    grid-row: auto;
  }

  .primary-thumb img,
  .hero-thumb:not(.primary-thumb) {
    min-height: auto;
  }

  .hero-actions,
  .age-actions {
    align-items: stretch;
  }

  .hero-actions .button,
  .age-actions .button {
    flex: 1 1 100%;
  }

  .video-info {
    align-items: flex-start;
    flex-direction: column;
  }

  .video-info a {
    white-space: normal;
  }

  .site-footer {
    padding-bottom: 2rem;
  }
}
