:root {
  color-scheme: dark;
  --bg: #020712;
  --bg-soft: #071424;
  --panel: rgba(7, 22, 38, 0.86);
  --panel-strong: rgba(10, 35, 58, 0.92);
  --text: #f4fbff;
  --muted: #afc3d3;
  --copy: #d4e4ef;
  --line: rgba(67, 215, 255, 0.18);
  --accent: #35dfff;
  --accent-soft: #91f4ff;
  --green: #37e66d;
  --red: #ff4d6d;
  --youtube: #ff0033;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(118deg, rgba(0, 5, 13, 0.98), rgba(0, 26, 46, 0.96), rgba(1, 9, 20, 0.98)),
    var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(26deg, transparent 0 18%, rgba(53, 223, 255, 0.07) 18.1%, transparent 18.32%),
    linear-gradient(145deg, transparent 0 34%, rgba(53, 223, 255, 0.055) 34.1%, transparent 34.32%),
    linear-gradient(102deg, transparent 0 54%, rgba(145, 244, 255, 0.045) 54.1%, transparent 54.28%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 62px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.017) 0 1px, transparent 1px 62px);
  opacity: 0.75;
}

a {
  color: inherit;
}

.container {
  width: min(100% - 32px, 1160px);
  margin: 0 auto;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(2, 7, 18, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand,
.footer-brand {
  color: var(--accent);
  font-weight: 900;
  text-decoration: none;
  text-shadow: 0 0 16px rgba(53, 223, 255, 0.5);
}

.brand {
  font-size: 1.08rem;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 20px;
}

.site-nav a,
.site-footer a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.site-footer a:hover {
  color: var(--accent-soft);
  text-shadow: 0 0 12px rgba(53, 223, 255, 0.35);
}

.site-nav .nav-cta {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: #ffffff;
  background: var(--youtube);
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(255, 0, 51, 0.22);
}

.site-nav .nav-cta:hover {
  color: #ffffff;
  background: #ff254d;
  text-shadow: none;
  box-shadow: 0 0 26px rgba(255, 0, 51, 0.34);
}

.market-banner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  background:
    linear-gradient(90deg, rgba(0, 6, 14, 0.98), rgba(0, 30, 52, 0.9), rgba(0, 6, 14, 0.98));
  border-bottom: 1px solid rgba(53, 223, 255, 0.18);
  overflow: hidden;
}

.market-banner-label {
  color: var(--accent-soft);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-marquee {
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 14px;
  animation: ticker-scroll 44s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-card {
  min-width: 196px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px 12px;
  background: rgba(53, 223, 255, 0.055);
  border: 1px solid rgba(53, 223, 255, 0.16);
  border-radius: 999px;
  white-space: nowrap;
}

.ticker-symbol {
  color: var(--accent-soft);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.ticker-price {
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 900;
}

.ticker-change {
  padding: 3px 7px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
  font-weight: 900;
}

.ticker-change.is-positive {
  color: var(--green);
  background: rgba(55, 230, 109, 0.12);
}

.ticker-change.is-negative {
  color: var(--red);
  background: rgba(255, 77, 109, 0.12);
}

.market-status {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  min-width: 118px;
  text-align: right;
  white-space: nowrap;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.hero {
  padding: 74px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 0.9fr);
  gap: 44px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(53, 223, 255, 0.45);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  line-height: 1.05;
}

h1 {
  max-width: 860px;
  font-size: clamp(2.55rem, 7vw, 5.65rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.85rem, 4vw, 3rem);
}

h3 {
  font-size: 1.18rem;
}

p {
  color: var(--copy);
  font-size: 1.05rem;
}

.subheadline {
  margin-top: 22px;
  max-width: 760px;
  color: var(--text);
  font-size: clamp(1.18rem, 2.7vw, 1.65rem);
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.button-primary {
  color: #ffffff;
  background: var(--youtube);
  box-shadow: 0 0 22px rgba(255, 0, 51, 0.28);
}

.button-secondary {
  color: var(--accent-soft);
  background: rgba(53, 223, 255, 0.08);
  border: 1px solid rgba(53, 223, 255, 0.28);
}

.button-small {
  min-height: 40px;
  margin-top: 18px;
  padding: 0 16px;
  font-size: 0.92rem;
}

.trust-line {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

.featured-video,
.page-card,
.topic-card,
.lane-card,
.media-card,
.video-list-card,
.about-band,
.channel-feature,
.channel-card {
  background:
    linear-gradient(145deg, rgba(3, 13, 28, 0.94), rgba(7, 42, 67, 0.72)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 0 34px rgba(53, 223, 255, 0.09);
}

.featured-video {
  overflow: hidden;
}

.thumbnail-placeholder {
  position: relative;
  min-height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(53, 223, 255, 0.24), transparent 28%),
    linear-gradient(135deg, rgba(255, 0, 51, 0.18), transparent 36%),
    linear-gradient(145deg, #030816, #08243a);
  border-bottom: 1px solid rgba(53, 223, 255, 0.16);
}

.thumbnail-placeholder::after {
  content: "STABLECOINS / DOLLAR RAILS / DEBT";
  position: absolute;
  right: 18px;
  bottom: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.thumbnail-kicker {
  position: absolute;
  left: 18px;
  top: 16px;
  color: var(--accent-soft);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.play-mark {
  width: 78px;
  height: 78px;
  display: block;
  background: var(--youtube);
  border-radius: 22px;
  box-shadow: 0 0 34px rgba(255, 0, 51, 0.35);
  position: relative;
}

.play-mark::after {
  content: "";
  position: absolute;
  left: 31px;
  top: 22px;
  border-left: 24px solid #ffffff;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
}

.video-card-body {
  padding: 24px;
}

.video-label {
  color: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.video-card-body h2 {
  margin-top: 8px;
  font-size: 1.8rem;
}

.video-card-body p {
  margin-top: 12px;
}

.section {
  padding: 56px 0;
}

.section.compact {
  padding: 34px 0;
}

.section-heading {
  margin-bottom: 22px;
}

.section-heading.wide {
  grid-column: 1 / -1;
  max-width: 820px;
}

.section-heading p:not(.eyebrow) {
  margin-top: 10px;
}

.pillar-grid,
.starter-grid,
.video-grid,
.channel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.topic-card,
.media-card,
.video-list-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 230px;
  padding: 22px;
  text-decoration: none;
}

.topic-card:hover,
.media-card:hover,
.video-list-card:hover,
.channel-card:hover {
  border-color: rgba(145, 244, 255, 0.46);
  box-shadow: 0 0 36px rgba(53, 223, 255, 0.18);
  transform: translateY(-2px);
}

.topic-card,
.media-card,
.video-list-card,
.channel-card {
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.topic-card span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
}

.topic-card h3,
.media-card h3,
.video-list-card h3,
.lane-card h3 {
  color: var(--text);
}

.media-card a,
.video-list-card a,
.legal a {
  margin-top: auto;
  color: var(--accent-soft);
  font-weight: 900;
}

.split-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.lane-card {
  padding: 24px;
}

.lane-card p {
  margin-top: 12px;
}

ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

li + li {
  margin-top: 7px;
}

.video-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-thumb {
  min-height: 130px;
  display: flex;
  align-items: end;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(255, 0, 51, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(53, 223, 255, 0.12), rgba(1, 9, 20, 0.9));
  border: 1px solid rgba(53, 223, 255, 0.14);
  border-radius: 8px;
}

.mini-thumb span {
  color: var(--accent-soft);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 30px;
}

.about-band p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 14px;
}

.footer-disclaimer {
  padding: 16px 0 48px;
}

.footer-disclaimer p,
.legal-note {
  padding-left: 16px;
  color: var(--text);
  border-left: 4px solid var(--accent);
}

.site-footer {
  margin-top: auto;
  padding: 34px 0;
  background: rgba(0, 6, 14, 0.96);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: 28px;
  align-items: start;
}

.footer-grid nav {
  display: grid;
  gap: 10px;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.page {
  padding: 64px 0 86px;
}

.page-hero {
  max-width: 920px;
  margin-bottom: 26px;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.7rem);
}

.page-hero p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--text);
  font-size: clamp(1.14rem, 2.5vw, 1.55rem);
}

.page-card {
  max-width: 920px;
  padding: 28px;
}

.page-card p + p,
.legal h2 {
  margin-top: 18px;
}

.legal h2 {
  color: var(--accent-soft);
  font-size: 1.16rem;
}

.contact-email {
  margin: 18px 0;
  font-size: 1.3rem;
}

.contact-email a {
  color: var(--accent-soft);
  font-weight: 900;
}

.channel-hub {
  display: grid;
  gap: 18px;
}

.channel-feature {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 28px;
}

.channel-feature p {
  max-width: 720px;
  margin: 10px 0 20px;
}

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

.channel-card {
  min-height: 126px;
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px;
  text-decoration: none;
}

.channel-card strong,
.channel-card small {
  display: block;
}

.channel-card small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.95rem;
}

.platform-mark {
  width: 54px;
  min-width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 900;
}

.youtube-mark {
  background: var(--youtube);
  box-shadow: 0 0 24px rgba(255, 0, 51, 0.26);
}

.x-mark,
.tiktok-mark {
  background: #000000;
}

.instagram-mark {
  background: linear-gradient(135deg, #feda75, #fa7e1e 34%, #d62976 62%, #4f5bd5);
}

.bluesky-mark {
  background: #1185fe;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-panel,
  .about-band,
  .channel-feature {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 720px) {
  .header-inner,
  .footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .header-inner {
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .market-banner {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .market-status {
    display: none;
  }

  .hero {
    padding: 48px 0 34px;
  }

  h1 {
    font-size: clamp(2.1rem, 11vw, 3.25rem);
  }

  .subheadline {
    font-size: 1.12rem;
  }

  .hero-actions .button,
  .about-band .button {
    width: 100%;
  }

  .pillar-grid,
  .starter-grid {
    grid-template-columns: 1fr;
  }

  .topic-card,
  .media-card,
  .video-list-card {
    min-height: auto;
  }

  .footer-grid {
    display: grid;
  }
}

/* Editorial media polish */
.featured-video {
  transform: rotate(0.2deg);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.02),
    0 22px 70px rgba(0, 0, 0, 0.45),
    0 0 44px rgba(53, 223, 255, 0.13);
}

.thumbnail-placeholder,
.video-thumb {
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
}

.thumbnail-placeholder {
  background:
    radial-gradient(circle at 18% 30%, rgba(53, 223, 255, 0.24), transparent 22%),
    radial-gradient(circle at 82% 26%, rgba(255, 0, 51, 0.2), transparent 23%),
    linear-gradient(135deg, rgba(15, 95, 120, 0.6), transparent 35%),
    linear-gradient(145deg, #020611 0%, #071d33 58%, #020611 100%);
}

.thumbnail-placeholder::after {
  content: "";
  inset: 0;
  right: auto;
  bottom: auto;
  background:
    linear-gradient(12deg, transparent 0 44%, rgba(255, 255, 255, 0.08) 44.2%, transparent 44.8%),
    linear-gradient(92deg, transparent 0 68%, rgba(53, 223, 255, 0.12) 68.2%, transparent 68.5%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 34px);
  opacity: 0.72;
}

.thumbnail-kicker,
.thumbnail-text,
.thumbnail-title-strip,
.thumb-symbol {
  position: absolute;
  z-index: 2;
}

.thumbnail-text {
  max-width: 84%;
  color: #ffffff;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 0.86;
  text-align: center;
  text-shadow:
    0 4px 0 rgba(0, 0, 0, 0.45),
    0 0 32px rgba(53, 223, 255, 0.28);
}

.thumbnail-title-strip {
  left: 18px;
  right: 18px;
  bottom: 15px;
  padding: 9px 12px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 900;
}

.thumb-symbol {
  color: rgba(145, 244, 255, 0.14);
  font-weight: 950;
  line-height: 1;
}

.thumb-symbol-left {
  left: 20px;
  bottom: 58px;
  font-size: 2rem;
}

.thumb-symbol-right {
  right: 24px;
  top: 42px;
  font-size: 7rem;
}

.thumbnail-placeholder > .play-mark {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 58px;
  width: 58px;
  height: 58px;
  border-radius: 16px;
}

.thumbnail-placeholder > .play-mark::after {
  left: 23px;
  top: 16px;
  border-left-width: 18px;
  border-top-width: 13px;
  border-bottom-width: 13px;
}

.pillar-mark {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0 4px;
  border-radius: 16px;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 950;
  box-shadow: 0 0 22px rgba(53, 223, 255, 0.14);
}

.topic-card {
  position: relative;
  overflow: hidden;
}

.topic-card::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -45px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(53, 223, 255, 0.06);
}

.topic-card > * {
  position: relative;
  z-index: 1;
}

.stablecoin-mark {
  background: linear-gradient(145deg, #16a36d, #044f3b);
}

.bitcoin-mark {
  background: linear-gradient(145deg, #f7931a, #7a3b00);
}

.ai-mark {
  background: linear-gradient(145deg, #35dfff, #2554ff);
}

.wallstreet-mark {
  background: linear-gradient(145deg, #c9d7e6, #374d63);
}

.thesis-band {
  margin: 34px 0 16px;
  padding: 58px 0;
  background:
    linear-gradient(90deg, rgba(53, 223, 255, 0.1), transparent 24%, rgba(255, 0, 51, 0.08) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 70px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 70px);
  border-top: 1px solid rgba(53, 223, 255, 0.16);
  border-bottom: 1px solid rgba(53, 223, 255, 0.16);
}

.thesis-inner {
  border-left: 5px solid var(--accent);
  padding-left: 24px;
}

.thesis-inner p {
  max-width: 1020px;
  color: var(--text);
  font-size: clamp(1.7rem, 4.3vw, 3.4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.split-panel {
  padding: 22px;
  background:
    linear-gradient(90deg, rgba(53, 223, 255, 0.09), transparent 50%, rgba(255, 0, 51, 0.1)),
    rgba(2, 9, 20, 0.64);
  border: 1px solid rgba(53, 223, 255, 0.16);
  border-radius: 16px;
}

.lane-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
}

.lane-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -70px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(53, 223, 255, 0.08);
}

.lane-card > * {
  position: relative;
  z-index: 1;
}

.lane-long {
  background:
    linear-gradient(145deg, rgba(3, 13, 28, 0.98), rgba(4, 34, 57, 0.76)),
    var(--panel);
}

.lane-short {
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 24px),
    linear-gradient(145deg, rgba(18, 3, 16, 0.96), rgba(61, 13, 33, 0.7)),
    var(--panel);
}

.lane-visual,
.guide-label {
  color: var(--accent-soft);
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lane-visual {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  min-height: 40px;
  margin-bottom: 36px;
  padding: 0 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 0.9rem;
}

.guide-label {
  font-size: 0.75rem;
}

.media-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
}

.media-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.55;
  pointer-events: none;
}

.media-card > * {
  position: relative;
  z-index: 1;
}

.guide-stablecoins::before {
  background: radial-gradient(circle at top right, rgba(22, 163, 109, 0.18), transparent 38%);
}

.guide-bitcoin::before {
  background: radial-gradient(circle at top right, rgba(247, 147, 26, 0.16), transparent 38%);
}

.guide-ai::before {
  background: radial-gradient(circle at top right, rgba(53, 223, 255, 0.18), transparent 38%);
}

.guide-wallstreet::before {
  background: radial-gradient(circle at top right, rgba(210, 225, 238, 0.14), transparent 38%);
}

.video-thumb {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(53, 223, 255, 0.16);
  border-radius: 10px;
}

.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(12deg, transparent 0 42%, rgba(255, 255, 255, 0.08) 42.2%, transparent 42.8%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 30px);
  opacity: 0.55;
}

.video-thumb strong,
.video-thumb span {
  position: relative;
  z-index: 2;
}

.video-thumb strong {
  max-width: 78%;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.44);
}

.thumb-label,
.thumb-subline {
  color: var(--accent-soft);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.thumb-subline {
  color: rgba(255, 255, 255, 0.78);
}

.thumb-stablecoins {
  background:
    radial-gradient(circle at 88% 20%, rgba(22, 163, 109, 0.28), transparent 26%),
    linear-gradient(145deg, #020611, #06324a);
}

.thumb-war {
  background:
    radial-gradient(circle at 18% 22%, rgba(22, 163, 109, 0.22), transparent 26%),
    radial-gradient(circle at 88% 26%, rgba(220, 230, 240, 0.16), transparent 28%),
    linear-gradient(145deg, #050611, #17243a);
}

.thumb-stress {
  background:
    linear-gradient(100deg, rgba(255, 77, 109, 0.28), transparent 36%),
    repeating-linear-gradient(90deg, rgba(255, 77, 109, 0.12) 0 2px, transparent 2px 28px),
    linear-gradient(145deg, #080713, #241022);
}

.play-mark.small {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.play-mark.small::after {
  left: 17px;
  top: 12px;
  border-left-width: 14px;
  border-top-width: 10px;
  border-bottom-width: 10px;
}
