:root {
  --bg: #080808;
  --panel: #121212;
  --panel-soft: #191919;
  --panel-line: #292929;
  --text: #f6f6f6;
  --muted: #b8b8b8;
  --red: #e00000;
  --red-dark: #8e0000;
  --red-soft: rgba(224, 0, 0, 0.16);
  --white-soft: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  background: var(--red);
  color: white;
  padding: 10px 14px;
  z-index: 20;
}

.skip-link:focus {
  top: 16px;
}

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

.header-inner,
.section-wrap,
.footer-inner {
  width: min(1500px, calc(100% - 48px));
  margin: 0 auto;
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand img {
  width: 126px;
  height: auto;
}

.brand span {
  color: white;
  border-left: 2px solid var(--red);
  padding-left: 10px;
}

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

.main-nav a,
.header-cta,
.primary-button,
.secondary-button,
.news-card a,
.blog-card a,
.event-card a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 800;
}

.main-nav a {
  padding: 0 12px;
  color: var(--muted);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: white;
  background: var(--white-soft);
}

.header-cta,
.primary-button {
  padding: 0 16px;
  background: linear-gradient(180deg, var(--red), var(--red-dark));
  color: white;
  box-shadow: 0 14px 30px rgba(224, 0, 0, 0.26);
}

.ticker {
  position: sticky;
  top: 76px;
  z-index: 19;
  display: flex;
  align-items: center;
  min-height: 48px;
  overflow: hidden;
  border-bottom: 1px solid rgba(224, 0, 0, 0.35);
  background: #0d0d0d;
}

.ticker-label {
  align-self: stretch;
  display: flex;
  align-items: center;
  padding: 0 18px;
  background: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-track {
  display: flex;
  overflow: hidden;
  width: 100%;
}

.ticker-content {
  display: flex;
  align-items: center;
  gap: 34px;
  min-width: max-content;
  animation: ticker-scroll 28s linear infinite;
}

.ticker-content span {
  color: var(--text);
  white-space: nowrap;
  font-weight: 700;
}

.ticker-content span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 12px;
  background: var(--red);
  border-radius: 50%;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 20px;
  padding: 34px 0 20px;
}

.lead-story,
.video-feature,
.news-card,
.blog-card,
.event-card,
.ad-unit {
  border: 1px solid var(--panel-line);
  background: var(--panel);
  border-radius: 8px;
}

.lead-story {
  min-height: 470px;
  padding: clamp(24px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.lead-story::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(224, 0, 0, 0.22), transparent 42%),
    radial-gradient(circle at 82% 18%, rgba(224, 0, 0, 0.24), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
  pointer-events: none;
}

.lead-story > * {
  position: relative;
}

.story-kicker,
.section-heading span,
.news-card span,
.blog-card span,
.pill,
.ad-unit span {
  color: #ff3f3f;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 16px;
  font-size: clamp(2.6rem, 6vw, 5.3rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.lead-story p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.primary-button,
.secondary-button {
  padding: 0 18px;
}

.secondary-button {
  background: var(--white-soft);
  color: white;
  border: 1px solid var(--panel-line);
}

.ad-stack,
.video-list,
.ad-marketplace {
  display: grid;
  gap: 14px;
}

.ad-unit {
  min-height: 170px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(135deg, var(--red-soft), transparent 52%),
    var(--panel-soft);
  outline: 1px dashed rgba(255, 255, 255, 0.16);
  outline-offset: -10px;
}

.ad-unit:hover,
.ad-unit:focus-visible {
  border-color: rgba(224, 0, 0, 0.8);
  transform: translateY(-2px);
}

.ad-unit strong {
  margin: 7px 0 2px;
  font-size: 1.4rem;
  line-height: 1.05;
}

.ad-unit small {
  color: var(--muted);
}
.ad-image {
  width: 100%;
  max-height: 120px;
  object-fit: contain;
  margin-bottom: 12px;
  background: rgba(0, 0, 0, 0.22);
  border-radius: 6px;
}

.ad-unit-large {
  min-height: 286px;
}

.section-wrap {
  padding: 34px 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--panel-line);
  padding-bottom: 14px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
}

.news-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.news-card,
.blog-card {
  padding: 22px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
}


.poster-card {
  padding: 0;
  overflow: hidden;
  min-height: 420px;
}

.poster-image,
.poster-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  min-height: 260px;
}

.poster-image {
  object-fit: cover;
  background: #050505;
}

.poster-placeholder {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(224, 0, 0, 0.08), rgba(0, 0, 0, 0.92)),
    radial-gradient(circle at 28% 18%, rgba(224, 0, 0, 0.34), transparent 32%),
    #111;
  border-bottom: 1px solid var(--panel-line);
}

.poster-placeholder strong {
  font-size: 1.7rem;
  line-height: 1;
}

