:root {
  color-scheme: light;
  --ink: #171a18;
  --muted: #5f665f;
  --paper: #fbfaf5;
  --panel: #ffffff;
  --line: #dfe2d7;
  --forest: #12372a;
  --leaf: #1b7a55;
  --gold: #d6a735;
  --coral: #cf6148;
  --shadow: 0 24px 70px rgba(18, 28, 22, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
}

a {
  color: inherit;
}

.site-header {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: #fff;
  text-decoration: none;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--leaf), var(--gold));
  color: #fff;
  font-weight: 900;
  line-height: 1;
}

.logo-text {
  display: grid;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.logo-text span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.header-cta,
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  border: 0;
  background: var(--gold);
  color: #17120a;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.header-cta {
  padding: 0 18px;
  box-shadow: 0 12px 28px rgba(214, 167, 53, 0.28);
}

.header-cta:hover,
.hero-cta:hover {
  transform: translateY(-1px);
  background: #e4ba4d;
}

.hero {
  position: relative;
  min-height: 620px;
  isolation: isolate;
  overflow: hidden;
  background: #10130f;
}

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

.hero-bg {
  z-index: -2;
  background-image: url("hero-betlabel.png");
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 13, 10, 0.92) 0%, rgba(8, 13, 10, 0.74) 38%, rgba(8, 13, 10, 0.24) 72%, rgba(8, 13, 10, 0.48) 100%),
    linear-gradient(180deg, rgba(8, 13, 10, 0.32), rgba(8, 13, 10, 0.82));
}

.hero-inner {
  display: flex;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: 620px;
  margin: 0 auto;
  padding: 118px 0 60px;
}

.hero-card {
  width: min(780px, 100%);
  color: #fff;
}

.hero h1 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(34px, 5.5vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-card > p {
  max-width: 780px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.55;
}

.hero-cta {
  margin-top: 24px;
  padding: 0 24px;
  box-shadow: 0 18px 34px rgba(214, 167, 53, 0.25);
}

.content-section {
  padding: 44px 16px 56px;
}

.content-block {
  width: min(940px, 100%);
  margin: 0 auto;
  padding: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.content-block > *:first-child {
  margin-top: 0;
}

.content-block > *:last-child {
  margin-bottom: 0;
}

.content-block h1,
.content-block h2,
.content-block h3,
.content-block h4,
.content-block h5,
.content-block h6 {
  color: #142019;
  line-height: 1.16;
  letter-spacing: 0;
}

.content-block h2 {
  margin: 48px 0 16px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  font-size: 32px;
}

.content-block h3 {
  margin: 34px 0 12px;
  font-size: 23px;
}

.content-block p {
  margin: 0 0 18px;
  color: #333a34;
}

.content-block img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 0 34px;
  border-radius: 8px;
}

.content-block a {
  color: var(--leaf);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.content-cta-row {
  display: flex;
  justify-content: center;
  margin: 44px 0 10px;
}

.content-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 8px;
  background: var(--leaf);
  color: #fff !important;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 16px 28px rgba(27, 122, 85, 0.2);
  transition: transform 160ms ease, background 160ms ease;
}

.content-cta:hover {
  transform: translateY(-1px);
  background: #155f43;
}

.content-block strong,
.content-block b {
  color: #172119;
  font-weight: 850;
}

.content-block em,
.content-block i {
  color: #3b473e;
}

.content-block ul,
.content-block ol {
  margin: 18px 0 24px;
  padding-left: 24px;
}

.content-block li {
  margin: 8px 0;
  padding-left: 4px;
}

.content-block li::marker {
  color: var(--coral);
  font-weight: 800;
}

.content-block blockquote {
  margin: 28px 0;
  padding: 22px 24px;
  border-left: 5px solid var(--gold);
  border-radius: 0 8px 8px 0;
  background: #f7f1df;
  color: #303326;
}

.table-wrap {
  width: 100%;
  margin: 26px 0 34px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.content-block table {
  display: table;
  width: 100%;
  min-width: 720px;
  margin: 0;
  border-spacing: 0;
  border-collapse: collapse;
  background: #fff;
}

.content-block thead {
  background: var(--forest);
  color: #fff;
}

.content-block tbody tr:nth-child(even) {
  background: #f6f7f1;
}

.content-block th,
.content-block td {
  min-width: 190px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.content-block th {
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
}

.content-block td {
  color: #343b35;
}

.content-block tr:last-child td {
  border-bottom: 0;
}

.site-footer {
  display: grid;
  gap: 22px;
  padding: 42px 16px 34px;
  background: #11140f;
  color: rgba(255, 255, 255, 0.78);
}

.footer-brand,
.footer-warning,
.footer-copy {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
}

.footer-nav a:hover {
  color: #fff;
}

.page-header {
  position: static;
  padding: 18px 0;
}

.page-header .logo,
.page-header .logo-text {
  color: var(--ink);
}

.page-header .logo-text span {
  color: var(--muted);
}

.legal-main {
  padding: 42px 16px 82px;
}

.legal-hero {
  width: min(940px, 100%);
  margin: 0 auto 24px;
}

.legal-hero h1 {
  margin: 0;
  color: #142019;
  font-size: clamp(34px, 6vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
}

.legal-hero p {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.footer-warning {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.footer-warning strong {
  color: #fff;
}

.footer-copy {
  text-align: center;
  font-size: 14px;
}

.bonus-popup {
  position: fixed;
  z-index: 20;
  left: 50%;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(620px, calc(100% - 28px));
  padding: 18px 58px 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(17, 20, 15, 0.96);
  color: #fff;
  box-shadow: 0 22px 60px rgba(8, 13, 10, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.bonus-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.bonus-popup p {
  flex: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.35;
}

.bonus-popup__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--gold);
  color: #17120a;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.bonus-popup__button:hover {
  background: #e4ba4d;
}

.bonus-popup__close {
  position: absolute;
  top: 8px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #9b9f98;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.bonus-popup__close:hover {
  color: #d0d3cc;
}

@media (max-width: 720px) {
  .site-header {
    width: min(100% - 24px, 1180px);
    padding-top: 14px;
  }

  .logo-mark {
    width: 38px;
    height: 38px;
  }

  .logo-text {
    font-size: 16px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 14px;
  }

  .hero,
  .hero-inner {
    min-height: 590px;
  }

  .hero-inner {
    width: min(100% - 24px, 1180px);
    padding-top: 108px;
  }

  .hero h1 {
    max-width: 18ch;
  }

  .hero-card > p {
    font-size: 15px;
  }

  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .bonus-popup {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    padding: 18px 46px 18px 18px;
  }

  .bonus-popup__button {
    width: 100%;
  }

  .content-section {
    padding: 30px 12px 42px;
  }

  .content-block {
    padding: 26px 18px;
  }

  .content-block h2 {
    font-size: 25px;
  }

  .content-block h3 {
    font-size: 20px;
  }
}
