:root {
  --bg: #040014;
  --ink: #fff7ff;
  --muted: #d8c6f0;
  --hot: #ff35d4;
  --hot-strong: #ff4bed;
  --blue: #48ecff;
  --violet: #8a42ff;
  --gold: #ffe66d;
  --panel: rgba(16, 7, 39, 0.78);
  --panel-strong: rgba(26, 8, 55, 0.92);
  --line: rgba(72, 236, 255, 0.36);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 53, 212, 0.42), transparent 26rem),
    radial-gradient(circle at 88% 8%, rgba(72, 236, 255, 0.34), transparent 27rem),
    radial-gradient(circle at 48% 46%, rgba(255, 53, 212, 0.18), transparent 34rem),
    radial-gradient(circle at 84% 76%, rgba(72, 236, 255, 0.22), transparent 30rem),
    linear-gradient(180deg, #0b0020 0%, #050014 38%, #090022 100%);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(72, 236, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 53, 212, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 78%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 49%, rgba(255, 53, 212, 0.22) 50%, transparent 51%),
    linear-gradient(115deg, transparent 0 58%, rgba(72, 236, 255, 0.1) 59%, transparent 61%),
    radial-gradient(circle at 50% 30%, transparent 0 18rem, rgba(4, 0, 20, 0.34) 40rem);
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(72, 236, 255, 0.26);
  background:
    linear-gradient(90deg, rgba(255, 53, 212, 0.12), rgba(72, 236, 255, 0.08)),
    rgba(3, 0, 16, 0.74);
  box-shadow: 0 0 32px rgba(255, 53, 212, 0.16);
  backdrop-filter: blur(20px);
}

.brand {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  width: 50px;
  height: 50px;
  overflow: visible;
  border: 2px solid rgba(255, 255, 255, 0.76);
  border-radius: 50%;
  background: #050009;
  box-shadow:
    0 0 12px rgba(255, 53, 212, 0.32),
    0 0 24px rgba(44, 231, 255, 0.18);
}

.brand.is-live .brand-mark {
  border-color: var(--hot);
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.86),
    0 0 14px rgba(255, 53, 212, 0.9),
    0 0 34px rgba(44, 231, 255, 0.34);
  animation: livePulse 1.8s ease-in-out infinite;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.brand-live {
  position: absolute;
  left: 50%;
  bottom: -9px;
  display: grid;
  place-items: center;
  min-width: 36px;
  min-height: 17px;
  padding: 0 7px;
  border-radius: 5px;
  background: #ff145d;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 900;
  line-height: 1;
  box-shadow:
    0 0 10px rgba(255, 20, 93, 0.82),
    0 0 18px rgba(255, 53, 212, 0.48);
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
}

.brand.is-live .brand-live {
  opacity: 1;
  visibility: visible;
}

@keyframes livePulse {
  0%,
  100% {
    box-shadow:
      0 0 0 3px rgba(255, 255, 255, 0.86),
      0 0 14px rgba(255, 53, 212, 0.9),
      0 0 34px rgba(44, 231, 255, 0.34);
  }

  50% {
    box-shadow:
      0 0 0 3px rgba(255, 255, 255, 0.96),
      0 0 20px rgba(255, 20, 93, 1),
      0 0 44px rgba(255, 53, 212, 0.68),
      0 0 62px rgba(72, 236, 255, 0.28);
  }
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
}

.header-cta {
  border-color: rgba(255, 53, 212, 0.86);
  background: linear-gradient(135deg, #ff149d, #ff4bed 52%, #ff8cf4);
  color: #160016;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.58);
  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, 0.24),
    0 0 16px rgba(255, 53, 212, 0.72),
    0 0 34px rgba(255, 53, 212, 0.38);
  transition: border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  color: #09000d;
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow:
    inset 0 0 22px rgba(255, 255, 255, 0.34),
    0 0 20px rgba(255, 53, 212, 0.92),
    0 0 46px rgba(255, 53, 212, 0.58);
  transform: translateY(-1px);
}

