/* =========================================================
   VIZZYBEES V4 — futuristic static Cloudflare page
   ========================================================= */

:root {
  --bg: #02070b;
  --bg-2: #061018;
  --panel: rgba(7, 18, 28, 0.88);
  --panel-solid: #08141e;
  --panel-lighter: #0d1b27;
  --text: #f2f8fc;
  --muted: #8ea5b6;
  --cyan: #49e7ff;
  --cyan-2: #0fa7e8;
  --cyan-soft: rgba(73, 231, 255, 0.14);
  --gold: #f4bc3d;
  --gold-2: #d98a13;
  --gold-soft: rgba(244, 188, 61, 0.12);
  --line: rgba(73, 231, 255, 0.20);
  --line-strong: rgba(73, 231, 255, 0.46);
  --white-line: rgba(255,255,255,.07);
  --radius-lg: 28px;
  --radius-md: 18px;
  --max: 1460px;
  --carousel-gap: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 73% 9%, rgba(0, 160, 255, .11), transparent 30rem),
    radial-gradient(circle at 18% 30%, rgba(0, 238, 255, .07), transparent 32rem),
    radial-gradient(circle at 85% 75%, rgba(228, 152, 22, .055), transparent 32rem),
    linear-gradient(180deg, #02070b 0%, #04101a 45%, #02070b 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -5;
  pointer-events: none;
  background:
    linear-gradient(rgba(73,231,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73,231,255,.022) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  opacity: .18;
  background-image:
    radial-gradient(circle at 15% 24%, white 0 1px, transparent 1.4px),
    radial-gradient(circle at 75% 11%, var(--cyan) 0 1px, transparent 1.5px),
    radial-gradient(circle at 43% 78%, white 0 1px, transparent 1.5px),
    radial-gradient(circle at 88% 67%, var(--gold) 0 1px, transparent 1.5px);
  background-size: 220px 220px, 340px 340px, 270px 270px, 390px 390px;
}

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.section-shell {
  width: min(calc(100% - 42px), var(--max));
  margin-inline: auto;
}

.ambient-grid {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 0 48%, rgba(73,231,255,.025) 48.2%, transparent 48.6%),
    linear-gradient(70deg, transparent 0 48%, rgba(73,231,255,.018) 48.2%, transparent 48.6%);
  background-size: 260px 260px;
  opacity: .5;
}

.cursor-light {
  position: fixed;
  z-index: -2;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  pointer-events: none;
  left: 50%;
  top: 30%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 196, 255, .07), transparent 68%);
  filter: blur(10px);
  transition: opacity .25s ease;
}

/* ---------- HEADER ---------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(73,231,255,.10);
  background: rgba(2, 7, 11, .78);
  backdrop-filter: blur(22px);
}

.topbar::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(73,231,255,.45), transparent);
  opacity: .65;
}

.topbar-inner {
  width: min(calc(100% - 42px), var(--max));
  min-height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 47px;
  height: 47px;
  object-fit: contain;
  filter: drop-shadow(0 0 11px rgba(73,231,255,.35));
}

.brand div {
  display: grid;
  line-height: 1;
}

.brand strong {
  letter-spacing: .14em;
  font-size: .93rem;
}

.brand span {
  margin-top: 8px;
  color: var(--muted);
  font-size: .57rem;
  font-weight: 800;
  letter-spacing: .18em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  position: relative;
  padding: 12px 15px;
  color: #b9cad7;
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.main-nav a:not(.nav-youtube)::after {
  content: "";
  position: absolute;
  height: 2px;
  left: 50%;
  right: 50%;
  bottom: 5px;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  transition: left .2s ease, right .2s ease;
}

.main-nav a:hover {
  color: white;
}

.main-nav a:hover::after {
  left: 16px;
  right: 16px;
}

.nav-youtube {
  margin-left: 12px;
  border: 1px solid rgba(73,231,255,.48);
  border-radius: 8px;
  color: white !important;
  background: linear-gradient(180deg, rgba(26,164,222,.18), rgba(5,53,77,.25));
  box-shadow: inset 0 0 20px rgba(73,231,255,.05), 0 0 18px rgba(0,160,255,.08);
}

.nav-youtube:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 24px rgba(73,231,255,.16);
}

.mobile-menu-button {
  display: none;
  width: 46px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255,255,255,.025);
}

.mobile-menu-button > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--cyan);
}

/* ---------- HERO ---------- */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(490px, 1.08fr);
  gap: clamp(30px, 5vw, 80px);
  min-height: 760px;
  align-items: center;
  padding-block: 64px 70px;
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.hero-kicker,
.section-label {
  color: var(--cyan);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 13px;
}

