/* ===== NON-CRITICAL STYLES ===== */
/* Critical CSS is inlined in <head> for LCP. This file loads async. */

/* ===== BASE ===== */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Strong focus styles for keyboard + TV remote navigation */
:focus-visible {
  outline: 3px solid var(--orange-bright);
  outline-offset: 3px;
}

.btn:focus-visible,
.social-card:focus-visible,
.host-links a:focus-visible,
.nav-links a:focus-visible,
.game-card:focus-visible {
  outline: 3px solid var(--orange-bright);
  outline-offset: 3px;
}

/* ===== NAV ===== */
.nav-links a {
  transition: color 0.2s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.15rem;
}

.nav-links a:hover {
  color: var(--orange-bright);
}

/* ===== HERO ===== */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Prefer reduced motion: fixed hero bg */
@media (prefers-reduced-motion: reduce) {
  .hero-bg {
    animation: none !important;
    opacity: 0 !important;
  }
  .hero-bg-1 {
    opacity: 1 !important;
  }
}

/* ===== SECTION BACKGROUNDS (brand + Unsplash) ===== */
.section-has-bg {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: transparent;
}

.section-has-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.28;
  pointer-events: none;
}

.section-has-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 15, 0.88) 0%,
    rgba(10, 10, 15, 0.82) 40%,
    rgba(10, 10, 15, 0.9) 100%
  );
}

.section-dark.section-has-bg::after {
  background: linear-gradient(
    180deg,
    rgba(8, 8, 13, 0.9) 0%,
    rgba(8, 8, 13, 0.84) 45%,
    rgba(8, 8, 13, 0.92) 100%
  );
}

.section-bg-setup::before { background-image: url("assets/bg/bg-setup.jpg"); opacity: 0.26; }
.section-bg-neon::before { background-image: url("assets/bg/bg-neon.jpg"); opacity: 0.3; }
.section-bg-controller::before { background-image: url("assets/bg/bg-controller.jpg"); opacity: 0.28; }
.section-bg-arena::before { background-image: url("assets/bg/bg-arena.jpg"); opacity: 0.25; }
.section-bg-neon-street::before { background-image: url("assets/bg/bg-neon-street.jpg"); opacity: 0.3; }
.section-bg-city::before { background-image: url("assets/bg/bg-city.jpg"); opacity: 0.32; }
.section-bg-racing::before { background-image: url("assets/bg/bg-racing.jpg"); opacity: 0.24; }
.section-bg-warzone::before { background-image: url("assets/bg/bg-warzone.jpg"); opacity: 0.22; background-position: center top; }

.section-has-bg > .container {
  position: relative;
  z-index: 1;
}