.side-nav {
  position: fixed;
  z-index: 18;
  top: 50%;
  right: clamp(14px, 2vw, 28px);
  display: grid;
  gap: 10px;
  width: 136px;
  padding: 12px;
  border: 1px solid rgba(72, 236, 255, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 53, 212, 0.18), rgba(72, 236, 255, 0.1)),
    rgba(7, 0, 22, 0.74);
  box-shadow:
    inset 0 0 24px rgba(255, 53, 212, 0.18),
    0 0 18px rgba(255, 53, 212, 0.34),
    0 0 34px rgba(72, 236, 255, 0.22);
  backdrop-filter: blur(18px);
  transform: translateY(-50%);
}

.side-nav a {
  display: grid;
  place-items: center;
  min-height: 42px;
  border: 1px solid rgba(72, 236, 255, 0.16);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.065);
}

.side-nav a:hover {
  color: var(--ink);
  border-color: rgba(44, 231, 255, 0.48);
  background: rgba(255, 53, 212, 0.16);
  text-shadow: 0 0 14px rgba(255, 53, 212, 0.9);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.1fr) minmax(260px, 0.72fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  min-height: 100vh;
  padding: 118px clamp(18px, 5vw, 76px) 68px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 12% 4% auto;
  height: min(62vw, 690px);
  border: 2px solid rgba(255, 53, 212, 0.56);
  border-radius: 999px;
  box-shadow:
    inset 0 0 46px rgba(72, 236, 255, 0.18),
    inset 0 0 82px rgba(255, 53, 212, 0.18),
    0 0 42px rgba(255, 53, 212, 0.38),
    0 0 84px rgba(72, 236, 255, 0.18);
  pointer-events: none;
}

.hero-media,
.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-media {
  justify-self: center;
  width: min(36vw, 430px);
  min-width: 250px;
  border-radius: 50%;
  filter: drop-shadow(0 0 30px rgba(255, 53, 212, 0.66));
}

.hero-media img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(44, 231, 255, 0.86);
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(4.6rem, 10.5vw, 10.4rem);
  line-height: 0.78;
  letter-spacing: 0;
  transform: rotate(-2deg);
  transform-origin: left center;
}

h1 span {
  display: block;
  color: var(--hot-strong);
  font-family: Pacifico, cursive;
  font-weight: 400;
  margin-left: -0.08em;
  text-shadow:
    0 0 2px #fff,
    0 0 10px rgba(255, 53, 212, 1),
    0 0 26px rgba(255, 53, 212, 0.92),
    0 0 54px rgba(255, 53, 212, 0.48),
    0 0 78px rgba(255, 53, 212, 0.3);
}

h1 strong {
  display: block;
  color: transparent;
  margin-top: -0.08em;
  font-size: 0.62em;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  -webkit-text-stroke: 2px var(--blue);
  text-shadow:
    0 0 2px #fff,
    0 0 14px rgba(44, 231, 255, 1),
    0 0 32px rgba(72, 236, 255, 0.86),
    0 0 48px rgba(138, 66, 255, 0.68);
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 5vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  letter-spacing: 0;
}

.hero-copy,
.section-heading p,
.casino-card p,
.streamer-card p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-copy {
  max-width: 620px;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.hero-text-link {
  color: var(--gold);
  font-weight: 900;
  text-shadow:
    0 0 10px rgba(255, 230, 109, 0.78),
    0 0 18px rgba(255, 53, 212, 0.42);
  transition: color 180ms ease, text-shadow 180ms ease;
}

.hero-text-link:hover {
  color: var(--ink);
  text-shadow:
    0 0 12px rgba(255, 230, 109, 0.92),
    0 0 24px rgba(72, 236, 255, 0.52);
}

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

.btn {
  min-height: 52px;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, filter 180ms ease, transform 180ms ease;
}

.btn.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--hot), #ff78ef 45%, var(--blue));
  color: #09000d;
  box-shadow:
    0 0 18px rgba(255, 53, 212, 0.52),
    0 0 34px rgba(44, 231, 255, 0.26);
}

.btn.secondary,
.btn.ghost {
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
  box-shadow: inset 0 0 18px rgba(255, 53, 212, 0.12);
}

.hero-actions .btn:hover {
  border-color: rgba(72, 236, 255, 0.86);
  box-shadow:
    inset 0 0 22px rgba(255, 53, 212, 0.22),
    0 0 16px rgba(255, 53, 212, 0.72),
    0 0 34px rgba(72, 236, 255, 0.42);
  filter: brightness(1.1) saturate(1.14);
  transform: translateY(-2px);
}

.btn.disabled {
  pointer-events: none;
}