.poster-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.news-card.hot {
  border-color: rgba(224, 0, 0, 0.75);
  background: linear-gradient(135deg, rgba(224, 0, 0, 0.17), transparent 56%), var(--panel);
}

.news-card h3,
.blog-card h3,
.event-card h3,
.video-feature h3 {
  margin: 10px 0 8px;
  font-size: 1.35rem;
  line-height: 1.1;
}

.news-card p,
.blog-card p,
.event-card p,
.video-feature p {
  color: var(--muted);
}

.news-card a,
.blog-card a,
.event-card a {
  margin-top: auto;
  color: white;
  justify-content: flex-start;
}


.news-grid {
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  align-items: stretch;
}

.true-soul-card,
.weekly-update-card {
  border: 1px solid var(--panel-line);
  background: var(--panel);
  border-radius: 8px;
}

.true-soul-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  border-color: rgba(224, 0, 0, 0.72);
  background: linear-gradient(135deg, rgba(224, 0, 0, 0.14), transparent 54%), var(--panel);
}

.true-soul-image,
.true-soul-placeholder {
  width: 100%;
  aspect-ratio: 210 / 297;
  min-height: 520px;
}

.true-soul-image {
  object-fit: cover;
  background: #050505;
}

.true-soul-placeholder {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.86)),
    radial-gradient(circle at 35% 18%, rgba(224, 0, 0, 0.32), transparent 34%),
    #101010;
}

.true-soul-placeholder span,
.true-soul-copy span,
.weekly-update-card span {
  color: #ff3f3f;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.true-soul-placeholder strong {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
}

.true-soul-copy {
  padding: 22px;
}

.true-soul-copy h3,
.weekly-update-card h3 {
  margin: 9px 0 8px;
  line-height: 1.1;
}

.true-soul-copy p,
.weekly-update-card p {
  color: var(--muted);
}

.true-soul-copy a,
.weekly-update-card a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  color: white;
  font-weight: 900;
}

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

.weekly-update-card {
  aspect-ratio: 1 / 1;
  min-height: 240px;
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.weekly-update-card a {
  margin-top: auto;
}

.leaderboard {
  min-height: 118px;
  text-align: center;
  align-items: center;
}

.video-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 16px;
}

.video-feature {
  overflow: hidden;
  background: var(--panel-soft);
}

.video-feature > div:last-child {
  padding: 20px;
}

.video-frame {
  aspect-ratio: 16 / 9;
  background: #000;
}

.youtube-fallback {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 10px;
  padding: 0 14px;
  border-radius: 6px;
  background: var(--red);
  color: white;
  font-weight: 900;
}

.video-item {
  min-height: 72px;
  border: 1px solid var(--panel-line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--text);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  text-align: left;
  padding: 0 16px;
}

.video-item:hover,
.video-item:focus-visible,
.video-item.active {
  border-color: rgba(224, 0, 0, 0.8);
  background: var(--red-soft);
}

.events-layout {
  display: grid;
  gap: 12px;
}

.events-carousel {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  gap: 10px;
  align-items: stretch;
}

.events-track {
  display: flex;
  overflow: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.events-page {
  flex: 0 0 100%;
  display: grid;
  gap: 12px;
  scroll-snap-align: start;
}

.event-carousel-button {
  border: 1px solid var(--panel-line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--red), var(--red-dark));
  color: white;
  font-size: 2rem;
  font-weight: 900;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.event-carousel-button:focus,
.event-carousel-button:active,
.event-carousel-button:focus-visible {
  outline: none;
  box-shadow: none;
}

.event-carousel-button:hover {
  filter: brightness(1.08);
}

.event-card {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 16px;
}

.events-empty {
  border: 1px solid var(--panel-line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--muted);
  padding: 18px;
  font-weight: 800;
}

.event-card time {
  display: grid;
  place-items: center;
  min-height: 70px;
  border-radius: 6px;
  background: var(--red);
  color: white;
  line-height: 1;
  text-transform: uppercase;
}

.event-card time strong {
  font-size: 1.8rem;
}

.event-card h3,
.event-card p {
  margin-bottom: 4px;
}

.ad-marketplace {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}


.single-ad-section {
  padding-top: 18px;
}

.bottom-ad {
  min-height: 260px;
  align-items: center;
  text-align: center;
}

.bottom-ad strong {
  font-size: clamp(2rem, 5vw, 4.5rem);
}

.bottom-ad small {
  max-width: 720px;
  font-size: 1rem;
}

.site-footer {
  margin-top: 28px;
  border-top: 1px solid var(--panel-line);
  background: #050505;
}

.footer-inner {
  min-height: 150px;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
}

.footer-inner p {
  color: var(--muted);
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 14px;
  font-weight: 800;
  color: var(--muted);
}

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

  .true-soul-card {
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
    grid-template-rows: none;
  }

  .true-soul-image,
  .true-soul-placeholder {
    min-height: 420px;
  }
}

