@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600;700;800;900&family=Roboto:wght@400;500;700&display=swap');

:root {
  --bg: #121212;
  --panel: #1e1e1e;
  --panel-2: #181b1d;
  --red: #e63946;
  --red-bright: #ff5260;
  --blue: #00b4d8;
  --white: #f7f7f7;
  --muted: #a9b0b5;
  --line: rgba(255,255,255,.12);
  --display: Orbitron, Impact, sans-serif;
  --body: Roboto, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px),
    var(--bg);
  background-size: 48px 48px;
  color: var(--white);
  font-family: var(--body);
  line-height: 1.6;
}
a { color: inherit; }
img { display: block; width: 100%; }
.skip-link { position: fixed; z-index: 100; top: -100px; left: 1rem; padding: .8rem 1rem; background: var(--red); color: #fff; }
.skip-link:focus { top: 1rem; }

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(#080a0bea, #080a0b88);
}
.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 2px solid var(--red);
  box-shadow: inset 0 0 14px #e6394638, 0 0 18px #e6394626;
  color: #fff;
  font: 800 1rem var(--display);
  transform: skew(-6deg);
}
.brand strong { display: block; font: 800 1rem var(--display); letter-spacing: .04em; text-transform: uppercase; }
.brand small { display: block; color: var(--blue); font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
nav { display: flex; align-items: center; gap: 1.25rem; }
nav a { color: #d8dde0; font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
nav a:hover { color: var(--blue); }
.nav-cta { padding: .62rem .9rem; border: 1px solid var(--red); background: #e639461b; }
.menu-toggle { display: none; border: 1px solid var(--line); background: #111; color: #fff; padding: .65rem .8rem; font: 700 .72rem var(--display); text-transform: uppercase; }

.hero { position: relative; display: flex; min-height: min(920px, 100svh); align-items: center; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero-art { position: absolute; inset: 0; background: url("/assets/channel-hero-3440x1440.png") center/cover no-repeat; filter: saturate(.9) contrast(1.07); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #080a0bf7 0%, #080a0bdc 32%, #080a0b48 70%, #080a0b80),
    linear-gradient(0deg, #080a0bde, transparent 42%),
    repeating-linear-gradient(0deg, #ffffff08 0, #ffffff08 1px, transparent 1px, transparent 4px);
}
.hero-content { position: relative; z-index: 2; width: min(760px, 88vw); margin-left: clamp(1.1rem, 7vw, 8rem); padding: 8rem 0 6rem; }
.kicker, .section-label, .signal { margin: 0 0 1rem; color: var(--blue); font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.kicker span { display: inline-block; width: 8px; height: 8px; margin-right: .6rem; border-radius: 50%; background: #72e687; box-shadow: 0 0 12px #72e687; }
h1, h2, h3 { font-family: var(--display); text-transform: uppercase; }
h1 { margin: 0; font-size: clamp(3.3rem, 7.8vw, 7.7rem); line-height: .93; letter-spacing: -.04em; text-shadow: 0 3px 35px #000; }
h1 em { color: var(--red-bright); font-style: normal; }
.hero-content > p:not(.kicker) { max-width: 650px; margin: 1.6rem 0 2rem; color: #d0d5d8; font-size: clamp(1rem, 1.5vw, 1.25rem); }
.button-row { display: flex; flex-wrap: wrap; gap: .75rem; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: .75rem 1.1rem;
  border: 1px solid #ffffff4a;
  color: #fff;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-decoration: none;
  text-transform: uppercase;
  transition: .2s ease;
}
.button:hover { transform: translateY(-2px); border-color: var(--blue); color: #fff; box-shadow: 0 8px 25px #00b4d81f; }
.button.primary { border-color: var(--red); background: var(--red); }
.button.primary:hover { border-color: var(--red-bright); background: var(--red-bright); }
.button.ghost { border-color: var(--blue); }
.hero-strip { position: absolute; z-index: 2; right: 2rem; bottom: 1.7rem; display: flex; gap: .5rem; }
.hero-strip span { padding: .4rem .6rem; border: 1px solid var(--line); background: #080a0bbd; color: #bdc4c8; font-size: .63rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.section { padding: clamp(4.5rem, 8vw, 8rem) clamp(1.1rem, 7vw, 8rem); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2.5rem; }
h2 { margin: 0; font-size: clamp(2.4rem, 5vw, 5rem); line-height: .95; letter-spacing: -.035em; }
h3 { margin: 0; line-height: 1.05; }
.text-link { color: var(--blue); font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }

.featured { background: #101213; border-bottom: 1px solid var(--line); }
.featured-grid { display: grid; grid-template-columns: 1.5fr .7fr; border: 1px solid var(--line); background: var(--panel); }
.video-frame { position: relative; min-height: 440px; overflow: hidden; }
.video-frame img { height: 100%; object-fit: cover; filter: saturate(.85); transition: .4s ease; }
.video-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 60%, #1e1e1e); }
.video-frame:hover img { transform: scale(1.02); filter: saturate(1.1); }
.play-button { position: absolute; z-index: 2; left: 50%; top: 50%; display: grid; place-items: center; width: 76px; height: 76px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 12px #e639462b; transform: translate(-50%, -50%); }
.episode-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(2rem, 4vw, 4rem); }
.episode-copy h3 { font-size: clamp(2rem, 3.3vw, 3.8rem); }
.episode-copy p:not(.signal) { color: var(--muted); }
.video-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1rem; }
.video-card { overflow: hidden; border: 1px solid var(--line); background: var(--panel); text-decoration: none; transition: .2s ease; }
.video-card:hover { border-color: var(--blue); transform: translateY(-3px); }
.video-card img { aspect-ratio: 16/9; object-fit: cover; }
.video-card span { display: block; padding: 1.1rem; }
.video-card small { display: block; margin-bottom: .35rem; color: var(--blue); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.video-card strong { display: block; font-family: var(--display); line-height: 1.2; text-transform: uppercase; }

.series-section { background: radial-gradient(circle at 50% 0%, #00b4d814, transparent 35%), var(--bg); }
.series-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.series-card { position: relative; min-height: 530px; overflow: hidden; border: 1px solid var(--line); background: var(--panel); }
.series-card img { position: absolute; inset: 0; height: 100%; object-fit: cover; filter: saturate(.85); transition: .5s ease; }
.series-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, #090b0cf8 3%, #090b0cb8 40%, transparent 75%); }
.series-card:hover img { transform: scale(1.035); filter: saturate(1.05); }
.series-card > div { position: absolute; z-index: 2; inset: auto 0 0; padding: 1.6rem; }
.series-card p { margin: 0 0 .5rem; color: var(--blue); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.series-card h3 { font-size: clamp(1.5rem, 2.3vw, 2.6rem); }
.series-card span { display: block; margin: .7rem 0 1rem; color: #c3c8cb; }
.series-card a { color: var(--red-bright); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }

.split-section { display: grid; grid-template-columns: 1fr 1fr; border-block: 1px solid var(--line); }
.stream-panel, .captain-panel { padding: clamp(4rem, 7vw, 7rem); }
.stream-panel { background: var(--red); }
.stream-panel .section-label { color: #25060a; }
.stream-panel .button.primary { border-color: #fff; background: #fff; color: #111; }
.captain-panel { background: radial-gradient(circle at 100% 0%, #00b4d824, transparent 45%), var(--panel); }
.captain-panel p { max-width: 670px; color: #c7cccf; }
.captain-panel .big-copy { color: #fff; font: 700 1.4rem var(--display); text-transform: uppercase; }
.schedule { margin: 2rem 0; border-top: 1px solid #ffffff45; }
.schedule span { display: flex; justify-content: space-between; gap: 1rem; padding: .8rem 0; border-bottom: 1px solid #ffffff45; }
.schedule b { font-family: var(--display); text-transform: uppercase; }
.schedule em { font-style: normal; }
.fine-print { font-size: .75rem; opacity: .8; }

.community { background: #101213; }
.community-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.community-grid article { min-height: 280px; padding: 1.7rem; border: 1px solid var(--line); background: var(--panel); }
.community-grid article > span { color: var(--red-bright); font: 700 .8rem var(--display); }
.community-grid h3 { margin-top: 3rem; font-size: 1.4rem; }
.community-grid p { color: var(--muted); }
.community-grid small { color: #747c81; text-transform: uppercase; }
.community-grid a { color: var(--blue); font-size: .72rem; font-weight: 700; text-decoration: none; text-transform: uppercase; }
.music-section { display: flex; align-items: center; justify-content: space-between; gap: 3rem; padding: clamp(4rem, 7vw, 7rem) clamp(1.1rem, 7vw, 8rem); background: linear-gradient(110deg, #06171b, #121212 55%, #26080c); border-block: 1px solid var(--line); }
.music-section > div { max-width: 850px; }
.music-section p:not(.section-label) { max-width: 680px; color: var(--muted); }

.shorts { background: var(--bg); }
.short-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.short-grid a { display: flex; min-height: 380px; flex-direction: column; justify-content: end; padding: 1.3rem; border: 1px solid var(--line); background: linear-gradient(180deg, #00b4d80b, #e6394627), var(--panel); text-decoration: none; transition: .2s ease; }
.short-grid a:nth-child(even) { background: linear-gradient(180deg, #e639460b, #00b4d827), var(--panel); }
.short-grid a:hover { border-color: var(--red); transform: translateY(-4px); }
.short-grid span { margin-bottom: auto; color: var(--blue); font: 700 .72rem var(--display); }
.short-grid strong { font: 700 1.25rem var(--display); text-transform: uppercase; }
.short-grid small { color: var(--muted); text-transform: uppercase; }

.final-cta { padding: clamp(5rem, 10vw, 10rem) clamp(1.1rem, 7vw, 8rem); text-align: center; background: linear-gradient(#090b0ce8, #090b0cf7), url("/assets/channel-hero-3440x1440.png") center/cover; }
.final-cta h2 { margin-inline: auto; }
.final-cta > p:not(.section-label) { max-width: 650px; margin: 1.2rem auto 2rem; color: #c5cace; }
.final-cta .button-row { justify-content: center; }
footer { display: grid; grid-template-columns: 1fr auto; gap: 1rem 3rem; align-items: center; padding: 2rem clamp(1.1rem, 4vw, 4rem); border-top: 1px solid var(--line); background: #090a0b; }
footer strong { display: block; font-family: var(--display); }
footer span, footer small { color: #737a7e; font-size: .72rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; font-size: .72rem; text-transform: uppercase; }
.footer-links a { color: var(--blue); text-decoration: none; }
footer > small { grid-column: 1 / -1; }

@media (max-width: 980px) {
  nav { display: none; position: absolute; top: 100%; right: 1rem; flex-direction: column; align-items: stretch; min-width: 220px; padding: 1rem; border: 1px solid var(--line); background: #0b0d0ff5; }
  nav.open { display: flex; }
  .menu-toggle { display: block; }
  .hero-strip { display: none; }
  .featured-grid, .split-section { grid-template-columns: 1fr; }
  .video-frame { min-height: 390px; }
  .video-frame::after { background: linear-gradient(0deg, #1e1e1e, transparent 35%); }
  .series-grid { grid-template-columns: 1fr; }
  .series-card { min-height: 460px; }
  .community-grid { grid-template-columns: 1fr; }
  .short-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .brand small { display: none; }
  .hero { min-height: 780px; }
  .hero-art { background-image: url("/assets/channel-hero.png"); background-position: 63% center; }
  .hero-overlay { background: linear-gradient(90deg, #080a0bf2, #080a0b85), linear-gradient(0deg, #080a0be8, transparent 55%); }
  .hero-content { width: calc(100vw - 2.2rem); max-width: calc(100vw - 2.2rem); margin-left: 1.1rem; padding: 7rem 1rem 5rem 0; }
  h1 { font-size: clamp(2.65rem, 11.5vw, 4rem); letter-spacing: -.055em; }
  .hero-content > p:not(.kicker) { width: min(310px, calc(100vw - 3.2rem)); max-width: 100%; overflow-wrap: anywhere; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .video-cards { grid-template-columns: 1fr; }
  .video-frame { min-height: 260px; }
  .music-section { align-items: flex-start; flex-direction: column; }
  .short-grid { grid-template-columns: 1fr 1fr; }
  .short-grid a { min-height: 270px; }
  footer { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