.casino-cta {
  align-self: stretch;
  width: 100%;
  min-height: 58px;
  justify-content: center;
  border-radius: 0 0 8px 8px;
  letter-spacing: 0;
  text-align: center;
}

.casino-cta:hover {
  border-color: rgba(72, 236, 255, 0.92);
  box-shadow:
    0 0 16px rgba(255, 53, 212, 0.78),
    0 0 34px rgba(72, 236, 255, 0.48),
    0 0 58px rgba(255, 53, 212, 0.24);
  filter: brightness(1.12) saturate(1.18);
  transform: translateY(-2px);
}

.hero-panel {
  align-self: end;
}

.stream-frame {
  display: block;
  border: 1px solid rgba(72, 236, 255, 0.48);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(72, 236, 255, 0.2), transparent 11rem),
    linear-gradient(180deg, rgba(255, 53, 212, 0.13), rgba(72, 236, 255, 0.08)),
    rgba(9, 1, 28, 0.84);
  box-shadow:
    inset 0 0 30px rgba(72, 236, 255, 0.16),
    0 0 28px rgba(255, 53, 212, 0.34),
    0 0 42px rgba(72, 236, 255, 0.18);
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.stream-frame:hover {
  border-color: rgba(255, 53, 212, 0.72);
  box-shadow:
    inset 0 0 34px rgba(72, 236, 255, 0.2),
    0 0 24px rgba(255, 53, 212, 0.56),
    0 0 48px rgba(72, 236, 255, 0.24);
  transform: translateY(-2px);
}

.stream-topbar {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--hot-strong);
  font-size: 0.8rem;
  font-weight: 900;
}

.live-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--hot);
  box-shadow: 0 0 14px var(--hot);
}

.slot-window {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 20px;
}

.slot-window span {
  display: grid;
  place-items: center;
  aspect-ratio: 0.72;
  border: 1px solid rgba(255, 230, 109, 0.28);
  border-radius: 8px;
  background: #12051c;
  color: var(--gold);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  text-shadow: 0 0 18px rgba(255, 230, 109, 0.84);
}

.stream-meta {
  padding: 0 20px 20px;
}

.stream-meta strong,
.stream-meta small {
  display: block;
}

.stream-meta small {
  margin-top: 5px;
  color: var(--muted);
}

.casino-section,
.streamer-section,
.giveaways-section,
.instagram-section {
  padding: clamp(62px, 8vw, 110px) clamp(18px, 5vw, 76px);
}

.casino-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(72, 236, 255, 0.12), transparent 22rem),
    radial-gradient(circle at 94% 24%, rgba(255, 53, 212, 0.18), transparent 24rem);
}

.streamer-section {
  background:
    linear-gradient(180deg, rgba(255, 53, 212, 0.04), rgba(72, 236, 255, 0.055)),
    radial-gradient(circle at 50% 12%, rgba(255, 53, 212, 0.18), transparent 30rem),
    radial-gradient(circle at 14% 78%, rgba(72, 236, 255, 0.13), transparent 24rem);
}

.giveaways-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 230, 109, 0.16), transparent 22rem),
    radial-gradient(circle at 82% 64%, rgba(255, 53, 212, 0.22), transparent 26rem),
    linear-gradient(135deg, rgba(72, 236, 255, 0.07), rgba(255, 53, 212, 0.08)),
    #070018;
}

.instagram-section {
  border-block: 1px solid rgba(72, 236, 255, 0.26);
  background:
    radial-gradient(circle at 12% 32%, rgba(255, 53, 212, 0.24), transparent 24rem),
    radial-gradient(circle at 88% 58%, rgba(72, 236, 255, 0.2), transparent 24rem),
    linear-gradient(90deg, rgba(255, 53, 212, 0.16), rgba(72, 236, 255, 0.12)),
    #08001b;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 34px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.casino-grid,
.streamer-grid {
  display: grid;
  gap: 18px;
}

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

.casino-card,
.streamer-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 8%, rgba(255, 53, 212, 0.32), transparent 13rem),
    radial-gradient(circle at 14% 92%, rgba(72, 236, 255, 0.14), transparent 14rem),
    var(--panel);
  box-shadow:
    inset 0 0 28px rgba(255, 255, 255, 0.04),
    0 0 22px rgba(255, 53, 212, 0.16),
    0 0 34px rgba(72, 236, 255, 0.08);
}