.kicker-line {
  width: 34px;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 13px rgba(73,231,255,.7);
}

.hero h1 {
  margin: 24px 0 24px;
  max-width: 780px;
  line-height: .97;
  letter-spacing: -.055em;
}

.hero h1 span,
.hero h1 strong {
  display: block;
}

.hero h1 span {
  font-size: clamp(3.4rem, 6.3vw, 6.8rem);
  font-weight: 780;
  color: #ecf7ff;
  text-shadow: 0 4px 30px rgba(0,0,0,.6);
}

.hero h1 strong {
  margin-top: 7px;
  font-size: clamp(3.35rem, 6vw, 6.4rem);
  font-weight: 850;
  color: #d7f8ff;
  background: linear-gradient(180deg, #f1fdff 4%, #64e7ff 50%, #21a8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(42,183,255,.15));
}

.hero-text {
  max-width: 650px;
  margin: 0;
  color: #afc1cf;
  font-size: clamp(1rem, 1.7vw, 1.16rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.tech-button {
  position: relative;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  overflow: hidden;
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .045em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.tech-button::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-110%);
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.18), transparent);
  transition: transform .5s ease;
}

.tech-button:hover::before {
  transform: translateX(110%);
}

.tech-button:hover {
  transform: translateY(-2px);
}

.tech-button-primary {
  border: 1px solid var(--cyan);
  color: #061015;
  background: linear-gradient(135deg, #6ef4ff, #25c7fa);
  box-shadow:
    0 0 0 1px rgba(73,231,255,.17),
    0 0 22px rgba(73,231,255,.22),
    inset 0 0 20px rgba(255,255,255,.18);
}

.tech-button-gold {
  border: 1px solid rgba(244,188,61,.65);
  color: #ffe2a0;
  background: linear-gradient(180deg, rgba(93,57,8,.37), rgba(26,20,10,.58));
  box-shadow: inset 0 0 20px rgba(244,188,61,.06);
}

.tech-button-gold:hover {
  border-color: var(--gold);
  box-shadow: 0 0 22px rgba(244,188,61,.12);
}

.button-icon {
  font-size: .9rem;
}

.hero-tags {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 42px;
  border: 1px solid var(--white-line);
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(8,22,33,.72), rgba(3,10,15,.72));
}

.hero-tags div {
  position: relative;
  min-width: 0;
  padding: 18px 17px 16px;
  border-right: 1px solid var(--white-line);
}

.hero-tags div:last-child {
  border-right: 0;
}

