@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@500;600;700;800;900&display=swap');

:root {
  --black: #000000;
  --page: #050505;
  --panel: #101112;
  --panel-blue: #061f21;
  --panel-red: #270707;
  --white: #ffffff;
  --muted: #c7c7c7;
  --soft: #a4a4a4;
  --ice: #75eaff;
  --ice-2: #0c62ff;
  --red: #ff2b1f;
  --red-dark: #8e101b;
  --stroke: rgba(255,255,255,0.14);
  --blue-stroke: rgba(37, 91, 255, 0.9);
  --red-stroke: rgba(236, 32, 48, 0.55);
  --max: 920px;
  --font-display: "Bebas Neue", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --font-body: "Inter", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #111;
}

body {
  margin: 0;
  color: var(--white);
  background: #121212;
  font-family: var(--font-body);
}

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

.site-shell {
  width: 100%;
  margin: 0;
  background: var(--black);
  min-height: 100vh;
}

.top-banner {
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;
  background: #000;
  border-bottom: 1px solid #101010;
}

.top-banner img {
  display: block;
  width: 100%;
  height: clamp(220px, 31vw, 520px);
  object-fit: cover;
  object-position: center;
}

/* Centered content container — banner stays full width above */
.site-header,
.hero,
.channel-section,
.latest-section,
.production-block,
.subscribe-strip,
.site-footer {
  width: min(calc(100% - 40px), 1180px);
  margin-left: auto;
  margin-right: auto;
}

.site-header {
  height: 44px;
  padding: 0 15px;
  background: #050505;
  border-bottom: 1px solid #121212;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.brand-mark img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.brand-mark span {
  font-size: 13px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.main-nav a {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  color: #e8e8e8;
}

.youtube-pill {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(90deg, #fa3025, #ee1825);
  color: white;
  padding: 7px 12px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 11px;
  box-shadow: 0 0 18px rgba(255, 36, 36, 0.18);
}

.youtube-dot {
  display: inline-grid;
  place-items: center;
  width: 17px;
  height: 17px;
  background: white;
  color: #ff1e1e;
  border-radius: 50%;
  font-size: 9px;
}

.hero {
  display: grid;
  grid-template-columns: 0.91fr 1.1fr;
  align-items: center;
  gap: 28px;
  padding: 40px 18px 50px;
}

.small-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(133, 174, 193, 0.66);
  color: #effcff;
  box-shadow: 0 0 24px rgba(108, 233, 255, 0.18);
  font-family: var(--font-body);
  font-weight: 950;
  font-size: 11px;
  letter-spacing: 0.06em;
}

.small-pill span {
  color: var(--ice);
  font-size: 17px;
}

.hero h1 {
  margin: 18px 0 12px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(72px, 13vw, 140px);
  line-height: 0.94;
  letter-spacing: 0.01em;
  text-shadow: 0 0 1px #fff;
}

.tagline {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 999px;
  padding: 0 18px;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 950;
}

.primary-action {
  background: linear-gradient(90deg, #ff351e, #ff251b);
  color: #fff;
  box-shadow: 0 0 18px rgba(255, 43, 31, 0.25);
}

.primary-action span {
  display: inline-grid;
  place-items: center;
  background: white;
  color: #f3211b;
  width: 24px;
  height: 17px;
  border-radius: 5px;
  font-size: 10px;
}

.secondary-action {
  background: #343433;
  color: white;
}

.secondary-action span {
  display: inline-grid;
  place-items: center;
  color: var(--ice);
  border: 2px solid rgba(122, 238, 255, 0.65);
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

.preview-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 23px;
  border: 2px solid #0600d7;
  box-shadow:
    0 0 42px rgba(0, 28, 255, 0.75),
    inset 0 0 36px rgba(36, 57, 255, 0.18);
  background: #020204;
}

.preview-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.52 / 1;
  object-fit: cover;
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  display: grid;
  place-items: center;
  width: 58px;
  height: 44px;
  border-radius: 13px;
  background: rgba(30, 30, 40, 0.78);
  color: white;
  font-size: 20px;
  font-family: var(--font-body);
}

.live-note {
  position: absolute;
  left: 16px;
  bottom: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.82);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 10px;
}

.live-note i {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: red;
  box-shadow: 0 0 8px red;
}

.channel-section {
  padding: 0 18px 44px;
  text-align: center;
}

.channel-kicker {
  margin: 0 0 6px;
  color: var(--ice);
  font-size: clamp(22px, 3.5vw, 36px);
  line-height: 1;
  letter-spacing: 0.08em;
}

.channel-section h2 {
  max-width: 760px;
  margin: 0 auto 16px;
  color: white;
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 78px);
  line-height: 0.9;
  letter-spacing: 0.01em;
}

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