/* ===== GAMES WE PLAY ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.game-card {
  position: relative;
  min-height: 220px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 107, 0, 0.35);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange-bright);
  box-shadow: 0 12px 36px rgba(255, 107, 0, 0.28);
}

.game-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.35s ease;
}

.game-card:hover .game-card-bg {
  transform: scale(1.06);
}

.game-card-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 15, 0.15) 0%,
    rgba(10, 10, 15, 0.55) 45%,
    rgba(10, 10, 15, 0.92) 100%
  );
}

.game-card-body {
  position: relative;
  z-index: 2;
  padding: 1rem 1rem 1.15rem;
  width: 100%;
}

.game-card-tag {
  display: inline-block;
  font-family: 'Orbitron', system-ui, sans-serif;
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.game-card h3 {
  font-family: 'Orbitron', system-ui, sans-serif;
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
  color: var(--orange-bright);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.game-card p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.game-fighting .game-card-bg {
  background-image: url("assets/bg/bg-neon-street.jpg");
  filter: saturate(1.15) contrast(1.05);
}
.game-fighting .game-card-scrim {
  background: linear-gradient(180deg, rgba(180, 0, 40, 0.25) 0%, rgba(10, 10, 15, 0.55) 40%, rgba(10, 10, 15, 0.94) 100%);
}

.game-racing .game-card-bg {
  background-image: url("assets/bg/bg-racing.jpg");
}
.game-racing .game-card-scrim {
  background: linear-gradient(180deg, rgba(0, 80, 160, 0.2) 0%, rgba(10, 10, 15, 0.5) 40%, rgba(10, 10, 15, 0.94) 100%);
}

.game-br .game-card-bg {
  background-image: url("assets/bg/bg-neon.jpg");
}
.game-br .game-card-scrim {
  background: linear-gradient(180deg, rgba(120, 0, 200, 0.22) 0%, rgba(10, 10, 15, 0.5) 40%, rgba(10, 10, 15, 0.94) 100%);
}

.game-openworld .game-card-bg {
  background-image: url("assets/bg/bg-city.jpg");
}
.game-openworld .game-card-scrim {
  background: linear-gradient(180deg, rgba(0, 40, 80, 0.3) 0%, rgba(10, 10, 15, 0.55) 40%, rgba(10, 10, 15, 0.94) 100%);
}

.game-sports .game-card-bg {
  background-image: url("assets/bg/bg-sports.jpg");
}
.game-sports .game-card-scrim {
  background: linear-gradient(180deg, rgba(0, 100, 40, 0.2) 0%, rgba(10, 10, 15, 0.5) 40%, rgba(10, 10, 15, 0.94) 100%);
}

.game-warzone .game-card-bg {
  background-image: url("assets/bg/bg-warzone.jpg");
  background-position: center top;
}
.game-warzone .game-card-scrim {
  background: linear-gradient(180deg, rgba(255, 107, 0, 0.22) 0%, rgba(10, 10, 15, 0.5) 40%, rgba(10, 10, 15, 0.94) 100%);
}

.games-credit {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  opacity: 0.85;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.45;
}

@media (min-width: 900px) {
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .game-card {
    min-height: 240px;
  }
}

@media (max-width: 520px) {
  .games-grid {
    grid-template-columns: 1fr 1fr;
  }
  .game-card {
    min-height: 200px;
  }
  .game-card p {
    font-size: 0.75rem;
  }
}

.btn {
  min-height: 48px;
  min-width: 48px;
  touch-action: manipulation;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255, 107, 0, 0.5);
}

.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange-bright);
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}

.section-dark {
  background: var(--bg-dark);
}

.section-title {
  font-family: 'Orbitron', system-ui, sans-serif;
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  text-align: center;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  padding: 0 1rem;
}

/* ===== HIGHLIGHTS ===== */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.highlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease;
  min-height: 160px;
}

.highlight-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
}

.card-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
  background: #e74c3c;
  color: white;
  margin-bottom: 0.9rem;
  text-transform: uppercase;
}

.card-badge.orange { background: var(--orange); }
.card-badge.blue { background: var(--blue); }

.highlight-card h3 {
  font-family: 'Orbitron', system-ui, sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.highlight-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ===== HOSTS ===== */
.hosts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.host-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.2s ease;
  min-height: 320px;
}

.host-card:hover {
  transform: translateY(-4px);
}

.host-avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: #111;
  flex-shrink: 0;
}

