:root {
  color-scheme: dark;
  --bg: #0b0508;
  --panel: rgba(38, 10, 22, 0.82);
  --panel-strong: #220811;
  --text: #fff5ff;
  --muted: #dec2d2;
  --pink: #ff3fb4;
  --hot-pink: #ff0f76;
  --purple: #7c2cff;
  --red: #e11731;
  --crimson: #83091a;
  --wine: #33030c;
  --gold: #ffc861;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 80px rgba(4, 0, 12, 0.44);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 63, 180, 0.18), transparent 34rem),
    radial-gradient(circle at 72% 8%, rgba(131, 9, 26, 0.42), transparent 30rem),
    linear-gradient(135deg, #0b0508 0%, #210a2b 48%, #160308 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 10;
  display: flex;
  width: 15rem;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  padding: 1.25rem 1rem;
  background: rgba(11, 5, 8, 0.78);
  border-right: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.main-nav,
.hero-actions,
.day-tabs,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--line);
}

.brand-identity {
  display: grid;
  justify-items: center;
  gap: 0.35rem;
}

.brand-mark,
.casino-logo,
.avatar {
  display: grid;
  place-items: center;
  color: white;
  font-weight: 950;
}

.brand-mark {
  width: 3rem;
  height: 2.55rem;
  border-radius: 0.45rem;
  overflow: hidden;
  background: #f6c2cf;
  box-shadow:
    0 0 14px rgba(255, 63, 180, 0.22),
    0 0 24px rgba(246, 194, 207, 0.18);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    brightness(0.9)
    contrast(1.04)
    saturate(1.08)
    drop-shadow(0 0 5px rgba(255, 15, 118, 0.28));
  opacity: 0.82;
}

.live-badge {
  display: none;
  padding: 0.22rem 0.48rem;
  border: 1px solid rgba(255, 98, 113, 0.72);
  border-radius: 999px;
  background: linear-gradient(135deg, #b70f25, #ff1f46 54%, #ff0f76);
  color: white;
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  line-height: 1;
  box-shadow:
    0 0 18px rgba(225, 23, 49, 0.52),
    0 0 30px rgba(255, 15, 118, 0.34);
  animation: livePulse 1.35s ease-in-out infinite;
}

body.channel-live .brand-mark {
  box-shadow:
    0 0 18px rgba(225, 23, 49, 0.62),
    0 0 38px rgba(255, 15, 118, 0.4);
  animation: logoLivePulse 1.35s ease-in-out infinite;
}

body.channel-live .live-badge {
  display: inline-grid;
}

.nav-live-prompt,
.heading-live-prompt {
  display: none;
  padding: 0.18rem 0.42rem;
  border: 1px solid rgba(255, 98, 113, 0.72);
  border-radius: 999px;
  background: linear-gradient(135deg, #b70f25, #ff1f46 54%, #ff0f76);
  color: white;
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  line-height: 1;
  box-shadow:
    0 0 18px rgba(225, 23, 49, 0.52),
    0 0 30px rgba(255, 15, 118, 0.34);
  animation: livePulse 1.35s ease-in-out infinite;
}

body.channel-live .nav-live-prompt,
body.channel-live .heading-live-prompt {
  display: inline-grid;
}

body.channel-live .live-nav-link {
  color: white;
  background: rgba(225, 23, 49, 0.16);
  box-shadow: inset 0 0 0 1px rgba(225, 23, 49, 0.28);
}

@keyframes livePulse {
  0%,
  100% {
    box-shadow:
      0 0 14px rgba(225, 23, 49, 0.42),
      0 0 24px rgba(255, 15, 118, 0.28);
  }

  50% {
    box-shadow:
      0 0 24px rgba(225, 23, 49, 0.78),
      0 0 48px rgba(255, 15, 118, 0.58);
  }
}

@keyframes logoLivePulse {
  0%,
  100% {
    box-shadow:
      0 0 16px rgba(225, 23, 49, 0.48),
      0 0 30px rgba(255, 15, 118, 0.28);
  }

  50% {
    box-shadow:
      0 0 28px rgba(225, 23, 49, 0.82),
      0 0 58px rgba(255, 15, 118, 0.52);
  }
}

.main-nav {
  flex-direction: column;
  align-items: stretch;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.main-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  padding: 0.85rem 0.9rem;
  border-radius: 0.5rem;
}

.main-nav a:hover {
  background: rgba(255, 63, 180, 0.12);
  color: white;
}

.header-action,
.primary-action,
.secondary-action,
.card-action {
  border-radius: 0.5rem;
  font-weight: 850;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-action {
  margin-top: auto;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, var(--crimson), var(--red), var(--hot-pink));
  text-align: center;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(20rem, 0.86fr) minmax(24rem, 34rem);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: end;
  overflow: hidden;
  padding: 5rem clamp(1rem, 5vw, 5rem) 5rem calc(15rem + clamp(1rem, 5vw, 5rem));
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/casino-hero.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 5, 8, 0.98) 0%, rgba(31, 5, 16, 0.78) 42%, rgba(18, 8, 23, 0.22) 100%),
    linear-gradient(0deg, #0b0508 0%, transparent 32%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(42rem, 100%);
  display: grid;
  justify-items: center;
}

.hero .featured-casino-band {
  position: relative;
  z-index: 1;
  grid-template-columns: 1fr;
  gap: 0.78rem;
  align-self: end;
  width: min(100%, 23.5rem);
  justify-self: center;
  padding: 1.45rem 0.82rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 2.4rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), transparent 18%),
    linear-gradient(180deg, #1b1117 0%, #070205 52%, #13060d 100%);
  box-shadow:
    var(--shadow),
    0 0 34px rgba(225, 23, 49, 0.28),
    inset 0 0 0 2px rgba(255, 255, 255, 0.07),
    inset 0 0 28px rgba(255, 255, 255, 0.06);
}

