@font-face {
  font-family: "Generic";
  src: url("./Generic-G20-FR-Classic-DEMO.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

:root {
  --bg: #000000;
  --fg: #ffffff;
  --max-width: 1400px;
  --header-pad-y: 26px;
  --header-pad-x: 32px;
  --footer-pad-y: 56px;
  --footer-pad-x: 24px;
  --nav-size: 1.05rem;
  --title-size: clamp(1.7rem, 2.5vw, 2.6rem);
  --footer-heading-size: 1rem;
  --button-text-size: 0.95rem;
  --icon-size: 25px;
  --footer-icon-size: 17px;
}

* {
  box-sizing: border-box;
}
vv
html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--fg);
  font-family: "Generic", sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

.site-shell {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: var(--bg);
  background-image: url("./main_bg.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;

  min-height: calc(100vh + 200px);
}

.header-bar {
  width: 100%;
  background: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--header-pad-y) var(--header-pad-x);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 24px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.header-left {
  justify-content: flex-start;
}

.header-nav a,
.footer-meta,
.footer-meta a {
  font-size: inherit;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.video-section {
  width: 100%;
  background: #3a573c;
  padding: 64px 0;
}

.video-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 32px;
}

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 640px) {
  .video-section {
    padding: 44px 0;
  }

  .video-inner {
    padding: 0 18px;
  }
}
.site-title-wrap {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.site-title {
  font-size: var(--title-size);
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}

.shows-section {
  width: 100%;
  background: #34355e;
  color: #ffffff;
  padding: 64px 0;
}

.shows-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 32px;
}

.shows-heading {
  margin: 0 0 32px;
  font-size: 1.4rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

/* Helps the embedded widget feel more native */
.shows-inner .bit-widget-container {
  font-family: "Generic", sans-serif !important;
}

.shows-inner .bit-widget-container * {
  box-sizing: border-box;
}

@media (max-width: 640px) {
  .shows-section {
    padding: 44px 0;
  }

  .shows-inner {
    padding: 0 18px;
  }

  .shows-heading {
    font-size: 1.1rem;
    margin-bottom: 24px;
  }
}

.header-socials,
.footer-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

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

.header-socials a,
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--fg);
}

.header-socials svg,
.footer-socials svg {
  fill: currentColor;
  display: block;
}

.header-socials svg {
  width: var(--icon-size);
  height: var(--icon-size);
}

.footer-socials svg {
  width: var(--footer-icon-size);
  height: var(--footer-icon-size);
}

.page-content {
  flex: 1;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--header-pad-x) 80px;

  min-height: 80vh;
}

.site-footer {
  background: var(--bg);
  color: var(--fg);
  text-align: center;
  padding: var(--footer-pad-y) var(--footer-pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-heading {
  margin: 0;
  font-size: var(--footer-heading-size);
  font-weight: normal;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.subscribe-button {
  background: #ffffff;
  color: #000000;
  padding: 16px 34px;
  font-size: var(--button-text-size);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-meta {
  margin: 0;
  text-align: center;
  line-height: 1.4;
  font-size: 0.75rem;
}

.footer-meta a {
  color: inherit;
}

.legal-page {
  max-width: 700px;
  margin: 0 auto;
  padding-top: 60px;
}

.legal-page h1 {
  margin-bottom: 24px;
  font-size: 1.3rem;
  text-transform: uppercase;
}

.legal-page p {
  margin-bottom: 18px;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* LEGAL PAGE OVERRIDE */
.legal-body .site-shell {
  background-image: none;
  background-color: #000;
}

/* LEGAL CONTENT */
.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding-top: 80px;
}

.legal-page h1 {
  margin-bottom: 16px;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.legal-date {
  margin-bottom: 32px;
  font-size: 0.75rem;
  opacity: 0.6;
}

.legal-page p {
  margin-bottom: 18px;
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr;
    row-gap: 18px;
    justify-items: center;
    text-align: center;
  }

  .header-left,
  .header-socials {
    justify-content: center;
    flex-wrap: wrap;
  }

  .site-title {
    white-space: normal;
  }
}

@media (max-width: 750px) {
  :root {
    --header-pad-x: 18px;
    --header-pad-y: 20px;
    --footer-pad-y: 44px;
    --nav-size: 0.82rem;
    --title-size: 1.8rem;
  }

  .header-nav {
    gap: 12px;
  }

  .header-socials,
  .footer-socials {
    gap: 12px;
  }

  .subscribe-button {
    padding: 14px 28px;
  }

  .site-header {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--header-pad-y) var(--header-pad-x);
  }
}
