:root {
  --bg: #050605;
  --panel: #0d0f0d;
  --panel-2: #141712;
  --ink: #f4f1e8;
  --muted: #aeb5a3;
  --acid: #d9ff17;
  --acid-soft: #a9c913;
  --line: rgba(244, 241, 232, 0.16);
  --line-acid: rgba(217, 255, 23, 0.5);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 28px),
    linear-gradient(135deg, #050605 0%, #090b08 46%, #050605 100%);
  color: var(--ink);
  font-family: Bahnschrift, "Arial Narrow", Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.42;
  background:
    repeating-linear-gradient(132deg, transparent 0 118px, rgba(217, 255, 23, 0.08) 118px 120px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 44%, rgba(0, 0, 0, 0.76));
}

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

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 28px;
  background: rgba(5, 6, 5, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line-acid);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.34);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 154px;
  min-height: 52px;
  text-decoration: none;
}

.brand-logo {
  width: 152px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(217, 255, 23, 0.24));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  min-height: 42px;
  padding: 10px 14px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--acid);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-acid);
  border-radius: 4px;
  background: rgba(217, 255, 23, 0.08);
  padding: 11px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--acid);
  margin: 5px 0;
}

.hero {
  position: relative;
  min-height: 80svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 124px 0 72px;
}

.page-main {
  padding-top: 76px;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("assets/mcfury-live-site-banner.jpg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  filter: saturate(0.96) brightness(0.94) contrast(1.05);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 6, 5, 0.92) 0%, rgba(5, 6, 5, 0.72) 46%, rgba(5, 6, 5, 0.16) 72%, rgba(5, 6, 5, 0.08) 100%),
    linear-gradient(0deg, rgba(5, 6, 5, 0.86) 0%, rgba(5, 6, 5, 0.08) 58%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-right: auto;
  margin-left: max(18px, calc((100vw - var(--max)) / 2));
}

.hero-logo {
  width: min(610px, 100%);
  margin: 0 0 24px;
  filter: drop-shadow(0 0 20px rgba(217, 255, 23, 0.32));
}

.hero h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.eyebrow,
.label {
  margin: 0 0 12px;
  color: var(--acid);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

h2,
h3,
p {
  margin-top: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: Impact, Haettenschweiler, "Arial Narrow", sans-serif;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  font-family: Impact, Haettenschweiler, "Arial Narrow", sans-serif;
  font-size: 1.7rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 28px;
  color: #e7e1d4;
  font-size: 1.35rem;
}

.hero-actions,
.music-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--acid);
  color: #050605;
  box-shadow: 0 0 26px rgba(217, 255, 23, 0.16);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #f0ff5e;
}

.btn-secondary,
.btn-dark {
  background: rgba(244, 241, 232, 0.08);
  border-color: var(--line);
  color: var(--ink);
}

.btn-secondary:hover,
.btn-secondary:focus-visible,
.btn-dark:hover,
.btn-dark:focus-visible {
  border-color: var(--acid);
  color: var(--acid);
}

.section {
  padding: 86px 0;
}

.intro-strip {
  padding: 0;
  border-top: 1px solid var(--line-acid);
  border-bottom: 1px solid var(--line-acid);
  background: rgba(9, 11, 8, 0.96);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.strip-grid > div {
  min-height: 104px;
  padding: 24px 28px;
  border-left: 1px solid var(--line);
}

.strip-grid > div:first-child {
  border-left: 0;
}

.strip-grid strong {
  display: block;
  font-family: Impact, Haettenschweiler, "Arial Narrow", sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 36px;
}

.section-heading p:not(.eyebrow),
.video-copy p,
.music-copy p,
.about-copy p,
.video-card p {
  color: var(--muted);
}

.featured-video {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 28px;
}

.featured-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 320px;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid var(--line);
  border-radius: 6px;
  text-decoration: none;
}

.featured-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.74) contrast(1.14);
  transition: transform 240ms ease;
}

.featured-thumb:hover img,
.featured-thumb:focus-visible img {
  transform: scale(1.04);
}