.hero .featured-casino-band::before {
  content: "";
  position: absolute;
  top: 0.64rem;
  left: 50%;
  width: 6.1rem;
  height: 1.28rem;
  transform: translateX(-50%);
  justify-self: center;
  border-radius: 999px;
  background:
    radial-gradient(circle at 76% 50%, rgba(255, 255, 255, 0.28) 0 0.16rem, transparent 0.18rem),
    linear-gradient(180deg, #070205, #16070e);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 14px rgba(4, 0, 12, 0.62);
}

.hero .featured-casino-band::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.45rem;
  width: 5.8rem;
  height: 0.28rem;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.18);
}

.phone-button {
  position: absolute;
  width: 0.22rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.08));
  box-shadow: 0 0 8px rgba(4, 0, 12, 0.44);
}

.phone-button-left {
  left: -0.16rem;
  top: 6.2rem;
  height: 4rem;
}

.phone-button-right {
  right: -0.16rem;
  top: 8rem;
  height: 5.2rem;
}

.hero .featured-casino-band:hover {
  box-shadow:
    var(--shadow),
    0 0 42px rgba(225, 23, 49, 0.44),
    0 0 76px rgba(255, 15, 118, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.hero .featured-casino-media {
  max-height: none;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.45rem 1.45rem 0.9rem 0.9rem;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 18px 34px rgba(4, 0, 12, 0.36);
}

.hero .featured-casino-copy {
  gap: 0.78rem;
  padding: 0 0.25rem 0.55rem;
}

.hero .featured-casino-copy h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
}

.hero .featured-casino-copy p:not(.eyebrow) {
  font-size: 0.98rem;
  line-height: 1.45;
}

.hero .featured-casino-copy .bonus-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero .featured-casino-copy .bonus-row span {
  min-height: 3.6rem;
}

.hero .featured-casino-copy .primary-action {
  width: 100%;
  text-align: center;
}

.hero-logo {
  width: clamp(7rem, 18vw, 12rem);
  height: auto;
  display: block;
  margin-bottom: 1.25rem;
  border-radius: 0.65rem;
  background: transparent;
  filter:
    brightness(0.98)
    contrast(1.06)
    saturate(1.08)
    drop-shadow(0 0 16px rgba(255, 15, 118, 0.34))
    drop-shadow(0 0 34px rgba(225, 23, 49, 0.22));
  opacity: 0.96;
}

.hero-logo-large {
  width: clamp(22.5rem, 51vw, 42rem);
  margin-bottom: 2rem;
}

.eyebrow,
.card-kicker {
  margin: 0 0 0.75rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 1rem;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.gold-heading {
  color: var(--gold);
}

.hero-copy,
.section-heading p,
.casino-card p,
.streamer-card p,
.schedule-item p,
.site-footer {
  color: var(--muted);
}

.hero-copy {
  max-width: 34rem;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.6;
}

.hero-actions {
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.live-stream-section {
  display: grid;
  gap: 1rem;
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 5vw, 5rem) clamp(3rem, 6vw, 5rem) calc(15rem + clamp(1rem, 5vw, 5rem));
  border: 1px solid rgba(255, 98, 113, 0.34);
  border-inline: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    linear-gradient(180deg, rgba(131, 9, 26, 0.54), rgba(11, 5, 8, 0.86));
  box-shadow:
    var(--shadow),
    0 0 38px rgba(225, 23, 49, 0.2);
}

.live-window-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.live-window-heading h2 {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin: 0;
  color: var(--gold);
  font-size: clamp(1.35rem, 2.4vw, 2.25rem);
}

.live-window-heading .eyebrow {
  margin-bottom: 0.35rem;
}

.live-window-heading a {
  flex: 0 0 auto;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(255, 98, 113, 0.72);
  border-radius: 0.45rem;
  background: linear-gradient(135deg, #83091a, #e11731 58%, #ff0f76);
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 12px 32px rgba(225, 23, 49, 0.22);
}

.twitch-window {
  position: relative;
  display: grid;
  min-height: clamp(18rem, 44vw, 34rem);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.45rem;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 15, 118, 0.24), transparent 16rem),
    #0b0508;
}

.twitch-window iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.twitch-window > a {
  padding: 0.8rem 1rem;
  border-radius: 0.45rem;
  background: rgba(255, 15, 118, 0.2);
  color: var(--text);
  font-weight: 900;
}

.primary-action,
.secondary-action {
  padding: 0.95rem 1.25rem;
}

.primary-action {
  background: linear-gradient(135deg, #83091a, #e11731 56%, #ff0f76);
  box-shadow:
    0 16px 50px rgba(246, 47, 70, 0.34),
    0 0 0 rgba(225, 23, 49, 0);
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
}

.header-action:hover,
.primary-action:hover,
.secondary-action:hover,
.card-action:hover {
  transform: translateY(-2px);
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.stats-band div {
  padding: clamp(1rem, 3vw, 2rem);
  background: rgba(11, 5, 8, 0.86);
}

.stats-band strong {
  display: block;
  color: var(--pink);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

.stats-band span {
  color: var(--muted);
}

.featured-casino-band {
  display: grid;
  grid-template-columns: minmax(16rem, 0.9fr) minmax(18rem, 1.1fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 5vw, 5rem) clamp(3rem, 6vw, 5rem) calc(15rem + clamp(1rem, 5vw, 5rem));
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 34% 32%, rgba(255, 200, 97, 0.16), transparent 18rem),
    linear-gradient(135deg, rgba(131, 9, 26, 0.54), rgba(124, 44, 255, 0.16) 48%, rgba(11, 5, 8, 0.92));
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.featured-casino-band:hover {
  border-color: rgba(225, 23, 49, 0.7);
  background:
    radial-gradient(circle at 34% 32%, rgba(255, 200, 97, 0.18), transparent 18rem),
    linear-gradient(135deg, rgba(225, 23, 49, 0.72), rgba(255, 15, 118, 0.24) 48%, rgba(11, 5, 8, 0.92));
  box-shadow:
    inset 0 0 0 1px rgba(225, 23, 49, 0.44),
    0 0 46px rgba(225, 23, 49, 0.34);
}

.featured-casino-media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.5rem;
  box-shadow:
    var(--shadow),
    0 0 44px rgba(255, 15, 118, 0.24);
}

.featured-casino-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(11, 5, 8, 0.52));
}

.featured-casino-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.featured-casino-copy {
  display: grid;
  gap: 1.2rem;
  max-width: 42rem;
}

.featured-casino-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.featured-casino-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  line-height: 1.6;
}