@media (max-width: 920px) {
  .ticker {
    top: 84px;
  }


  .header-inner {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .main-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

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

  .ad-stack,
  .ad-marketplace,
  .news-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .true-soul-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .weekly-update-grid {
    grid-template-columns: 1fr;
  }

  .events-carousel {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 8px;
  }

  .event-carousel-button {
    font-size: 1.5rem;
  }

  .weekly-update-card {
    aspect-ratio: auto;
    min-height: 210px;
  }
}

@media (max-width: 640px) {
  .ticker {
    top: 76px;
  }


  .header-inner,
  .section-wrap,
  .footer-inner {
    width: min(100% - 24px, 1500px);
  }

  .brand img {
    width: 104px;
  }

  .header-cta {
    display: none;
  }

  .ticker-label {
    padding: 0 12px;
  }

  .hero-grid {
    padding-top: 22px;
  }

  .lead-story {
    min-height: 420px;
    padding: 24px;
  }

  h1 {
    font-size: 2.75rem;
  }

  .ad-stack,
  .ad-marketplace,
  .news-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .event-card {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .event-card a {
    grid-column: 2;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 28px 0;
  }

  .footer-inner img {
    width: 140px;
  }
}










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

.blog-carousel {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 12px;
  align-items: stretch;
}

.blog-carousel .blog-grid {
  display: flex;
  grid-template-columns: none;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  padding-bottom: 6px;
}

.blog-carousel .blog-card {
  flex: 0 0 min(390px, 82vw);
  scroll-snap-align: start;
}

.carousel-button {
  border: 1px solid var(--panel-line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--red), var(--red-dark));
  color: white;
  font-size: 2.4rem;
  font-weight: 900;
  cursor: pointer;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  filter: brightness(1.12);
}

.ad-media {
  position: relative;
  width: 100%;
  min-height: 0;
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.24);
}

.ad-media:empty {
  display: none;
}

.ad-media .ad-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 420ms ease;
}

.ad-media .ad-image.active {
  opacity: 1;
}

.ad-unit .ad-media {
  min-height: 132px;
}

.ad-unit-large .ad-media,
.bottom-ad .ad-media {
  min-height: 180px;
}

.leaderboard .ad-media {
  min-height: 150px;
  max-width: 1120px;
}

.video-ad .ad-media {
  min-height: 210px;
}

.featured-event-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  border: 1px solid rgba(221, 171, 42, 0.62);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(221, 171, 42, 0.18), transparent 42%),
    var(--panel);
  box-shadow: var(--shadow);
}

.featured-event-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  background: #050505;
}

.featured-event-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 56px);
}

.featured-event-copy span {
  color: #dbaa2a;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.featured-event-copy h3 {
  margin: 12px 0;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.95;
}

.featured-event-copy p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.08rem;
}

.featured-event-copy strong {
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  padding: 0 18px;
  border-radius: 6px;
  background: #dbaa2a;
  color: #090909;
}