.avatar-placeholder.gold {
  background: linear-gradient(135deg, var(--gold), #ff8c00);
}

.host-card h3 {
  font-family: 'Orbitron', system-ui, sans-serif;
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

.host-role {
  color: var(--orange-bright);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.host-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

.host-links {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.host-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  transition: border-color 0.2s ease, color 0.2s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.host-links a:hover {
  border-color: var(--orange);
  color: var(--orange-bright);
}

/* ===== SOCIALS ===== */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.social-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.35rem 0.75rem;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  min-height: 110px;
  min-width: 44px;
  touch-action: manipulation;
}

.social-card:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
}

.social-icon {
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
}

.social-card span {
  font-weight: 600;
  font-size: 0.95rem;
}

.social-card small {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.social-card.twitch:hover { border-color: #9146ff; }
.social-card.youtube:hover { border-color: #ff0000; }
.social-card.tiktok:hover { border-color: #00f2ea; }
.social-card.discord:hover { border-color: #5865f2; }
.social-card.instagram:hover { border-color: #e1306c; }

/* ===== ABOUT ===== */
.about-content {
  text-align: center;
  max-width: 700px;
  padding: 0 0.5rem;
}

.about-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.about-text strong {
  color: var(--orange-bright);
}

.about-text.secondary {
  font-size: 0.95rem;
  opacity: 0.8;
}

.wbp-badge {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: 'Orbitron', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  padding: 0.7rem 1.4rem;
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: 4px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 2.5rem 1rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #06060a;
}

.footer p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-tag {
  margin-top: 0.4rem;
  font-size: 0.8rem !important;
  opacity: 0.7;
}

/* =========================================
   TABLETS
   ========================================= */
@media (max-width: 1024px) {
  .section {
    padding: 4rem 0;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3.5rem 0;
  }

  .section-subtitle {
    margin-bottom: 2rem;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hosts-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .host-card {
    min-height: auto;
    padding: 1.75rem 1.25rem;
  }

  .social-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
}

/* =========================================
   PHONES
   ========================================= */
@media (max-width: 480px) {
  .nav {
    height: 60px;
  }

  .nav-inner {
    height: 60px;
  }

  .logo-main {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
  }

  .logo-sub {
    font-size: 0.65rem;
  }

  .hero {
    padding-top: 60px;
    min-height: 100svh;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 11vw, 2.8rem);
    margin-bottom: 1rem;
  }

  .hero-tagline {
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
    padding: 0 0.5rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .btn {
    width: 100%;
    padding: 0.95rem 1.25rem;
    font-size: 0.95rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 1.45rem;
    letter-spacing: 0.5px;
  }

  .highlight-card {
    padding: 1.35rem;
    min-height: auto;
  }

  .highlight-card h3 {
    font-size: 1.1rem;
  }

  .host-avatar {
    width: 90px;
    height: 90px;
    font-size: 1.4rem;
  }

  .host-card h3 {
    font-size: 1.3rem;
  }

  .social-grid {
    grid-template-columns: 1fr 1fr;
  }

  .social-card {
    padding: 1.2rem 0.5rem;
    min-height: 100px;
  }

  .wbp-badge {
    font-size: 0.75rem;
    padding: 0.6rem 1.1rem;
    letter-spacing: 1.5px;
  }

  .footer {
    padding: 2rem 1rem;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.9rem;
  }

  .logo-main {
    font-size: 0.72rem;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.3rem;
  }
}

/* Landscape phones */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 80px 0 40px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-tagline {
    margin-bottom: 1.25rem;
  }
}

/* =========================================
   LARGE DESKTOPS
   ========================================= */
@media (min-width: 1400px) {
  .container {
    width: min(1200px, 90%);
  }

  .section {
    padding: 6rem 0;
  }

  .section-title {
    font-size: 2.6rem;
  }

  .hero h1 {
    font-size: 5.5rem;
  }

  .hero-tagline {
    font-size: 1.25rem;
  }

  .btn {
    padding: 1rem 2.1rem;
    font-size: 1.05rem;
  }
}

/* =========================================
   TV / 10-FOOT UI (big screens viewed from distance)
   ========================================= */
@media (min-width: 1800px) {
  .container {
    width: min(1400px, 88%);
  }

  .nav {
    height: 84px;
  }

  .nav-inner {
    height: 84px;
  }

  .logo-main {
    font-size: 1.15rem;
  }

  .logo-sub {
    font-size: 0.85rem;
  }

  .nav-links {
    gap: 2.5rem;
  }

  .nav-links a {
    font-size: 1.15rem;
    min-height: 52px;
  }

  .hero {
    padding-top: 84px;
  }

  .eyebrow {
    font-size: 1.1rem;
    letter-spacing: 4px;
    margin-bottom: 1.4rem;
  }

  .hero h1 {
    font-size: clamp(4rem, 7vw, 6.5rem);
    margin-bottom: 1.5rem;
  }

  .hero-tagline {
    font-size: 1.45rem;
    max-width: 700px;
    margin-bottom: 2.5rem;
  }

  .btn {
    min-height: 60px;
    padding: 1.15rem 2.4rem;
    font-size: 1.2rem;
    border-radius: 8px;
  }

  .section {
    padding: 7rem 0;
  }

  .section-title {
    font-size: 3rem;
    margin-bottom: 0.75rem;
  }

  .section-subtitle {
    font-size: 1.35rem;
    margin-bottom: 3.5rem;
  }

  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .highlight-card {
    padding: 2.2rem;
    min-height: 220px;
    border-radius: 16px;
  }

  .highlight-card h3 {
    font-size: 1.5rem;
  }

  .highlight-card p {
    font-size: 1.15rem;
  }

  .card-badge {
    font-size: 0.85rem;
    padding: 0.4rem 0.85rem;
  }

  .hosts-grid {
    max-width: 1000px;
    gap: 2.5rem;
  }

  .host-card {
    padding: 2.8rem 2rem;
    min-height: 400px;
    border-radius: 20px;
  }

  .host-avatar {
    width: 130px;
    height: 130px;
    font-size: 2.1rem;
    margin-bottom: 1.4rem;
  }

  .host-card h3 {
    font-size: 1.8rem;
  }

  .host-role {
    font-size: 1.1rem;
  }

  .host-card p {
    font-size: 1.15rem;
  }

  .host-links a {
    font-size: 1.05rem;
    padding: 0.75rem 1.3rem;
    min-height: 52px;
  }

  .social-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
  }

  .social-card {
    padding: 2rem 1rem;
    min-height: 150px;
    border-radius: 16px;
  }

  .social-icon {
    font-size: 2rem;
  }

  .social-card span {
    font-size: 1.2rem;
  }

  .social-card small {
    font-size: 0.95rem;
  }

  .about-text {
    font-size: 1.3rem;
  }

  .about-text.secondary {
    font-size: 1.15rem;
  }

  .wbp-badge {
    font-size: 1.05rem;
    padding: 0.9rem 1.8rem;
  }

  .footer {
    padding: 3.5rem 1rem;
  }

  .footer p {
    font-size: 1.1rem;
  }

  .footer-tag {
    font-size: 1rem !important;
  }
}

/* Extra-large TVs / 4K */
@media (min-width: 2400px) {
  .container {
    width: min(1600px, 85%);
  }

  .hero h1 {
    font-size: 7rem;
  }

  .section-title {
    font-size: 3.4rem;
  }

  .btn {
    min-height: 68px;
    font-size: 1.3rem;
    padding: 1.25rem 2.8rem;
  }
}

/* Coarse pointer (remotes, touch) – bigger targets */
@media (pointer: coarse) {
  .btn {
    min-height: 52px;
  }

  .nav-links a,
  .host-links a,
  .social-card {
    min-height: 52px;
  }
}

/* Touch devices – reduce hover motion */
@media (hover: none) {
  .highlight-card:hover,
  .host-card:hover,
  .social-card:hover,
  .btn-primary:hover {
    transform: none;
  }

  .btn-primary:active {
    transform: scale(0.98);
  }
}

/* Safe area for notched phones */
@supports (padding: max(0px)) {
  .nav {
    padding-left: max(0px, env(safe-area-inset-left));
    padding-right: max(0px, env(safe-area-inset-right));
  }

  .footer {
    padding-bottom: max(2rem, env(safe-area-inset-bottom));
  }

  .hero {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .highlight-card,
  .host-card,
  .social-card,
  .btn {
    transition: none;
  }

  .highlight-card:hover,
  .host-card:hover,
  .social-card:hover,
  .btn-primary:hover {
    transform: none;
  }
}

.poster-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1.25rem;max-width:960px;margin:1.75rem auto 0}
.poster-grid-5{max-width:1200px}
.poster-card{margin:0;background:var(--bg-card,#12121a);border:2px solid rgba(255,107,0,.28);border-radius:14px;overflow:hidden;box-shadow:0 10px 40px rgba(0,0,0,.35);display:flex;flex-direction:column;transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease}
.poster-card:hover{transform:translateY(-3px);box-shadow:0 14px 44px rgba(0,0,0,.45)}
.poster-media{position:relative;isolation:isolate}
.poster-card img{display:block;width:100%;height:auto}
.poster-tag{position:absolute;top:.7rem;left:.7rem;z-index:2;font-family:'Orbitron',system-ui,sans-serif;font-size:.62rem;letter-spacing:1px;text-transform:uppercase;padding:.35rem .55rem;border-radius:999px;background:rgba(0,0,0,.72);border:1px solid currentColor;backdrop-filter:blur(4px)}
.poster-card figcaption{padding:.85rem 1rem 1.05rem;text-align:center;font-weight:600;font-size:.95rem;color:var(--text,#f0f0f5);display:flex;flex-direction:column;gap:.28rem;flex:1}
.poster-card figcaption strong{font-family:'Orbitron',system-ui,sans-serif;font-size:.92rem;letter-spacing:.3px}
.poster-cap-line{display:block;font-size:.82rem;font-weight:600;color:var(--orange-bright,#ff8c2a);line-height:1.35}
.poster-cap-vibe{display:block;font-size:.75rem;font-weight:500;color:var(--text-muted,#a8a8b8);text-transform:uppercase;letter-spacing:.6px}
.poster-schedule-note{margin-top:-.35rem !important;font-size:.9rem !important}

/* Per-card game/vibe themes — distinct borders, glows, tag colors */
.poster-theme-arena{border-color:rgba(255,72,36,.75);box-shadow:0 10px 40px rgba(255,72,36,.18),0 10px 40px rgba(0,0,0,.35)}
.poster-theme-arena .poster-tag{color:#ff6b3d;border-color:rgba(255,107,61,.65)}
.poster-theme-arena figcaption{background:linear-gradient(180deg,rgba(255,72,36,.12),transparent)}
.poster-theme-arena .poster-cap-vibe{color:#ff8f6a}

.poster-theme-warzone{border-color:rgba(62,190,95,.75);box-shadow:0 10px 40px rgba(62,190,95,.18),0 10px 40px rgba(0,0,0,.35)}
.poster-theme-warzone .poster-tag{color:#5ee087;border-color:rgba(94,224,135,.65)}
.poster-theme-warzone figcaption{background:linear-gradient(180deg,rgba(62,190,95,.12),transparent)}
.poster-theme-warzone .poster-cap-line{color:#5ee087}
.poster-theme-warzone .poster-cap-vibe{color:#8fd9a6}

.poster-theme-racing{border-color:rgba(40,160,255,.75);box-shadow:0 10px 40px rgba(40,160,255,.2),0 10px 40px rgba(0,0,0,.35)}
.poster-theme-racing .poster-tag{color:#5cbcff;border-color:rgba(92,188,255,.65)}
.poster-theme-racing figcaption{background:linear-gradient(180deg,rgba(40,160,255,.14),transparent)}
.poster-theme-racing .poster-cap-line{color:#5cbcff}
.poster-theme-racing .poster-cap-vibe{color:#8ecfff}

.poster-theme-br{border-color:rgba(210,70,255,.75);box-shadow:0 10px 40px rgba(210,70,255,.2),0 10px 40px rgba(0,0,0,.35)}
.poster-theme-br .poster-tag{color:#e08cff;border-color:rgba(224,140,255,.65)}
.poster-theme-br figcaption{background:linear-gradient(180deg,rgba(210,70,255,.14),transparent)}
.poster-theme-br .poster-cap-line{color:#e08cff}
.poster-theme-br .poster-cap-vibe{color:#d4a0ff}

.poster-theme-saturday{border-color:rgba(255,193,7,.8);box-shadow:0 10px 40px rgba(255,193,7,.22),0 10px 40px rgba(0,0,0,.35)}
.poster-theme-saturday .poster-tag{color:#ffc107;border-color:rgba(255,193,7,.7)}
.poster-theme-saturday figcaption{background:linear-gradient(180deg,rgba(255,193,7,.16),transparent)}
.poster-theme-saturday .poster-cap-line{color:#ffc107}
.poster-theme-saturday .poster-cap-vibe{color:#ffe08a}

@media(max-width:700px){.poster-grid{grid-template-columns:1fr;max-width:420px}}
@media(min-width:900px){.poster-grid-5{grid-template-columns:repeat(3,minmax(0,1fr));max-width:1100px}}
@media(min-width:1100px){
  .poster-grid{grid-template-columns:repeat(4,minmax(0,1fr));max-width:1200px;gap:1rem}
  .poster-grid-5{grid-template-columns:repeat(5,minmax(0,1fr));max-width:1280px}
  .poster-card-wide{grid-column:auto}
}
@media(min-width:700px) and (max-width:899px){
  .poster-grid-5 .poster-card-wide{grid-column:1 / -1;max-width:420px;justify-self:center;width:100%}
}

.host-photo{width:120px;height:120px;border-radius:50%;object-fit:cover;border:3px solid rgba(255,107,0,.55);box-shadow:0 8px 24px rgba(0,0,0,.4);display:block;margin:0 auto}
.hosts-banner{max-width:420px;margin:1.25rem auto 0;border-radius:14px;overflow:hidden;border:1px solid rgba(145,70,255,.35)}
.hosts-banner img{display:block;width:100%;height:auto}



/* Weekly day grid */
.week-schedule {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 1100px;
  margin: 0 auto 2rem;
}
.week-day {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.9rem 0.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.week-day-name {
  font-family: 'Orbitron', system-ui, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange-bright);
}
.week-day-host {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}
.week-day-loc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.35;
}
.week-day-joint {
  border-color: rgba(255, 193, 7, 0.5);
  background: linear-gradient(180deg, rgba(255, 193, 7, 0.12), var(--bg-card));
}
.week-day-joint .week-day-name { color: var(--gold); }
@media (max-width: 900px) {
  .week-schedule { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .week-day-joint { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .week-schedule { grid-template-columns: 1fr; }
  .week-day-joint { grid-column: auto; }
}

/* ===== SHOW / SCHEDULE ===== */
.schedule-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin: 0 auto 2rem;
  max-width: 900px;
}

.schedule-pill {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.65rem 1.2rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.schedule-pill.gold {
  border-color: rgba(255, 193, 7, 0.45);
}

.schedule-pill .pill-label {
  font-family: 'Orbitron', system-ui, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange-bright);
  margin-right: 0.55rem;
}

.schedule-pill.gold .pill-label {
  color: var(--gold);
}

.host-meta {
  color: var(--gold) !important;
  font-size: 0.85rem !important;
  font-weight: 600;
  margin-bottom: 0.65rem !important;
}

/* ===== CREATOR FORM ===== */
.creator-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem;
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
}

.creator-blurb h3 {
  font-family: 'Orbitron', system-ui, sans-serif;
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: var(--orange-bright);
}

.creator-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.creator-list li {
  padding: 0.55rem 0.85rem;
  margin-bottom: 0.5rem;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.creator-list strong {
  color: var(--text);
}

.creator-blurb > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.creator-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem 1.35rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0.85rem 0 0.35rem;
  color: var(--text);
}

.form-label:first-child {
  margin-top: 0;
}

.form-input {
  width: 100%;
  box-sizing: border-box;
  background: #0e0e16;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  border-radius: 8px;
  padding: 0.75rem 0.85rem;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-input:focus {
  outline: 2px solid var(--orange-bright);
  outline-offset: 1px;
  border-color: var(--orange);
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

.form-check {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin: 1.15rem 0 0.85rem;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.45;
  cursor: pointer;
}

.form-check input {
  margin-top: 0.2rem;
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--orange);
  flex-shrink: 0;
}

.form-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.45;
}

.form-submit {
  width: 100%;
}

@media (max-width: 768px) {
  .creator-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ===== SUPPORT ===== */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.support-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
}

.support-card h3 {
  font-family: 'Orbitron', system-ui, sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
}

.support-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1.15rem;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.support-actions .btn {
  font-size: 0.88rem;
  padding: 0.75rem 1.2rem;
}

/* ===== LIVE ===== */
.coming-soon-banner {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  max-width: 820px;
  margin: 0 auto 1.75rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 193, 7, 0.08);
  border: 1px solid rgba(255, 193, 7, 0.35);
  border-radius: 12px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.coming-soon-banner strong {
  color: var(--gold);
  font-family: 'Orbitron', system-ui, sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto 0.5rem;
}

.live-label {
  text-align: center;
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.live-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 0, 0.25);
  background: #000;
}

.live-embed.king {
  border-color: rgba(145, 70, 255, 0.35);
}

.live-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.live-link {
  text-align: center;
  margin: 0.5rem 0 0;
}

.live-link a {
  color: var(--orange-bright);
  text-decoration: none;
  font-size: 0.9rem;
}

.live-link a:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .schedule-pill {
    width: 100%;
    text-align: center;
    border-radius: 12px;
  }

  .support-actions .btn {
    width: 100%;
  }
}

.brand-lockup{display:flex;align-items:center;gap:.75rem;text-decoration:none;color:inherit}
.brand-logo{width:48px;height:48px;object-fit:contain;flex-shrink:0;filter:drop-shadow(0 2px 8px rgba(0,0,0,.45))}
.brand-text{display:flex;flex-direction:column;line-height:1.15}
.footer-brand{display:flex;flex-direction:column;align-items:center;gap:.75rem;text-align:center}
.footer-logo{width:110px;height:auto;object-fit:contain;filter:drop-shadow(0 6px 18px rgba(0,0,0,.5))}
.wbp-badge-logo{width:88px;height:auto;display:block;margin:1.25rem auto .5rem}
@media(max-width:700px){.brand-logo{width:40px;height:40px}}