.featured-casino-copy .bonus-row {
  max-width: 31rem;
}

.featured-casino-copy .primary-action {
  justify-self: start;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem) clamp(4rem, 8vw, 7rem) calc(15rem + clamp(1rem, 5vw, 5rem));
}

.section-heading {
  width: min(54rem, 100%);
  margin-bottom: 2rem;
}

.casino-grid,
.streamer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

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

.casino-card,
.streamer-card,
.schedule-shell {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, rgba(131, 9, 26, 0.2), rgba(124, 44, 255, 0.05));
  box-shadow: var(--shadow);
}

.casino-card,
.streamer-card {
  display: grid;
  align-content: start;
  gap: 1.25rem;
  min-height: 100%;
  padding: 1.25rem;
  border-radius: 0.5rem;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.streamer-card {
  gap: 0;
  overflow: hidden;
  padding: 0;
}

.casino-card.hot {
  border-color: rgba(255, 63, 180, 0.54);
}

.casino-card {
  position: relative;
  grid-template-rows: auto 1fr;
  gap: 0;
  overflow: hidden;
  padding: 0;
}

.casino-card:hover {
  border-color: rgba(225, 23, 49, 0.72);
  box-shadow:
    var(--shadow),
    0 0 34px rgba(225, 23, 49, 0.38),
    0 0 70px rgba(255, 15, 118, 0.18);
  transform: translateY(-3px);
}

.casino-card.hot {
  box-shadow:
    var(--shadow),
    0 0 38px rgba(255, 15, 118, 0.2);
}

.casino-rank {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 2;
  display: grid;
  min-width: 2.65rem;
  min-height: 2.25rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0.45rem;
  background: linear-gradient(135deg, rgba(131, 9, 26, 0.94), rgba(255, 15, 118, 0.86));
  color: white;
  font-weight: 950;
  box-shadow: 0 10px 28px rgba(4, 0, 12, 0.34);
}

.casino-image {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  min-height: 0;
  place-items: center;
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 22%, rgba(255, 63, 180, 0.18), transparent 12rem),
    linear-gradient(135deg, rgba(51, 3, 12, 0.96), rgba(11, 5, 8, 0.9));
}