.feature-card {
  min-height: 142px;
  padding: 22px 22px 20px;
  text-align: left;
  border-radius: 18px;
  background: linear-gradient(120deg, #111, #171717);
  border: 1px solid rgba(255,255,255,0.04);
}

.feature-card.blue-card {
  background: linear-gradient(120deg, #071719, #0d292c);
}

.feature-card.red-card {
  background: linear-gradient(120deg, #190707, #350b0b);
}

.feature-icon {
  color: var(--ice);
  font-size: 26px;
  line-height: 1;
  margin-bottom: 12px;
}

.red-card .feature-icon {
  color: #ff5454;
}

.feature-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 0.95;
  letter-spacing: 0.01em;
}

.feature-card p {
  margin: 0;
  color: #eeeeee;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 12px;
  line-height: 1.45;
}

.latest-section {
  padding: 0 18px 30px;
}

.latest-section h2 {
  margin: 0 0 20px;
  color: white;
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1;
  letter-spacing: 0.01em;
}

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

.video-card {
  min-height: 355px;
  border-radius: 18px;
  overflow: hidden;
  background: #020202;
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow:
    0 0 0 1px rgba(21, 53, 255, 0.42),
    0 0 32px rgba(21, 53, 255, 0.15);
}

.video-card:nth-child(2) {
  box-shadow:
    0 0 0 1px rgba(255, 24, 58, 0.55),
    0 0 36px rgba(255, 24, 58, 0.18);
}

.video-card img {
  display: block;
  width: calc(100% - 34px);
  margin: 36px auto 26px;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
}

.video-card-body {
  padding: 0 18px 22px;
}

.video-card-body h3 {
  margin: 0 0 12px;
  color: white;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 0.95;
  letter-spacing: 0.01em;
}

.video-card-body p {
  margin: 0;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 950;
  font-size: 13px;
  line-height: 1.35;
}

.video-card .video-category,
.video-card .watch-link {
  display: none;
}

.production-block {
  margin: 0 auto 30px;
  padding: 28px 36px;
  border-radius: 20px;
  background:
    radial-gradient(circle at left, rgba(22, 100, 108, 0.33), transparent 42%),
    radial-gradient(circle at right, rgba(126, 0, 0, 0.5), transparent 42%),
    linear-gradient(90deg, #101010, #180808);
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: center;
}

.production-kicker {
  margin: 0 0 10px;
  color: var(--ice);
  font-family: var(--font-body);
  font-weight: 950;
  font-size: 12px;
  letter-spacing: 0.1em;
}

.production-copy h2 {
  margin: 0 0 20px;
  color: white;
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 0.9;
  letter-spacing: 0.01em;
}

.production-copy p {
  margin: 0;
  color: white;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 13px;
  line-height: 1.55;
}

.production-points {
  display: grid;
  gap: 18px;
}

.point-row {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 45px;
  border-radius: 999px;
  padding: 0 18px;
  background: rgba(0,0,0,0.25);
}

.point-row span {
  color: var(--ice);
  font-size: 22px;
}

.point-row.red span {
  color: #ff4e4e;
}

.point-row strong {
  font-family: var(--font-body);
  font-weight: 950;
  font-size: 13px;
}

.subscribe-strip {
  margin: 0 auto 28px;
  padding: 22px 28px;
  border-radius: 18px;
  background: linear-gradient(90deg, #fa2e2e, #111015);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.microphone {
  color: #000;
  font-size: 46px;
  line-height: 1;
}

.subscribe-strip h2 {
  margin: 0 0 5px;
  color: white;
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 0.95;
  letter-spacing: 0.01em;
}

.subscribe-strip p {
  margin: 0;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-body);
  font-weight: 950;
  font-size: 13px;
}

.subscribe-strip a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: #111;
  border-radius: 999px;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-weight: 950;
  font-size: 12px;
  white-space: nowrap;
}

.subscribe-strip a span {
  color: red;
}

.site-footer {
  min-height: 46px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #050505;
  color: #f5f5f5;
  font-family: var(--font-body);
  font-size: 11px;
}

.site-footer strong,
.site-footer span {
  font-weight: 950;
}

@media (max-width: 760px) {
  .site-shell {
    width: 100%;
  }

  .top-banner img {
    min-height: 145px;
    object-fit: cover;
    object-position: center;
  }

  .site-header {
    height: auto;
    padding: 12px 14px;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .main-nav {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .youtube-pill {
    justify-self: start;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 34px 14px 40px;
  }

  .hero h1 {
    font-size: clamp(74px, 24vw, 112px);
  }

  .tagline {
    font-size: clamp(28px, 8vw, 40px);
  }

  .channel-section,
  .latest-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .channel-section h2 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .feature-grid,
  .video-grid,
  .production-block,
  .subscribe-strip {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 130px;
  }

  .video-card {
    min-height: 0;
  }

  .production-block {
    padding: 24px;
    gap: 24px;
  }

  .subscribe-strip {
    justify-items: start;
  }

  .site-footer {
    display: grid;
    gap: 5px;
    padding: 14px;
  }
}