.hero-tags span {
  display: block;
  color: var(--gold);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.hero-tags strong {
  display: block;
  margin-top: 2px;
  font-size: .92rem;
  letter-spacing: .08em;
}

.hero-tags small {
  display: block;
  margin-top: 3px;
  overflow: hidden;
  color: #718899;
  font-size: .65rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.hero-visual {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 4% 0 0;
  z-index: -4;
  background:
    linear-gradient(120deg, transparent 0 24%, rgba(73,231,255,.025) 24.2%, transparent 24.5%),
    linear-gradient(60deg, transparent 0 24%, rgba(73,231,255,.02) 24.2%, transparent 24.5%);
  background-size: 110px 110px;
  mask-image: radial-gradient(circle, black, transparent 70%);
}

.hero-halo {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(73,231,255,.13);
  pointer-events: none;
}

.halo-a {
  width: 610px;
  height: 610px;
  box-shadow: inset 0 0 80px rgba(73,231,255,.035);
}

.halo-b {
  width: 520px;
  height: 520px;
  border-style: dashed;
  opacity: .55;
  animation: halo-spin 42s linear infinite;
}

.halo-c {
  width: 690px;
  height: 330px;
  transform: rotateX(72deg);
  border-color: rgba(244,188,61,.12);
  box-shadow: 0 0 40px rgba(73,231,255,.04);
}

@keyframes halo-spin {
  to { transform: rotate(360deg); }
}

.emblem-stage {
  position: relative;
  z-index: 4;
  width: min(92%, 640px);
  display: grid;
  place-items: center;
  perspective: 1100px;
}

.stage-beam {
  position: absolute;
  width: 62%;
  height: 85%;
  bottom: 6%;
  z-index: -2;
  background: linear-gradient(to top, rgba(43,195,255,.14), rgba(43,195,255,.035) 52%, transparent);
  clip-path: polygon(28% 100%, 72% 100%, 100% 0, 0 0);
  filter: blur(8px);
}

.emblem-float {
  position: relative;
  z-index: 4;
  width: min(100%, 600px);
  animation: emblem-float 5.6s ease-in-out infinite;
  filter:
    drop-shadow(0 24px 35px rgba(0,0,0,.55))
    drop-shadow(0 0 26px rgba(50,211,255,.20));
}

.emblem-float::before {
  content: "";
  position: absolute;
  inset: 8%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44,196,255,.13), transparent 68%);
  filter: blur(25px);
}

.emblem-float img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

@keyframes emblem-float {
  0%,100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}

.stage-platform {
  position: absolute;
  bottom: -3%;
  width: 72%;
  aspect-ratio: 2.6 / 1;
  z-index: 1;
  border: 2px solid rgba(73,231,255,.36);
  border-radius: 50%;
  transform: rotateX(68deg);
  background:
    radial-gradient(ellipse, rgba(73,231,255,.20), transparent 58%),
    repeating-radial-gradient(ellipse, rgba(73,231,255,.14) 0 1px, transparent 2px 15px);
  box-shadow:
    0 0 36px rgba(73,231,255,.18),
    inset 0 0 36px rgba(73,231,255,.10);
}

.stage-platform span {
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(73,231,255,.22);
  border-radius: 50%;
}

.stage-platform span:nth-child(2) { inset: 28%; }
.stage-platform span:nth-child(3) { inset: 41%; border-color: rgba(244,188,61,.28); }

.hud-chip {
  position: absolute;
  z-index: 6;
  min-width: 112px;
  padding: 10px 13px;
  border: 1px solid rgba(73,231,255,.26);
  background: rgba(4,15,23,.78);
  box-shadow: inset 0 0 20px rgba(73,231,255,.035);
  clip-path: polygon(0 0, 88% 0, 100% 28%, 100% 100%, 12% 100%, 0 72%);
}

.hud-chip span,
.hud-chip strong {
  display: block;
}

.hud-chip span {
  color: #6d8597;
  font-size: .55rem;
  letter-spacing: .16em;
}

.hud-chip strong {
  margin-top: 2px;
  color: var(--cyan);
  font-size: .72rem;
  letter-spacing: .12em;
}

.hud-chip-a {
  left: 3%;
  top: 28%;
}

.hud-chip-b {
  right: 1%;
  bottom: 22%;
}

/* ---------- GENERAL SECTION HEADINGS ---------- */

.showcase,
.video-section,
.about-section {
  padding-block: 90px;
  scroll-margin-top: 90px;
}

.section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px;
}

.section-title-row h2,
.about-copy h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -.04em;
}

.title-data {
  display: grid;
  justify-items: end;
  padding-bottom: 5px;
}

.title-data span {
  color: #667f90;
  font-size: .62rem;
  letter-spacing: .18em;
}

.title-data strong {
  margin-top: 3px;
  color: var(--cyan);
  font-size: .72rem;
  letter-spacing: .11em;
}

/* ---------- GLASS PANELS ---------- */