.casino-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4rem;
  background: linear-gradient(180deg, transparent, rgba(11, 5, 8, 0.72));
}

.casino-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter:
    saturate(1.08)
    contrast(1.04)
    drop-shadow(0 12px 28px rgba(4, 0, 12, 0.54));
}

.casino-content {
  display: grid;
  gap: 1rem;
  padding: 1.15rem;
}

.casino-note {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  color: #8dff9b;
  font-weight: 850;
}

.casino-note::before {
  content: "✓";
  display: grid;
  width: 1.35rem;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: #18c45b;
  color: #06170c;
  font-size: 0.9rem;
  font-weight: 950;
  box-shadow: 0 0 18px rgba(24, 196, 91, 0.34);
}

.bonus-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.bonus-row span {
  min-height: 3.45rem;
  display: grid;
  place-items: center;
  padding: 0.55rem;
  border: 1px solid rgba(255, 63, 180, 0.2);
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.bonus-row strong {
  display: block;
  color: var(--gold);
  font-size: 1.06rem;
  line-height: 1.1;
}

.card-action {
  align-self: end;
  justify-self: start;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, #83091a, #e11731 58%, #ff0f76);
  border: 1px solid rgba(255, 98, 113, 0.72);
  box-shadow:
    0 12px 32px rgba(225, 23, 49, 0.22),
    0 0 0 rgba(225, 23, 49, 0);
}

.primary-action:hover,
.card-action:hover {
  border-color: rgba(255, 200, 97, 0.6);
  background: linear-gradient(135deg, #b70f25, #ff1f46 54%, #ff0f76);
  box-shadow:
    0 18px 42px rgba(225, 23, 49, 0.42),
    0 0 28px rgba(255, 15, 118, 0.42),
    0 0 48px rgba(225, 23, 49, 0.28);
}

.streamer-section {
  background:
    linear-gradient(180deg, rgba(225, 23, 49, 0.11), transparent 38%),
    rgba(255, 255, 255, 0.02);
}

.avatar {
  width: 5.25rem;
  aspect-ratio: 1;
  border-radius: 50%;
  font-size: 1.25rem;
}

.avatar-one {
  background: linear-gradient(135deg, #83091a, #ff0f76, #7c2cff);
}

.avatar-two {
  background: linear-gradient(135deg, #33030c, #e11731, #ff8acb);
}

.avatar-three {
  background: linear-gradient(135deg, #7c2cff, #ff3fb4 55%, #f62f46);
}

.streamer-banner {
  position: relative;
  min-height: 23rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 63, 180, 0.24), transparent 14rem),
    linear-gradient(135deg, #3f1488, #7c2cff 54%, #220811);
}

.streamer-banner img {
  width: 100%;
  height: 100%;
  min-height: 23rem;
  display: block;
  object-fit: cover;
  object-position: center 24%;
  filter: saturate(1.12) contrast(1.06);
}

.streamer-banner-alt img {
  object-position: center 18%;
}

.streamer-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(11, 5, 8, 0.94) 100%),
    linear-gradient(90deg, rgba(124, 44, 255, 0.36), rgba(255, 63, 180, 0.12) 58%, transparent);
  mix-blend-mode: screen;
}

.streamer-banner span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(11, 5, 8, 0.72);
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.streamer-body {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}

.streamer-card h3 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.streamer-card ul {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.streamer-card li {
  padding-left: 1rem;
  border-left: 3px solid var(--pink);
}

.instagram-link {
  justify-self: start;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 63, 180, 0.38);
  border-radius: 0.5rem;
  background: linear-gradient(135deg, rgba(131, 9, 26, 0.9), rgba(255, 15, 118, 0.84));
  font-weight: 900;
}

.instagram-link:hover {
  transform: translateY(-2px);
}

.schedule-shell {
  border-radius: 0.5rem;
  overflow: hidden;
}

.day-tabs {
  gap: 0.5rem;
  padding: 1rem;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
}

.day-tabs button {
  min-width: 3.8rem;
  min-height: 2.6rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.day-tabs button.active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--crimson), var(--purple), var(--hot-pink), var(--red));
}