@media (max-width: 900px) {
  .featured-event-card {
    grid-template-columns: 1fr;
  }

  .featured-event-card img {
    min-height: auto;
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 640px) {
  .blog-carousel {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 8px;
  }

  .carousel-button {
    font-size: 1.8rem;
  }
}

/* Fix pass: visible ad media, one-card blog carousel, larger event banner. */
.ad-unit {
  justify-content: flex-start;
}

.ad-media {
  flex: 0 0 auto;
}

.ad-media .ad-image {
  display: block;
}

.blog-carousel {
  grid-template-columns: 54px minmax(0, min(560px, calc(100vw - 150px))) 54px;
  justify-content: center;
}

.blog-carousel .blog-grid {
  width: 100%;
  overflow-x: hidden;
}

.blog-carousel .blog-card {
  flex: 0 0 100%;
  min-width: 100%;
}

.poster-card {
  min-height: 620px;
}

.poster-image,
.poster-placeholder {
  min-height: 360px;
}

.featured-event-card {
  display: block;
  max-width: 980px;
  margin: 0 auto;
  background: #050505;
}

.featured-event-card img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.featured-event-copy {
  padding: 22px 26px 28px;
}

.featured-event-copy h3 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

@media (max-width: 640px) {
  .blog-carousel {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
  }

  .poster-card {
    min-height: 560px;
  }
}

/* Fit pass: show complete ad images and auto event image cleanly. */
.ad-media {
  background: #050505;
}

.ad-media .ad-image {
  object-fit: contain;
}

.ad-unit .ad-media {
  min-height: 170px;
  aspect-ratio: 16 / 9;
}

.ad-unit-large .ad-media {
  min-height: 210px;
  aspect-ratio: 970 / 250;
}

.leaderboard .ad-media {
  width: 100%;
  max-width: none;
  min-height: 150px;
  aspect-ratio: 1200 / 260;
}

.video-ad .ad-media {
  min-height: 230px;
  aspect-ratio: 1 / 1;
}

.bottom-ad .ad-media {
  min-height: 260px;
  aspect-ratio: 1200 / 320;
}

.featured-event-card {
  max-width: 1180px;
}

.featured-event-card img {
  max-height: none;
  object-fit: contain;
  background: #050505;
}

/* Final media sizing fix: remove old max-height and fill slots correctly. */
.ad-image {
  max-height: none !important;
  margin: 0 !important;
}

.ad-media .ad-image {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.premium-ad .ad-media .ad-image,
.leaderboard .ad-media .ad-image,
.bottom-ad .ad-media .ad-image {
  object-fit: contain !important;
}

.ad-unit .ad-media {
  width: 100%;
  min-height: 180px;
}

.ad-unit-large .ad-media {
  min-height: 210px;
}

.bottom-ad .ad-media {
  min-height: 320px;
}

.featured-event-card {
  max-width: min(100%, 980px);
}

.featured-event-card img {
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  object-fit: contain !important;
}

/* Ticker loop fix: one continuous repeated strip with clean spacing. */
.ticker-track {
  min-width: 0;
}

.ticker-content {
  gap: 0 !important;
  padding-right: 0;
  animation: ticker-scroll 42s linear infinite !important;
}

.ticker-content span {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding-right: 42px;
}

.ticker-content span::before {
  flex: 0 0 auto;
  margin-left: 0;
  margin-right: 14px !important;
}

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

/* In-game 1080p window profile: optimized for roughly 1058-1080px wide by 730-780px tall. */
@media (max-width: 1100px) {
  .header-inner,
  .section-wrap,
  .footer-inner {
    width: min(100% - 24px, 1040px);
  }

  .header-inner {
    min-height: 58px;
  }

  .brand img {
    width: 108px;
  }

  .brand span {
    font-size: 0.9rem;
    padding-left: 8px;
  }

  .ticker {
    top: 58px;
    min-height: 38px;
    font-size: 0.86rem;
  }

  .ticker-label {
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .ticker-content span {
    padding-right: 34px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 12px;
    padding: 18px 0 10px;
  }

  .lead-story {
    min-height: 330px;
    padding: 28px;
  }

  h1 {
    max-width: 640px;
    font-size: clamp(2.15rem, 5vw, 3.6rem);
    line-height: 0.98;
  }

  .lead-story p {
    max-width: 600px;
    font-size: 0.95rem;
  }

  .primary-button,
  .secondary-button,
  .news-card a,
  .blog-card a,
  .event-card a {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.92rem;
  }

  .section-wrap {
    padding: 20px 0;
  }

  .section-heading {
    margin-bottom: 12px;
    padding-bottom: 10px;
  }

  .section-heading h2 {
    font-size: clamp(1.55rem, 4vw, 2.25rem);
  }

  .section-heading span,
  .story-kicker,
  .pill,
  .ad-unit span,
  .blog-card span {
    font-size: 0.72rem;
  }

  .ad-stack {
    gap: 10px;
  }

  .ad-unit {
    min-height: 138px;
    padding: 12px;
  }

  .ad-unit-large {
    min-height: 208px;
  }

  .ad-unit strong {
    font-size: 1.08rem;
  }

  .ad-unit small {
    font-size: 0.78rem;
  }

  .ad-unit .ad-media {
    min-height: 120px;
  }

  .ad-unit-large .ad-media {
    min-height: 138px;
  }

  .leaderboard {
    min-height: 110px;
  }

  .leaderboard .ad-media {
    min-height: 112px;
  }

  .news-grid {
    grid-template-columns: minmax(300px, 0.44fr) minmax(0, 0.56fr);
    gap: 12px;
  }

  .true-soul-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .true-soul-image,
  .true-soul-placeholder {
    min-height: 360px;
  }

  .true-soul-copy {
    padding: 16px;
  }

  .weekly-update-grid {
    gap: 12px;
  }

  .weekly-update-card {
    min-height: 174px;
    padding: 16px;
  }

  .weekly-update-card h3,
  .true-soul-copy h3 {
    font-size: 1.08rem;
  }

  .weekly-update-card p,
  .true-soul-copy p {
    font-size: 0.88rem;
  }

  .video-layout {
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 12px;
  }

  .video-feature > div:last-child {
    padding: 16px;
  }

  .video-feature h3 {
    font-size: 1.12rem;
  }

  .video-feature p {
    font-size: 0.88rem;
  }

  .video-item {
    min-height: 52px;
    padding: 8px 12px;
    font-size: 0.84rem;
    line-height: 1.15;
  }

  .video-ad .ad-media {
    min-height: 160px;
  }

  .blog-carousel {
    grid-template-columns: 44px minmax(0, min(500px, calc(100vw - 132px))) 44px;
    gap: 10px;
  }

  .poster-card {
    min-height: 520px;
  }

  .poster-image,
  .poster-placeholder {
    min-height: 300px;
  }

  .poster-copy {
    padding: 16px;
  }

  .featured-event-card {
    max-width: min(92vw, 560px);
  }

  .featured-event-copy {
    padding: 16px 18px 20px;
  }

  .featured-event-copy h3 {
    font-size: clamp(1.5rem, 4vw, 2.4rem);
  }

  .featured-event-copy p {
    font-size: 0.9rem;
  }

  .events-layout {
    gap: 10px;
  }

  .event-card {
    gap: 12px;
    padding: 12px;
  }

  .bottom-ad .ad-media {
    min-height: 210px;
  }

  .bottom-ad strong {
    font-size: clamp(1.8rem, 5vw, 3.2rem);
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .news-grid,
  .video-layout {
    grid-template-columns: 1fr;
  }

  .ad-stack,
  .weekly-update-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .true-soul-image,
  .true-soul-placeholder {
    min-height: 420px;
  }

  .featured-event-card {
    max-width: min(94vw, 520px);
  }
}

@media (max-width: 640px) {
  .header-inner,
  .section-wrap,
  .footer-inner {
    width: min(100% - 18px, 1040px);
  }

  .header-inner {
    min-height: 54px;
  }

  .ticker {
    top: 54px;
    min-height: 36px;
  }

  .ticker-label {
    padding: 0 10px;
  }

  .hero-grid {
    padding-top: 14px;
  }

  .lead-story {
    min-height: 300px;
    padding: 20px;
  }

  h1 {
    font-size: 2.25rem;
  }

  .ad-stack,
  .weekly-update-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-carousel {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
  }

  .carousel-button {
    font-size: 1.55rem;
  }

  .event-card {
    grid-template-columns: 62px minmax(0, 1fr);
  }
}

@media (max-height: 800px) and (min-width: 760px) {
  .header-inner {
    min-height: 54px;
  }

  .ticker {
    top: 54px;
    min-height: 36px;
  }

  .section-wrap {
    padding: 16px 0;
  }

  .lead-story {
    min-height: 300px;
  }

  .video-item {
    min-height: 48px;
  }

  .featured-event-card {
    max-width: min(90vw, 520px);
  }
}

/* In-game overflow guard: marquee content must not create horizontal page scroll. */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.ticker,
.ticker-track {
  max-width: 100vw;
  overflow: hidden;
}

.ticker-track {
  contain: paint;
}

/* Sticky ticker-safe overflow fix: absolute marquee does not widen the page. */
html {
  overflow-x: hidden !important;
}

body {
  overflow-x: clip !important;
}

.ticker-track {
  position: relative;
  flex: 1 1 auto;
  align-self: stretch;
  height: auto;
  overflow: hidden !important;
  contain: paint;
}

.ticker-content {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: max-content;
}

body {
  overflow-clip-margin: 0;
}


/* First-screen layout tuned for the 1080-style in-game browser window. */
.section-wrap,
.header-inner,
.footer-inner {
  width: min(100% - 44px, 1220px);
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 390px);
  align-items: stretch;
  gap: 12px;
  padding-top: 14px;
}

.lead-story.top-story-card {
  position: relative;
  min-height: 360px;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: #101010;
}

.top-story-media {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 18%, rgba(255, 0, 0, 0.26), transparent 35%), #111;
}

.top-story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.52) 47%, rgba(0, 0, 0, 0.18) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.75), transparent 58%);
}