.play-pill {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 10px 14px;
  background: var(--acid);
  color: #050605;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.video-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.text-link {
  color: var(--acid);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--ink);
}

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

.video-card,
.link-card {
  text-decoration: none;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.video-card {
  display: block;
  padding-bottom: 18px;
  transition: transform 160ms ease, border-color 160ms ease;
}

.video-card:hover,
.video-card:focus-visible,
.link-card:hover,
.link-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--acid);
}

.video-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.12);
  border-bottom: 1px solid var(--line);
}

.video-tag {
  display: inline-block;
  margin: 16px 18px 10px;
  padding: 5px 8px;
  background: var(--acid);
  color: #050605;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.video-card h3,
.video-card p {
  padding: 0 18px;
}

.video-card p {
  margin-bottom: 0;
}

.music-section {
  background:
    repeating-linear-gradient(132deg, transparent 0 118px, rgba(5, 6, 5, 0.1) 118px 120px),
    var(--acid);
  color: #050605;
}

.music-section .eyebrow,
.music-section .text-link {
  color: #050605;
}

.music-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 38px;
  align-items: center;
}

.music-copy p {
  color: rgba(5, 6, 5, 0.78);
  max-width: 620px;
}

.music-section .btn-primary {
  background: #050605;
  color: var(--acid);
  box-shadow: none;
}

.music-section .btn-dark {
  background: rgba(5, 6, 5, 0.08);
  border-color: rgba(5, 6, 5, 0.26);
  color: #050605;
}

.stream-panel {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border-radius: 6px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 6, 5, 0.16), rgba(5, 6, 5, 0.92)),
    url("assets/mcfury-og-image.jpg") center / cover;
  color: var(--ink);
  border: 1px solid rgba(5, 6, 5, 0.45);
}

.stream-panel .platform {
  margin-bottom: 12px;
  color: var(--acid);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.stream-panel p {
  max-width: 520px;
  color: #d9d3c8;
}

.about-section {
  background: rgba(5, 6, 5, 0.84);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}

.about-copy {
  font-size: 1.1rem;
}

.links-section {
  background: var(--panel-2);
}

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

.link-card {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  transition: transform 160ms ease, border-color 160ms ease;
}

.link-card span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.link-card strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow", sans-serif;
  font-size: 1.5rem;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #030403;
}

.video-page-hero {
  padding: 76px 0 48px;
}

.booking-hero {
  padding: 82px 0 54px;
}

.music-page-hero {
  padding: 82px 0 54px;
}

.about-page-hero {
  padding: 82px 0 54px;
}

.video-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.72fr);
  gap: 30px;
  align-items: center;
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: stretch;
}

.music-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: stretch;
}

.about-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: stretch;
}

.video-player {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.34);
}