.casino-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  padding: 0;
}

.casino-card.featured {
  background:
    radial-gradient(circle at 70% 10%, rgba(72, 236, 255, 0.34), transparent 16rem),
    radial-gradient(circle at 20% 92%, rgba(255, 53, 212, 0.34), transparent 18rem),
    linear-gradient(135deg, rgba(255, 53, 212, 0.08), rgba(72, 236, 255, 0.08)),
  var(--panel-strong);
}

.casino-logo-wrap {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin: 0 0 22px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: #000;
  box-shadow:
    inset 0 0 26px rgba(255, 255, 255, 0.045),
    0 0 20px rgba(255, 53, 212, 0.18);
  overflow: hidden;
}

.casino-logo-wrap::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(4, 0, 20, 0.78));
  pointer-events: none;
}

.casino-logo-wrap img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  object-position: center;
  filter:
    saturate(1.08)
    contrast(1.04)
    drop-shadow(0 0 12px rgba(255, 92, 24, 0.42));
}

.casino-logo-wrap img.logo-contained {
  padding: 16%;
  object-fit: contain;
}

.casino-logo-wrap img.logo-full-bleed {
  padding: 0;
  object-fit: cover;
}

.casino-card > div:not(.card-rank):not(.casino-logo-wrap),
.casino-card .bonus-strip {
  margin-right: 20px;
  margin-left: 20px;
}

.card-rank {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: grid;
  min-width: 46px;
  min-height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 53, 212, 0.92), rgba(72, 236, 255, 0.72));
  color: #fff;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(4, 0, 20, 0.6);
  box-shadow: 0 10px 26px rgba(4, 0, 20, 0.36);
}

.card-label {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.casino-card .casino-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 6px;
  color: #ffd7fa;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.35;
  text-shadow:
    0 0 10px rgba(255, 53, 212, 0.58),
    0 0 18px rgba(255, 53, 212, 0.28);
}

.casino-card .casino-note::before {
  content: "\2713";
  flex: 0 0 auto;
  color: #ff35d4;
  font-size: 1.02rem;
  font-weight: 950;
  line-height: 1;
  text-shadow:
    0 0 6px rgba(255, 255, 255, 0.78),
    0 0 12px rgba(255, 53, 212, 0.95),
    0 0 22px rgba(255, 53, 212, 0.62);
}

.bonus-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
  margin-bottom: 18px;
}

.bonus-strip span {
  display: grid;
  place-items: center;
  min-height: 76px;
  padding: 10px 8px;
  border: 1px solid rgba(72, 236, 255, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 53, 212, 0.18), transparent 4.5rem),
    rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 0 18px rgba(72, 236, 255, 0.08);
  text-align: center;
}

.bonus-strip small,
.bonus-strip strong {
  display: block;
}

.bonus-strip small {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.bonus-strip strong {
  margin-top: 5px;
  color: var(--blue);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 900;
  text-shadow:
    0 0 10px rgba(72, 236, 255, 0.9),
    0 0 18px rgba(255, 53, 212, 0.36);
}

.streamer-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1240px;
  margin: 0 auto;
}

.streamer-card {
  min-height: 520px;
  padding: 16px 16px 24px;
  text-align: center;
}

.streamer-photo {
  display: block;
  height: clamp(420px, 40vw, 560px);
  margin-bottom: 22px;
  overflow: hidden;
  border: 1px solid rgba(44, 231, 255, 0.32);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 53, 212, 0.24), transparent 15rem),
    radial-gradient(circle at 80% 78%, rgba(72, 236, 255, 0.16), transparent 16rem),
    #05000a;
  box-shadow:
    0 0 26px rgba(255, 53, 212, 0.34),
    0 0 38px rgba(72, 236, 255, 0.18),
    inset 0 0 24px rgba(255, 255, 255, 0.04);
}

.streamer-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 180ms ease, filter 180ms ease;
}

.poster-photo img {
  object-fit: cover;
}

.streamer-photo:hover img {
  filter: saturate(1.12) brightness(1.08);
  transform: scale(1.035);
}

.streamer-card h3 {
  color: var(--ink);
  text-shadow:
    0 0 14px rgba(255, 53, 212, 0.9),
    0 0 24px rgba(44, 231, 255, 0.36);
}

.streamer-card p {
  margin-bottom: 0;
  color: var(--blue);
  font-weight: 900;
}