.top-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.9;
}

.top-story-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 850px);
  padding: 24px 28px 26px;
}

.top-story-copy h1 {
  font-size: clamp(2rem, 3.7vw, 3.75rem);
  line-height: 1;
  max-width: 820px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.top-story-copy p {
  max-width: 720px;
  margin-top: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-grid .quick-actions {
  margin-top: 22px;
}

.hero-grid .ad-stack {
  display: grid;
  grid-template-rows: minmax(265px, 1.2fr) minmax(215px, 0.8fr);
  gap: 10px;
  min-width: 0;
}

.hero-grid .ad-unit {
  position: relative;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  display: block;
  background: #050505;
}

.hero-grid .ad-unit-large {
  min-height: 265px;
}

.hero-grid .ad-unit::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent);
  pointer-events: none;
}

.hero-grid .ad-unit .ad-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  aspect-ratio: auto;
  background: #050505;
}

.hero-grid .ad-unit .ad-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
  background: #050505;
}

.hero-grid .rotating-ad .ad-image {
  object-fit: cover;
  padding: 0;
}

.hero-grid .ad-unit > span,
.hero-grid .ad-unit > strong,
.hero-grid .ad-unit > small {
  position: absolute;
  z-index: 2;
  left: 14px;
  right: 14px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.82);
}