.glass-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(73,231,255,.18);
  background:
    linear-gradient(145deg, rgba(13,29,42,.92), rgba(3,11,18,.94));
  box-shadow:
    0 28px 70px rgba(0,0,0,.33),
    inset 0 1px 0 rgba(255,255,255,.025);
}

.glass-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--cyan), transparent 14%) top left / 90px 1px no-repeat,
    linear-gradient(180deg, var(--cyan), transparent 14%) top left / 1px 90px no-repeat,
    linear-gradient(270deg, var(--cyan), transparent 14%) bottom right / 90px 1px no-repeat,
    linear-gradient(0deg, var(--cyan), transparent 14%) bottom right / 1px 90px no-repeat;
  opacity: .55;
}

/* ---------- FEATURED VIDEO CONSOLE ---------- */

.video-console {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(320px, .72fr);
  gap: 20px;
}

.featured-player {
  border-radius: var(--radius-lg);
}

.panel-heading {
  min-height: 48px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: #a9bbc8;
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .12em;
}

.panel-heading div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.panel-heading > span {
  color: #526b7c;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 11px rgba(73,231,255,.85);
}

.iframe-shell {
  position: relative;
  overflow: hidden;
  background: #000;
}

.iframe-shell::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 36px rgba(0,0,0,.16);
}

.iframe-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.iframe-wide {
  aspect-ratio: 16 / 9;
}

.player-copy {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 18px 20px 21px;
}

.player-copy > span {
  color: var(--gold);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .15em;
}

.player-copy h3 {
  margin: 0;
  font-size: 1rem;
}

.player-copy p {
  grid-column: 2;
  margin: -10px 0 0;
  color: #758b9b;
  font-size: .75rem;
}

.player-copy a {
  grid-row: 1 / span 2;
  grid-column: 3;
  color: var(--cyan);
  font-size: .72rem;
  font-weight: 850;
  text-decoration: none;
}

.quick-players {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  min-width: 0;
}

.mini-player {
  min-width: 0;
  border-radius: var(--radius-md);
}

.iframe-short {
  aspect-ratio: 9 / 16;
  background: #000;
}

.mini-player-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 58px;
  padding: 10px 15px;
  color: #dfeaf1;
  font-size: .72rem;
  font-weight: 800;
  text-decoration: none;
}

.mini-player-link span {
  color: var(--cyan);
  font-size: .9rem;
}

/* ---------- CAROUSEL ---------- */

.carousel-title-row {
  align-items: center;
}

.carousel-controls {
  display: flex;
  gap: 8px;
}

.carousel-controls button {
  width: 47px;
  height: 44px;
  border: 1px solid rgba(73,231,255,.25);
  border-radius: 8px;
  color: #dff9ff;
  background: rgba(8,27,39,.72);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}

.carousel-controls button:hover {
  border-color: var(--cyan);
  background: rgba(73,231,255,.10);
}

.carousel-and-channel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 20px;
}

.carousel-frame {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(73,231,255,.16);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(7,19,29,.82), rgba(3,9,14,.9));
}

.carousel-track {
  display: flex;
  width: max-content;
  padding-block: 18px 10px;
  will-change: transform;
  animation: carousel-loop 74s linear infinite;
}

.carousel-frame:hover .carousel-track,
.carousel-frame:focus-within .carousel-track {
  animation-play-state: paused;
}

.carousel-set {
  display: flex;
  flex: 0 0 auto;
  gap: var(--carousel-gap);
  padding-right: var(--carousel-gap);
}

@keyframes carousel-loop {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-50%,0,0); }
}

.video-card {
  flex: 0 0 clamp(270px, 23vw, 350px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  background: #07131d;
  box-shadow: 0 18px 38px rgba(0,0,0,.24);
}

.video-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #03070a;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.05) brightness(.75);
  transition: transform .35s ease, filter .35s ease;
}

.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(2,9,14,.78), transparent 50%),
    linear-gradient(90deg, rgba(28,201,255,.07), transparent 35%);
  pointer-events: none;
}

.video-card:hover .video-thumb img {
  transform: scale(1.035);
  filter: saturate(1) contrast(1.06) brightness(.92);
}