.video-player iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-page-copy h1 {
  margin: 0 0 18px;
  font-family: Impact, Haettenschweiler, "Arial Narrow", sans-serif;
  font-size: 4.6rem;
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.booking-copy h1 {
  margin: 0 0 18px;
  font-family: Impact, Haettenschweiler, "Arial Narrow", sans-serif;
  font-size: 5rem;
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.music-page-copy h1 {
  margin: 0 0 18px;
  font-family: Impact, Haettenschweiler, "Arial Narrow", sans-serif;
  font-size: 5rem;
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-page-copy h1 {
  margin: 0 0 18px;
  font-family: Impact, Haettenschweiler, "Arial Narrow", sans-serif;
  font-size: 5rem;
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.video-page-copy p,
.booking-copy p,
.music-page-copy p,
.about-page-copy p {
  max-width: 100%;
  color: var(--muted);
  font-size: 1.08rem;
  overflow-wrap: anywhere;
}

.booking-panel {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 6, 5, 0.08), rgba(5, 6, 5, 0.94)),
    url("assets/mcfury-og-image.jpg") center / cover;
}

.booking-panel .platform {
  margin-bottom: 12px;
  color: var(--acid);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-panel h2 {
  margin-bottom: 12px;
  font-size: 3.1rem;
}

.booking-panel p {
  color: #d9d3c8;
}

.booking-form-section {
  padding-top: 0;
}

.booking-form-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.booking-form {
  display: grid;
  gap: 18px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(244, 241, 232, 0.06);
  color: var(--ink);
  font: inherit;
}

.booking-form textarea {
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 2px solid var(--acid);
  outline-offset: 2px;
}

.form-hidden {
  display: none;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.music-links-panel {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 6, 5, 0.08), rgba(5, 6, 5, 0.94)),
    url("assets/mcfury-og-image.jpg") center / cover;
}

.music-links-panel .platform {
  margin-bottom: 12px;
  color: var(--acid);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.music-links-panel h2 {
  margin-bottom: 12px;
  font-size: 3.1rem;
}

.music-links-panel p {
  color: #d9d3c8;
}

.music-platform-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.about-profile-panel {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 6, 5, 0.08), rgba(5, 6, 5, 0.94)),
    url("assets/mcfury-og-image.jpg") center / cover;
}

.about-profile-panel .platform {
  margin-bottom: 12px;
  color: var(--acid);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-profile-panel h2 {
  margin-bottom: 12px;
  font-size: 3.1rem;
}

.about-profile-panel p {
  color: #d9d3c8;
}

.video-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.video-detail-section {
  padding-top: 0;
}

.video-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.video-detail {
  min-height: 126px;
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: inherit;
  text-decoration: none;
}

.video-detail span {
  display: block;
  margin-bottom: 10px;
  color: var(--acid);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.video-detail strong {
  display: block;
  font-family: Impact, Haettenschweiler, "Arial Narrow", sans-serif;
  font-size: 1.7rem;
  line-height: 1;
  text-transform: uppercase;
}

.footer-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-inner span {
  font-weight: 900;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
}

.footer-inner a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 800;
}

.footer-inner a:hover {
  color: var(--ink);
}

.footer-top {
  margin-left: auto;
}

@media (max-width: 920px) {
  h2 {
    font-size: 3.4rem;
  }

  .featured-video,
  .music-grid,
  .about-grid,
  .video-page-grid,
  .booking-grid,
  .booking-form-grid,
  .music-page-grid,
  .about-page-grid {
    grid-template-columns: 1fr;
  }

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

  .video-copy {
    padding: 22px;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
    padding: 0 18px;
  }

  .brand {
    width: 136px;
  }

  .brand-logo {
    width: 134px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 18px 18px;
    background: rgba(5, 6, 5, 0.97);
    border-bottom: 1px solid var(--line-acid);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-top: 1px solid var(--line);
  }

  .hero {
    min-height: 76svh;
    padding: 98px 0 50px;
  }

  .hero-bg {
    background-position: 48% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 6, 5, 0.9) 0%, rgba(5, 6, 5, 0.64) 100%),
      linear-gradient(0deg, rgba(5, 6, 5, 0.84) 0%, rgba(5, 6, 5, 0.12) 56%);
  }

  .hero-logo {
    max-width: 62%;
    margin: 22px 0 14px;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .strip-grid,
  .video-grid,
  .link-grid,
  .video-detail-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .strip-grid > div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .strip-grid > div:first-child {
    border-top: 0;
  }

  .section {
    padding: 64px 0;
  }

  h2 {
    font-size: 2.8rem;
  }

  .video-page-copy h1 {
    font-size: 3rem;
  }

  .booking-copy h1 {
    font-size: 3.4rem;
  }

  .music-page-copy h1 {
    font-size: 3.4rem;
  }

  .about-page-copy h1 {
    font-size: 3.4rem;
  }

  .booking-panel h2,
  .music-links-panel h2,
  .about-profile-panel h2 {
    font-size: 2.2rem;
  }

  .featured-thumb {
    min-height: auto;
  }

  .stream-panel {
    min-height: 300px;
  }

  .footer-inner {
    min-height: auto;
    padding: 24px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    justify-content: flex-start;
    gap: 10px 18px;
    width: 100%;
    max-width: 100%;
  }

  .footer-top {
    margin-left: 0;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .hero-actions,
  .music-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: 2.35rem;
  }

  .strip-grid strong,
  .link-card strong {
    font-size: 1.4rem;
  }
}