.hero-grid .ad-unit > span {
  bottom: 62px;
  font-size: 0.7rem;
}

.hero-grid .ad-unit > strong {
  bottom: 34px;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.03;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-grid .ad-unit > small {
  bottom: 14px;
  color: rgba(255, 255, 255, 0.78);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ad-media .ad-image {
  object-position: center;
}

.video-frame iframe {
  background: #050505;
}

@media (max-width: 1120px) {
  .section-wrap,
  .header-inner,
  .footer-inner {
    width: min(100% - 28px, 1080px);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 340px);
  }

  .lead-story.top-story-card {
    min-height: 320px;
  }

  .top-story-copy {
    padding: 20px 22px;
  }

  .top-story-copy h1 {
    font-size: clamp(1.85rem, 3.4vw, 3rem);
  }

  .hero-grid .ad-stack {
    grid-template-rows: minmax(235px, 1.1fr) minmax(195px, 0.9fr);
  }
}

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

  .hero-grid .ad-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .hero-grid .ad-unit,
  .hero-grid .ad-unit-large {
    min-height: 220px;
  }
}

@media (max-width: 560px) {
  .section-wrap,
  .header-inner,
  .footer-inner {
    width: min(100% - 18px, 1040px);
  }

  .lead-story.top-story-card {
    min-height: 300px;
  }

  .top-story-copy h1 {
    font-size: 2rem;
  }

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

@media (max-height: 820px) and (min-width: 821px) {
  .hero-grid {
    padding-top: 10px;
  }

  .lead-story.top-story-card {
    min-height: 300px;
  }

  .top-story-copy {
    padding: 18px 22px;
  }

  .top-story-copy h1 {
    font-size: clamp(1.85rem, 3.1vw, 3.05rem);
    -webkit-line-clamp: 3;
  }

  .hero-grid .quick-actions {
    margin-top: 16px;
  }

  .hero-grid .ad-stack {
    grid-template-rows: minmax(225px, 1.16fr) minmax(180px, 0.84fr);
  }
}

/* Ad image cleanup: first-screen ads should show the artwork itself without duplicate overlay text. */
.hero-grid .ad-unit::after,
.hero-grid .ad-unit > span,
.hero-grid .ad-unit > strong,
.hero-grid .ad-unit > small {
  display: none;
}

.hero-grid .ad-unit .ad-image {
  border-radius: 6px;
}

/* Small-screen tightening for long video titles and compact game browsers. */
@media (max-width: 560px) {
  .top-story-copy {
    padding: 16px 14px 18px;
  }

  .top-story-copy h1 {
    font-size: 1.72rem;
    line-height: 1.03;
    -webkit-line-clamp: 4;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .top-story-copy p {
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .hero-grid .quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .hero-grid .quick-actions a {
    flex: 1 1 calc(33.333% - 8px);
    min-width: 96px;
    padding: 10px 8px;
    text-align: center;
    font-size: 0.84rem;
    line-height: 1.1;
  }

  .hero-grid .ad-stack {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }

  .hero-grid .ad-unit,
  .hero-grid .ad-unit-large {
    min-height: 220px;
  }
}

@media (max-width: 420px) {
  .top-story-copy h1 {
    font-size: 1.55rem;
  }

  .hero-grid .quick-actions a {
    min-width: 0;
    font-size: 0.78rem;
  }
}

@media (max-width: 560px) {
  .top-story-copy h1 {
    display: block;
    max-width: 100%;
    max-height: 5.6em;
    white-space: normal !important;
    overflow: hidden;
    font-size: 1.45rem;
  }

  .hero-grid .quick-actions a {
    flex: 1 1 calc(50% - 6px);
    min-width: 132px;
  }
}

@media (max-width: 420px) {
  .top-story-copy h1 {
    font-size: 1.32rem;
  }

  .hero-grid .quick-actions a {
    flex-basis: calc(50% - 6px);
    min-width: 0;
  }
}

@media (max-width: 560px) {
  .hero-grid .quick-actions a {
    flex: 0 0 calc(50% - 4px);
    box-sizing: border-box;
  }
}

@media (max-width: 560px) {
  .section-wrap,
  .header-inner,
  .footer-inner {
    width: calc(100vw - 18px) !important;
    max-width: calc(100vw - 18px) !important;
  }

  .lead-story.top-story-card,
  .top-story-copy,
  .hero-grid .quick-actions {
    min-width: 0;
    max-width: 100%;
  }

  .top-story-copy {
    width: calc(100vw - 46px) !important;
    max-width: calc(100vw - 46px) !important;
    box-sizing: border-box;
  }

  .hero-grid .quick-actions {
    width: 100%;
  }

  .hero-grid .quick-actions a {
    flex: 0 0 calc(50% - 4px) !important;
    max-width: calc(50% - 4px);
  }
}

/* Cricket-only weekly layout and no external-exit affordances. */
.cricket-only-grid {
  grid-template-columns: minmax(210px, 1fr) minmax(300px, 360px) minmax(210px, 1fr) !important;
  align-items: center;
  gap: 14px;
}

.cricket-only-grid .centered-true-soul {
  grid-column: 2;
  max-width: 360px;
  justify-self: center;
}

.cricket-only-grid .cricket-column {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.cricket-only-grid .weekly-update-card {
  aspect-ratio: auto;
  min-height: 220px;
  justify-content: center;
}

.cricket-only-grid .true-soul-image,
.cricket-only-grid .true-soul-placeholder {
  min-height: 430px;
}

.true-soul-copy a,
.weekly-update-card a,
.event-card a,
.youtube-fallback {
  display: none !important;
}

.ad-unit {
  cursor: default;
}

.ad-unit:hover,
.ad-unit:focus-visible {
  transform: none;
}

@media (max-width: 980px) {
  .cricket-only-grid {
    grid-template-columns: 1fr !important;
  }

  .cricket-only-grid .centered-true-soul {
    grid-column: auto;
    order: -1;
    width: min(100%, 420px);
  }

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

@media (max-width: 640px) {
  .cricket-only-grid .cricket-column {
    grid-template-columns: 1fr;
  }

  .cricket-only-grid .true-soul-image,
  .cricket-only-grid .true-soul-placeholder {
    min-height: 380px;
  }
}

/* Wider feature surfaces requested: True Soul and one-card blog carousel. */
.cricket-only-grid {
  grid-template-columns: minmax(210px, 1fr) minmax(430px, 520px) minmax(210px, 1fr) !important;
  gap: 16px;
}

.cricket-only-grid .centered-true-soul {
  width: 100%;
  max-width: 520px;
}

.cricket-only-grid .true-soul-image,
.cricket-only-grid .true-soul-placeholder {
  aspect-ratio: 4 / 5;
  min-height: 500px;
}

.cricket-only-grid .true-soul-copy {
  padding: 24px 28px 28px;
}

.blog-carousel {
  grid-template-columns: 42px minmax(0, min(760px, calc(100vw - 112px))) 42px !important;
  gap: 8px;
}

.blog-carousel .blog-grid {
  width: 100%;
}

.blog-carousel .blog-card {
  flex-basis: 100%;
  min-width: 100%;
}

.blog-carousel .poster-card {
  min-height: 640px;
}

.blog-carousel .poster-image,
.blog-carousel .poster-placeholder {
  min-height: 390px;
}

.carousel-button {
  border-radius: 6px;
}

@media (max-width: 980px) {
  .cricket-only-grid .centered-true-soul {
    width: min(100%, 560px);
    max-width: 560px;
  }
}

@media (max-width: 640px) {
  .blog-carousel {
    grid-template-columns: 32px minmax(0, calc(100vw - 82px)) 32px !important;
    gap: 6px;
  }

  .blog-carousel .poster-card {
    min-height: 590px;
  }

  .blog-carousel .poster-image,
  .blog-carousel .poster-placeholder {
    min-height: 330px;
  }
}

/* Blog carousel loop controls and ad resolution helper text. */
.carousel-button {
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  outline: none;
  box-shadow: none;
}

.carousel-button:focus,
.carousel-button:active,
.carousel-button:focus-visible {
  outline: none;
  box-shadow: none;
  filter: none;
}

.carousel-button:hover {
  filter: brightness(1.08);
}

.ad-unit small {
  display: block;
  max-width: min(100%, 760px);
  margin-inline: auto;
  line-height: 1.35;
}

.leaderboard small,
.bottom-ad small {
  font-size: 0.92rem;
}

/* Move the blog poster title to the top of the blog card. */
.blog-carousel .poster-placeholder,
.poster-placeholder {
  justify-content: flex-start;
}

/* Gaming news carousel replacing the old cricket cards. */
.news-grid.gaming-news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.gaming-news-shell {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  gap: 10px;
  align-items: stretch;
}

.gaming-news-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  min-width: 0;
}

.gaming-news-track::-webkit-scrollbar {
  display: none;
}

.gaming-news-card {
  flex: 0 0 min(335px, 86vw);
  min-height: 230px;
  scroll-snap-align: start;
  border: 1px solid var(--panel-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(224, 0, 0, 0.16), transparent 44%),
    var(--panel);
  padding: 18px;
  display: flex;
  flex-direction: column;
}

.gaming-news-card span,
.gaming-news-card small {
  color: #ff3f3f;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gaming-news-card h3 {
  margin: 10px 0 10px;
  font-size: clamp(1.05rem, 2vw, 1.34rem);
  line-height: 1.08;
}

.gaming-news-card p {
  color: var(--muted);
  margin-bottom: 16px;
}

.gaming-news-card small {
  margin-top: auto;
  color: var(--muted);
  text-transform: none;
}

.gaming-carousel-button {
  border: 1px solid var(--panel-line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--red), var(--red-dark));
  color: white;
  font-size: 2rem;
  font-weight: 900;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.gaming-carousel-button:focus,
.gaming-carousel-button:active,
.gaming-carousel-button:focus-visible {
  outline: none;
  box-shadow: none;
}

.gaming-carousel-button:hover {
  filter: brightness(1.08);
}

.gaming-true-soul {
  width: min(100%, 640px);
  max-width: 640px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .gaming-news-shell {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 8px;
  }

  .gaming-news-card {
    flex-basis: 100%;
    min-height: 250px;
    padding: 16px;
  }

  .gaming-carousel-button {
    font-size: 1.5rem;
  }
}

/* Full-card ad placements: no text below ads, entire box is image inventory. */
.ad-unit {
  position: relative;
  padding: 0 !important;
  overflow: hidden;
  background: #050505;
}

.ad-unit > span,
.ad-unit > strong,
.ad-unit > small {
  display: none !important;
}

.ad-unit .ad-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0 !important;
  margin: 0 !important;
  border-radius: inherit;
  aspect-ratio: auto !important;
  background: #050505;
}

.ad-unit .ad-media:empty {
  display: block;
}

.ad-unit .ad-media .ad-image {
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: cover !important;
  border-radius: inherit;
  z-index: 1;
}

.ad-placeholder {
  width: 100%;
  height: 100%;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(224, 0, 0, 0.2), transparent 55%),
    var(--panel-soft);
}

.ad-media .ad-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ad-image-missing .ad-media .ad-fallback {
  z-index: 2;
}

.ad-placeholder span {
  color: #ff3f3f;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ad-placeholder strong {
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  line-height: 1.05;
}

.ad-placeholder small {
  color: var(--muted);
  line-height: 1.35;
}

/* Live-hosting sponsor slots use neutral promo class names to avoid browser filters hiding the content. */
.promo-stack {
  display: grid;
  grid-template-rows: minmax(265px, 1.2fr) minmax(215px, 0.8fr);
  gap: 10px;
  min-width: 0;
}

.promo-card {
  position: relative;
  min-height: 220px;
  padding: 0 !important;
  overflow: hidden;
  display: block;
  border: 1px solid var(--panel-line);
  border-radius: 8px;
  background: #050505;
}

.promo-card-large {
  min-height: 265px;
}

.promo-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0 !important;
  border-radius: inherit;
  background: #050505;
  overflow: hidden;
}

.promo-image {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: contain !important;
  object-position: center;
  background: #050505;
  border-radius: inherit;
  opacity: 0;
  z-index: 1;
  transition: opacity 420ms ease;
}

.promo-image.active {
  opacity: 1;
}

.promo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(224, 0, 0, 0.2), transparent 55%),
    var(--panel-soft);
}