.thumb-scan {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  top: -5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 10px var(--cyan);
  opacity: 0;
}

.video-card:hover .thumb-scan {
  opacity: .6;
  animation: scan-video 1.7s ease-in-out infinite;
}

@keyframes scan-video {
  0% { top: 3%; }
  100% { top: 97%; }
}

.play-orb {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border: 1px solid rgba(73,231,255,.8);
  border-radius: 50%;
  background: rgba(2,21,31,.72);
  box-shadow:
    0 0 22px rgba(73,231,255,.36),
    inset 0 0 18px rgba(73,231,255,.15);
  transition: transform .22s ease;
}

.video-card:hover .play-orb {
  transform: translate(-50%, -50%) scale(1.08);
}

.play-orb svg {
  width: 23px;
  fill: #d9fbff;
  filter: drop-shadow(0 0 4px var(--cyan));
}

.video-index {
  position: absolute;
  z-index: 4;
  left: 12px;
  bottom: 10px;
  color: var(--gold);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .16em;
}

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

.video-card-copy > span {
  color: var(--cyan);
  font-size: .56rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.video-card-copy h3 {
  min-height: 2.65em;
  margin: 6px 0 9px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #e6f0f6;
  font-size: .84rem;
  line-height: 1.32;
}

.video-card-copy a {
  color: #768e9f;
  font-size: .68rem;
  font-weight: 800;
  text-decoration: none;
}

.video-card-copy a:hover {
  color: var(--cyan);
}

.carousel-bottom {
  min-height: 40px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,.06);
  color: #5c7587;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.carousel-bottom span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-bottom i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

/* ---------- CHANNEL PANEL ---------- */

.channel-panel {
  min-height: 100%;
  padding: 26px 24px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.channel-panel-grid {
  position: absolute;
  inset: 0;
  opacity: .16;
  pointer-events: none;
  background:
    linear-gradient(30deg, transparent 24%, rgba(73,231,255,.08) 25%, rgba(73,231,255,.08) 26%, transparent 27%, transparent 74%, rgba(73,231,255,.08) 75%, rgba(73,231,255,.08) 76%, transparent 77%),
    linear-gradient(150deg, transparent 24%, rgba(73,231,255,.08) 25%, rgba(73,231,255,.08) 26%, transparent 27%, transparent 74%, rgba(73,231,255,.08) 75%, rgba(73,231,255,.08) 76%, transparent 77%);
  background-size: 42px 74px;
}

.channel-panel > *:not(.channel-panel-grid) {
  position: relative;
  z-index: 2;
}

.channel-panel > img {
  width: 142px;
  margin: 24px auto 14px;
  filter: drop-shadow(0 0 16px rgba(73,231,255,.18));
}

.channel-panel h3 {
  margin: 0;
  font-size: 1.45rem;
  letter-spacing: -.02em;
}

.channel-panel p {
  margin: 8px 0 20px;
  color: var(--muted);
  font-size: .79rem;
}

.channel-features {
  width: 100%;
  display: grid;
  gap: 8px;
  margin: 0 0 23px;
  padding: 17px 0;
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  text-align: left;
}

.channel-features span {
  color: #9cb0bf;
  font-size: .68rem;
}

.channel-features span::first-letter {
  color: var(--gold);
}

.channel-button {
  width: 100%;
  margin-top: auto;
}

/* ---------- ABOUT ---------- */

.about-panel {
  position: relative;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  overflow: hidden;
  padding: 32px 36px;
  border: 1px solid rgba(73,231,255,.20);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(90deg, rgba(10,30,44,.88), rgba(4,12,18,.91)),
    radial-gradient(circle at 20% 50%, rgba(73,231,255,.12), transparent 30%);
}

.about-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--cyan), transparent 12%) top / 100% 1px no-repeat,
    linear-gradient(270deg, var(--gold), transparent 15%) bottom / 100% 1px no-repeat;
  opacity: .5;
}

.about-icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(73,231,255,.28);
  border-radius: 20px;
  background: rgba(73,231,255,.04);
}

.about-icon img {
  width: 72px;
}