.coming-soon-panel {
  display: grid;
  place-items: center;
  min-height: clamp(180px, 24vw, 280px);
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid rgba(72, 236, 255, 0.42);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 53, 212, 0.3), transparent 14rem),
    radial-gradient(circle at 50% 100%, rgba(72, 236, 255, 0.22), transparent 15rem),
    rgba(255, 255, 255, 0.055);
  box-shadow:
    inset 0 0 36px rgba(72, 236, 255, 0.12),
    0 0 28px rgba(255, 53, 212, 0.28),
    0 0 44px rgba(72, 236, 255, 0.14);
  text-align: center;
}

.coming-soon-panel p {
  margin: 0;
  color: var(--gold);
  font-size: clamp(2.4rem, 7vw, 6rem);
  font-weight: 900;
  text-shadow:
    0 0 2px #fff,
    0 0 16px rgba(255, 230, 109, 0.82),
    0 0 34px rgba(255, 53, 212, 0.64),
    0 0 54px rgba(72, 236, 255, 0.34);
}

.instagram-profile-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 24px);
  width: fit-content;
  margin: 0 auto;
  transition: filter 180ms ease, transform 180ms ease;
}

.instagram-profile-card:hover {
  filter: brightness(1.08) saturate(1.12);
  transform: translateY(-2px);
}

.instagram-profile-card img {
  width: clamp(110px, 16vw, 170px);
  aspect-ratio: 1;
  object-fit: contain;
  filter:
    drop-shadow(0 0 12px rgba(255, 53, 212, 0.62))
    drop-shadow(0 0 18px rgba(72, 236, 255, 0.28));
}

.instagram-profile-card span {
  color: var(--blue);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 900;
  text-shadow: 0 0 14px rgba(72, 236, 255, 0.72);
}

.social-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 18px;
  padding: 0 18px;
  border: 1px solid rgba(255, 53, 212, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 53, 212, 0.18), rgba(72, 236, 255, 0.12)),
    rgba(255, 255, 255, 0.06);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 900;
  box-shadow:
    inset 0 0 16px rgba(255, 53, 212, 0.12),
    0 0 18px rgba(72, 236, 255, 0.14);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.social-pill:hover {
  border-color: rgba(72, 236, 255, 0.74);
  box-shadow:
    inset 0 0 20px rgba(255, 53, 212, 0.22),
    0 0 18px rgba(255, 53, 212, 0.48),
    0 0 30px rgba(72, 236, 255, 0.26);
  transform: translateY(-2px);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 5vw, 76px);
  color: var(--muted);
  background: #030007;
}

.site-footer p {
  margin: 0;
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(72, 236, 255, 0.28);
  border-radius: 8px;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 0 14px rgba(255, 53, 212, 0.1);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.footer-links a:hover {
  border-color: rgba(72, 236, 255, 0.74);
  box-shadow:
    inset 0 0 18px rgba(255, 53, 212, 0.18),
    0 0 18px rgba(72, 236, 255, 0.2);
  transform: translateY(-1px);
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  }

  .hero-panel {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(560px, 100%);
  }

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

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

@media (max-width: 760px) {
  body {
    padding-bottom: 76px;
  }

  .site-header {
    min-height: 68px;
    padding: 10px 15px;
  }

  .brand {
    font-size: 0.88rem;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-live {
    min-width: 32px;
    min-height: 15px;
    bottom: -8px;
    font-size: 0.56rem;
  }

  .header-cta {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 0.86rem;
  }

  .side-nav {
    top: auto;
    right: 12px;
    bottom: 10px;
    left: 12px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: auto;
    padding: 9px;
    transform: none;
  }

  .side-nav a {
    min-height: 38px;
    font-size: 0.68rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 98px 18px 56px;
    text-align: center;
  }

  .hero::before {
    inset: 90px -30% auto;
    height: 480px;
  }

  .hero-media {
    width: min(82vw, 340px);
    min-width: 0;
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-links {
    width: 100%;
  }

  .footer-links a {
    flex: 1;
  }

  .btn {
    width: 100%;
  }

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

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

  .streamer-photo {
    height: min(150vw, 620px);
  }

  .casino-logo-wrap {
    width: 100%;
    aspect-ratio: 16 / 10;
  }

  .instagram-profile-card {
    flex-direction: column;
    text-align: center;
  }

}