.schedule-list {
  display: grid;
}

.schedule-item {
  display: grid;
  grid-template-columns: 8rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem;
  border-bottom: 1px solid var(--line);
}

.schedule-item:last-child {
  border-bottom: 0;
}

.schedule-item[hidden] {
  display: none;
}

.schedule-item time,
.schedule-item span {
  color: var(--gold);
  font-weight: 900;
}

.schedule-item span {
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 200, 97, 0.12);
  white-space: nowrap;
}

.site-footer {
  display: block;
  padding: 1.35rem clamp(1rem, 5vw, 5rem) 1.35rem calc(15rem + clamp(1rem, 5vw, 5rem));
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(225, 23, 49, 0.08), transparent),
    rgba(11, 5, 8, 0.72);
}

.site-footer span {
  color: var(--text);
  font-weight: 900;
}

.social-links {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.social-links a {
  padding: 0.5rem 0.72rem;
  border: 1px solid rgba(255, 98, 113, 0.42);
  border-radius: 0.5rem;
  background: rgba(255, 63, 180, 0.08);
  color: var(--text);
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.social-links a:hover {
  border-color: rgba(225, 23, 49, 0.72);
  background: linear-gradient(135deg, #83091a, #e11731 58%, #ff0f76);
  box-shadow:
    0 12px 32px rgba(225, 23, 49, 0.32),
    0 0 36px rgba(255, 15, 118, 0.26);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.responsible-note {
  color: var(--gold);
  text-align: center;
}

@media (max-width: 840px) {
  .site-header {
    right: 0;
    bottom: auto;
    width: auto;
    min-height: 0;
    flex-direction: row;
    align-items: center;
    padding: 0.9rem 1rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .brand {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .main-nav {
    order: 3;
    display: flex;
    width: 100%;
    flex-direction: row;
    gap: 0.35rem;
    overflow-x: auto;
    padding-top: 0.6rem;
    font-size: 0.82rem;
  }

  .main-nav a {
    flex: 0 0 auto;
    min-height: 2.4rem;
    padding: 0.65rem 0.75rem;
    white-space: nowrap;
  }

  .header-action {
    margin-top: 0;
    margin-left: auto;
  }

  .casino-grid,
  .streamer-grid,
  .stats-band,
  .featured-casino-band {
    grid-template-columns: 1fr;
  }

  .schedule-item {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 10.5rem clamp(1rem, 5vw, 5rem) 5rem;
  }

  .live-window-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .section,
  .site-footer,
  .featured-casino-band,
  .live-stream-section {
    padding-left: clamp(1rem, 5vw, 5rem);
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 0.8rem 1rem;
  }

  .main-nav {
    margin-inline: -0.2rem;
  }

  .header-action {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding-top: 6rem;
  }

  .twitch-window {
    min-height: 13rem;
  }

  .hero-actions a {
    width: 100%;
    text-align: center;
  }
}
