:root {
  --ink: #10211d;
  --muted: #5b6b66;
  --line: #d7e4df;
  --green: #00e67a;
  --green-dark: #008f52;
  --deep: #071b15;
  --paper: #f6fbf8;
  --white: #ffffff;
  --amber: #f2b84b;
  --red: #c94141;
  --shadow: 0 18px 50px rgba(8, 31, 24, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 251, 248, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand img {
  flex: 0 0 auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
}

.main-nav a,
.footer-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 15px;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--ink);
  background: #e8f4ef;
}

.account-btn,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  line-height: 1.2;
}

.account-btn,
.primary-btn {
  color: #042016;
  background: linear-gradient(135deg, var(--green), #9cffc9);
  box-shadow: 0 10px 24px rgba(0, 163, 88, .25);
}

.secondary-btn {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .08);
}

.hero {
  background:
    linear-gradient(110deg, rgba(7, 27, 21, .96), rgba(10, 64, 43, .9)),
    radial-gradient(circle at 85% 20%, rgba(0, 230, 122, .28), transparent 34%);
  color: var(--white);
  min-height: 640px;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .7fr);
  gap: 44px;
  align-items: center;
  padding: 72px 0;
}

.hero-copy h1,
.page-hero h1 {
  margin: 10px 0 18px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: .98;
  letter-spacing: 0;
}

.lead {
  margin: 0;
  max-width: 760px;
  font-size: 19px;
  color: rgba(255, 255, 255, .82);
}

.page-hero .lead {
  color: rgba(255, 255, 255, .84);
}

.eyebrow {
  margin: 0;
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .08em;
}

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

.hero-panel {
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .04) 0 1px, transparent 1px 12px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
}

.score-card {
  padding: 26px;
  border-radius: 8px;
  background: rgba(5, 22, 17, .62);
}

.score-label {
  display: block;
  color: var(--green);
  font-weight: 800;
  margin-bottom: 8px;
}

.score-card strong {
  display: block;
  font-size: 34px;
  line-height: 1;
}

.score-card p {
  color: rgba(255, 255, 255, .78);
  margin: 14px 0 0;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.feature-row span {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .86);
  font-weight: 800;
}

.section {
  padding: 84px 0;
}

.muted {
  background: #edf6f2;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split,
.content-band,
.final-cta {
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: 42px;
  align-items: start;
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.15;
}

p {
  color: var(--muted);
}

.cards-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card,
.side-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.info-card {
  padding: 26px;
}

.info-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: none;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin: 0 0 14px;
  color: var(--ink);
  font-weight: 650;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 3px #caffdf;
}

.compact li {
  font-weight: 600;
}

.final-cta {
  align-items: center;
  padding: 34px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(120deg, var(--deep), #0f5138);
  box-shadow: var(--shadow);
}

.final-cta p {
  color: rgba(255, 255, 255, .76);
}

.final-cta .primary-btn {
  justify-self: end;
}

.page-hero {
  color: var(--white);
  padding: 92px 0 86px;
  background: linear-gradient(120deg, rgba(7, 27, 21, .98), rgba(19, 93, 62, .86));
}

.casino-hero {
  background: linear-gradient(120deg, rgba(7, 27, 21, .98), rgba(33, 102, 70, .84));
}

.sport-hero {
  background: linear-gradient(120deg, rgba(7, 27, 21, .98), rgba(27, 79, 113, .82));
}

.bonus-hero {
  background: linear-gradient(120deg, rgba(7, 27, 21, .98), rgba(126, 78, 24, .82));
}

.responsible-hero {
  background: linear-gradient(120deg, rgba(7, 27, 21, .98), rgba(111, 42, 48, .84));
}

.narrow {
  max-width: 920px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 36px;
  align-items: start;
}

.prose {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px;
}

.prose h2 {
  font-size: 30px;
  margin-top: 30px;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p {
  font-size: 17px;
}

.side-box {
  position: sticky;
  top: 98px;
  padding: 24px;
}

.side-box h2 {
  font-size: 25px;
}

.warning {
  border-color: #f0c7c7;
}

.full {
  width: 100%;
  margin-top: 8px;
}

.site-footer {
  padding: 42px 0;
  background: #071b15;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 30px;
  align-items: start;
}

.footer-brand {
  color: var(--white);
}

.site-footer p,
.footer-note span {
  color: rgba(255, 255, 255, .68);
}

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

.footer-links a {
  color: rgba(255, 255, 255, .78);
}

.footer-links a:hover {
  color: var(--green);
}

.footer-note {
  display: grid;
  gap: 8px;
}

.footer-note strong {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #061c14;
  background: var(--amber);
  font-size: 19px;
}

@media (max-width: 920px) {
  .header-inner {
    min-height: auto;
    padding: 14px 0;
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .split,
  .content-band,
  .final-cta,
  .article-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .side-box {
    position: static;
  }

  .final-cta .primary-btn {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 24px, 1120px);
  }

  .brand span {
    font-size: 15px;
  }

  .account-btn {
    width: 100%;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: 40px;
  }

  .lead {
    font-size: 17px;
  }

  .section {
    padding: 58px 0;
  }

  .hero-grid {
    padding: 52px 0;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .prose,
  .final-cta {
    padding: 24px;
  }
}
