:root {
  color-scheme: dark;
  --bg: #090909;
  --panel: #151515;
  --panel-strong: #1e1a16;
  --text: #fbf7ef;
  --muted: #b7aea3;
  --red: #d7193f;
  --red-dark: #8f1028;
  --gold: #f4c25f;
  --green: #1db97a;
  --cyan: #62d3ff;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.background-video {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #090909;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(9, 9, 9, 0.42), rgba(9, 9, 9, 0.9) 74%),
    linear-gradient(90deg, rgba(9, 9, 9, 0.66), rgba(9, 9, 9, 0.18) 48%, rgba(9, 9, 9, 0.52));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(244, 194, 95, 0.55);
  border-radius: 8px;
  background: linear-gradient(135deg, #d7193f, #111 58%, #f4c25f);
  color: #fff8e8;
  font-size: 0.78rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(9, 9, 9, 0.62);
}

.main-nav a {
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.92rem;
  transition: background 180ms ease, color 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  outline: none;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: 78svh;
  margin: 0 auto;
  padding: 58px 0 80px;
}

.eiffel {
  position: absolute;
  top: 24px;
  right: 0;
  width: clamp(92px, 13vw, 172px);
  height: auto;
  opacity: 0.9;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.42));
}

.hero-content {
  width: min(760px, 100%);
  padding-top: 24px;
}

.status-line,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(29, 185, 122, 0.16);
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 20px;
  font-size: clamp(3.8rem, 11vw, 8.6rem);
  line-height: 0.88;
}

.hero-copy {
  max-width: 670px;
  margin-bottom: 28px;
  color: #e7ded3;
  font-size: clamp(1.04rem, 2vw, 1.28rem);
}

.hero-actions,
.social-actions,
.club-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button.primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 16px 40px rgba(215, 25, 63, 0.26);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #ec204a;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(600px, 100%);
  margin: 34px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.hero-metrics div {
  min-width: 0;
  padding: 17px;
  background: rgba(12, 12, 12, 0.76);
}

.hero-metrics dt {
  color: var(--gold);
  font-size: 1.55rem;
  font-weight: 900;
}

.hero-metrics dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0;
}

.intro-band {
  width: 100%;
  padding: 18px max(16px, calc((100vw - 1180px) / 2));
  border-block: 1px solid var(--line);
  background: rgba(215, 25, 63, 0.12);
}

.intro-band p {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  color: #eadfd6;
  font-size: 0.95rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(260px, 1fr);
  gap: 20px 48px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

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

.section-heading p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
}

.offer-grid,
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.offer-card,
.highlight-card,
.stream-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(21, 21, 21, 0.86);
  box-shadow: var(--shadow);
}

.offer-card {
  position: relative;
  display: flex;
  min-height: 310px;
  flex-direction: column;
  overflow: hidden;
  padding: 18px;
}

.offer-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--red), var(--gold), var(--green));
}

.offer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 28px;
}

.casino-logo {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(244, 194, 95, 0.5);
  border-radius: 8px;
  background: #0f0f0f;
  color: var(--gold);
  font-weight: 900;
}

.tag {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(98, 211, 255, 0.12);
  color: #a7e7ff;
  font-size: 0.72rem;
  font-weight: 800;
}

.offer-card h3,
.highlight-card h3,
.stream-panel h3 {
  margin-bottom: 9px;
  font-size: 1.16rem;
}

.offer-card p,
.highlight-card p,
.stream-panel p {
  color: var(--muted);
}

.offer-terms {
  margin-top: auto;
  padding-top: 18px;
  color: #d8cfc4;
  font-size: 0.82rem;
}

.offer-card .button {
  width: 100%;
  margin-top: 16px;
}

.stream-section {
  width: 100%;
  padding-inline: max(16px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(90deg, rgba(29, 185, 122, 0.14), rgba(9, 9, 9, 0.36) 42%, rgba(215, 25, 63, 0.1)),
    #0d0d0d;
}

.stream-section .section-heading,
.stream-layout {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.stream-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 16px;
  align-items: stretch;
}

.stream-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050505;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.stream-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.stream-panel {
  padding: 20px;
}

.schedule-list {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.schedule-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #efe6dc;
}

.schedule-list span {
  min-width: 54px;
  color: var(--gold);
  font-weight: 900;
}

.highlight-card {
  overflow: hidden;
}

.highlight-thumb {
  display: grid;
  min-height: 155px;
  place-items: center;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(215, 25, 63, 0.78), rgba(244, 194, 95, 0.56)),
    #181818;
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
}

.highlight-body {
  padding: 17px;
}

.highlight-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.highlight-meta span {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.75rem;
}

.highlight-card .button {
  width: 100%;
  margin-top: 8px;
}

.club-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(240px, 0.45fr);
  gap: 20px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(244, 194, 95, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(244, 194, 95, 0.14), rgba(215, 25, 63, 0.16)),
    rgba(15, 15, 15, 0.9);
  box-shadow: var(--shadow);
}

.club-copy p:not(.eyebrow) {
  color: #e7ded3;
}

.club-actions {
  justify-content: flex-end;
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer p {
  margin-bottom: 8px;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    width: 100%;
    overflow-x: auto;
  }

  .main-nav a {
    white-space: nowrap;
  }

  .section-heading,
  .stream-layout,
  .club-section {
    grid-template-columns: 1fr;
  }

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

  .club-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 74svh;
    padding-top: 28px;
  }

  .eiffel {
    top: 0;
    width: 92px;
    opacity: 0.72;
  }

  .hero-content {
    padding-top: 72px;
  }

  .hero-metrics,
  .offer-grid,
  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics div {
    padding: 14px;
  }

  .section {
    padding: 52px 0;
  }

  .stream-section {
    padding-block: 52px;
  }

  .club-section {
    padding: 24px;
  }

  .button {
    width: 100%;
  }
}
