:root {
  --bg: #f7f8f4;
  --surface: #ffffff;
  --ink: #111417;
  --muted: #65706f;
  --line: #dde3de;
  --green: #0f7d68;
  --lime: #d7f64a;
  --blue: #2451e6;
  --red: #d74332;
  --shadow: 0 18px 60px rgba(17, 20, 23, .09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(16px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 248, 244, .92);
  backdrop-filter: blur(14px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  letter-spacing: .06em;
}

.brand b,
.footer-brand b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
}

.site-header nav,
.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.site-header nav a,
.footer nav a {
  padding: 8px 10px;
  color: var(--muted);
  font-size: 14px;
}

.site-header nav a:hover,
.footer nav a:hover {
  color: var(--ink);
}

.header-action,
.footer-go,
.cta a,
.hero-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 800;
}

.header-action {
  padding: 8px 18px;
  background: var(--ink);
  color: #fff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: clamp(22px, 5vw, 70px);
  align-items: center;
  min-height: 650px;
  padding: 74px clamp(16px, 6vw, 80px);
}

.hero-copy {
  max-width: 820px;
}

.eyebrow,
.section-head p {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 22px;
  max-width: 760px;
  font-size: clamp(44px, 8vw, 104px);
  line-height: .92;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

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

.hero-actions a {
  padding: 12px 22px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.hero-actions a:first-child {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.hero-panel {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.ticker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.ticker span {
  display: grid;
  place-items: center;
  min-height: 58px;
  border-radius: 6px;
  background: #eef3ef;
  font-weight: 900;
}

.meter {
  height: 150px;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(90deg, #f1f4f1 1px, transparent 1px), linear-gradient(#f1f4f1 1px, transparent 1px);
  background-size: 28px 28px;
  overflow: hidden;
}

.meter i {
  display: block;
  width: 74%;
  height: 100%;
  background: linear-gradient(135deg, var(--lime), var(--green));
  clip-path: polygon(0 100%, 18% 62%, 42% 72%, 68% 30%, 100% 0, 100% 100%);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.quick-grid a {
  display: grid;
  place-items: center;
  min-height: 48px;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
}

.categories,
.bonus,
.slots,
.seo {
  padding: 76px clamp(16px, 6vw, 80px);
  border-top: 1px solid var(--line);
}

.section-head {
  display: grid;
  grid-template-columns: 180px minmax(0, 820px);
  gap: 34px;
  align-items: start;
  margin-bottom: 30px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
  letter-spacing: 0;
}

.categories {
  background: #eef3ef;
}

.category-strip {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, 1fr);
  gap: 12px;
}

.category-card {
  position: relative;
  display: flex;
  min-height: 245px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.category-card:first-child {
  background: var(--ink);
  color: #fff;
}

.category-card::after {
  position: absolute;
  right: -28px;
  bottom: -36px;
  width: 112px;
  height: 112px;
  border: 18px solid rgba(15, 125, 104, .16);
  border-radius: 50%;
  content: "";
}

.category-card:first-child::after {
  border-color: rgba(215, 246, 74, .28);
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(36, 81, 230, .35);
  box-shadow: var(--shadow);
}

.category-card span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.category-card:first-child span,
.category-card:first-child p {
  color: rgba(255, 255, 255, .72);
}

.category-card h3 {
  margin: auto 0 10px;
  font-size: clamp(28px, 4vw, 50px);
  line-height: .95;
  letter-spacing: 0;
}

.category-card p {
  min-height: 72px;
  margin: 0 0 18px;
  color: var(--muted);
}

.category-card a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eef3ef;
  color: var(--ink);
  font-weight: 900;
}

.category-card:first-child a {
  background: var(--lime);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.bonus-grid article {
  min-height: 250px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  transition: transform .18s ease, box-shadow .18s ease;
}

.bonus-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.bonus-grid button {
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font: inherit;
  font-weight: 900;
}

.bonus-grid h3,
.slot-card h3 {
  margin: 18px 0 8px;
  font-size: 20px;
  line-height: 1.2;
}

.bonus-grid p,
.slot-card p {
  margin: 0;
  color: var(--muted);
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.slot-card {
  position: relative;
  overflow: hidden;
  min-height: 286px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.slot-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}

.slot-card h3 {
  font-size: 15px;
}

.slot-card p {
  font-size: 13px;
}

.slot-card a {
  position: absolute;
  inset: 10px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: rgba(17, 20, 23, .78);
  color: #fff;
  font-weight: 900;
  opacity: 0;
  transform: scale(.98);
  transition: opacity .18s ease, transform .18s ease;
}

.slot-card:hover a,
.slot-card:focus-within a {
  opacity: 1;
  transform: scale(1);
}

.cta {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}

.cta a {
  padding: 12px 22px;
  background: var(--red);
  color: #fff;
}

.seo {
  background: #fff;
}

.seo-body {
  max-width: 980px;
  margin-left: 214px;
}

.seo-body h2,
.seo-body h3,
.seo-body h4 {
  scroll-margin-top: 90px;
  line-height: 1.18;
}

.seo-body h2 {
  margin: 44px 0 14px;
  font-size: 34px;
}

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

.seo-body h3 {
  margin: 34px 0 12px;
  font-size: 24px;
}

.seo-body h4 {
  margin: 24px 0 10px;
  font-size: 19px;
}

.seo-body p {
  margin: 0 0 14px;
}

.seo-body ul,
.seo-body ol {
  padding-left: 22px;
}

.seo-body li {
  margin: 6px 0;
}

.seo-body table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  margin: 18px 0;
}

.seo-body th,
.seo-body td {
  padding: 12px 14px;
  border: 1px solid var(--line);
  text-align: left;
}

.seo-body th {
  background: #eef3ef;
}

.seo-body hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 34px 0;
}

.footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 20px;
  align-items: center;
  padding: 32px clamp(16px, 6vw, 80px);
  background: var(--ink);
  color: #fff;
}

.footer nav a {
  color: rgba(255, 255, 255, .72);
}

.marks {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.marks span {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 800;
}

.footer-go {
  padding: 9px 18px;
  background: #fff;
  color: var(--ink);
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .category-strip {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .seo-body {
    margin-left: 0;
  }

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

@media (max-width: 760px) {
  .site-header {
    position: relative;
    grid-template-columns: 1fr;
  }

  .site-header nav,
  .footer nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .bonus-grid,
  .category-strip,
  .slot-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    padding-top: 42px;
  }

  h1 {
    font-size: 42px;
  }
}

@media (max-width: 460px) {
  .bonus-grid,
  .category-strip,
  .slot-grid,
  .quick-grid {
    grid-template-columns: 1fr;
  }

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