.about-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.about-copy p {
  max-width: 760px;
  margin: 11px 0 0;
  color: var(--muted);
}

/* ---------- FOOTER ---------- */

.site-footer {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid rgba(255,255,255,.07);
  color: #698091;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  width: 42px;
}

.footer-brand div {
  display: grid;
}

.footer-brand strong {
  color: #d9e7ef;
  font-size: .8rem;
  letter-spacing: .13em;
}

.footer-brand span {
  margin-top: 4px;
  font-size: .52rem;
  letter-spacing: .15em;
}

.site-footer p,
.site-footer > a {
  font-size: .66rem;
  font-weight: 750;
  text-decoration: none;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr 1fr;
  }

  .hero-tags {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-tags div:nth-child(2) {
    border-right: 0;
  }

  .hero-tags div:nth-child(-n+2) {
    border-bottom: 1px solid var(--white-line);
  }

  .video-console {
    grid-template-columns: 1fr;
  }

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

  .iframe-short {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 980px) {
  .mobile-menu-button {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 20px;
    right: 20px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(3,11,17,.97);
    box-shadow: 0 22px 50px rgba(0,0,0,.45);
  }

  .main-nav.open {
    display: grid;
  }

  .main-nav a {
    padding: 13px 14px;
  }

  .nav-youtube {
    margin-left: 0;
    margin-top: 4px;
    text-align: center;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 75px;
  }

  .hero-visual {
    min-height: 600px;
  }

  .hero-copy {
    max-width: 800px;
  }

  .carousel-and-channel {
    grid-template-columns: 1fr;
  }

  .channel-panel {
    min-height: 430px;
  }

  .channel-panel > img {
    width: 160px;
  }

  .channel-features {
    max-width: 430px;
  }

  .channel-button {
    max-width: 330px;
  }

  .about-panel {
    grid-template-columns: 82px 1fr;
  }

  .about-panel > .tech-button {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 700px) {
  .section-shell,
  .topbar-inner {
    width: min(calc(100% - 22px), var(--max));
  }

  .topbar-inner {
    min-height: 68px;
  }

  .brand img {
    width: 41px;
    height: 41px;
  }

  .brand span {
    display: none;
  }

  .hero {
    padding-block: 58px 42px;
  }

  .hero h1 {
    margin-top: 19px;
  }

  .hero h1 span,
  .hero h1 strong {
    font-size: clamp(2.8rem, 14vw, 4.8rem);
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .tech-button {
    width: 100%;
  }

  .hero-tags {
    grid-template-columns: 1fr 1fr;
  }

  .hero-tags small {
    display: none;
  }

  .hero-visual {
    min-height: 450px;
  }

  .halo-a { width: 390px; height: 390px; }
  .halo-b { width: 330px; height: 330px; }
  .halo-c { width: 430px; height: 210px; }

  .hud-chip {
    display: none;
  }

  .showcase,
  .video-section,
  .about-section {
    padding-block: 65px;
  }

  .section-title-row {
    align-items: start;
    flex-direction: column;
  }

  .title-data {
    display: none;
  }

  .player-copy {
    grid-template-columns: 1fr auto;
  }

  .player-copy > span {
    grid-column: 1;
  }

  .player-copy h3 {
    grid-column: 1;
  }

  .player-copy p {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .player-copy a {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .quick-players {
    grid-template-columns: 1fr;
  }

  .iframe-short {
    aspect-ratio: 9 / 16;
    max-height: 660px;
  }

  .carousel-title-row {
    flex-direction: row;
    align-items: end;
  }

  .video-card {
    flex-basis: min(82vw, 330px);
  }

  .about-panel {
    grid-template-columns: 1fr;
    padding: 27px 24px;
  }

  .about-icon {
    width: 72px;
    height: 72px;
  }

  .site-footer {
    padding-block: 30px;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .hero-tags {
    grid-template-columns: 1fr;
  }

  .hero-tags div {
    border-right: 0;
    border-bottom: 1px solid var(--white-line);
  }

  .hero-tags div:last-child {
    border-bottom: 0;
  }

  .carousel-title-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