.promo-media .promo-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.promo-image-missing .promo-media .promo-fallback {
  z-index: 2;
}

.promo-placeholder span {
  color: #ff3f3f;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-placeholder strong {
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  line-height: 1.05;
}

.promo-placeholder small {
  color: var(--muted);
  line-height: 1.35;
}

.banner-promo {
  min-height: 220px;
  max-width: 1120px;
  margin: 0 auto;
}

.video-promo {
  min-height: 330px;
}

.bottom-promo {
  min-height: 300px;
  align-items: center;
  text-align: center;
}

.hero-grid .premium-promo .promo-image,
.hero-grid .rotating-promo .promo-image,
.banner-promo .promo-image,
.video-promo .promo-image,
.bottom-promo .promo-image {
  object-fit: contain !important;
  background: #050505;
}

@media (max-width: 1120px) {
  .hero-grid .promo-stack {
    grid-template-rows: minmax(235px, 1.1fr) minmax(195px, 0.9fr);
  }
}

@media (max-width: 820px) {
  .hero-grid .promo-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }
}

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

  .promo-card,
  .promo-card-large {
    min-height: 220px;
  }
}

.hero-grid .premium-ad .ad-image,
.leaderboard .ad-image,
.bottom-ad .ad-image {
  object-fit: contain !important;
}

.leaderboard {
  aspect-ratio: 1400 / 430;
  min-height: 240px;
}

.video-ad {
  aspect-ratio: 760 / 1086;
  min-height: 320px;
}

.bottom-ad {
  aspect-ratio: 1400 / 546;
  min-height: 360px;
}

@media (max-width: 640px) {
  .leaderboard {
    min-height: 180px;
  }

  .video-ad {
    min-height: 280px;
  }

  .bottom-ad {
    min-height: 260px;
  }
}
