:root {
  --ink: #101820;
  --paper: #fffdf6;
  --muted: #5c665f;
  --line: #d9e1d8;
  --brand: #126a4a;
  --brand-2: #0b4b38;
  --gold: #f2c94c;
  --coral: #d95f43;
  --sky: #d9eef7;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(16, 24, 32, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #f4f7ef;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
}
a { color: var(--brand); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
img { max-width: 100%; height: auto; display: block; }
p { margin: 0 0 1rem; }
h1, h2, h3 { line-height: 1.15; margin: 0 0 1rem; letter-spacing: 0; }
h1 { font-size: 42px; max-width: 760px; }
h2 { font-size: 28px; }
h3 { font-size: 21px; }
main { overflow: hidden; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px max(18px, calc((100vw - 1160px) / 2));
  background: rgba(255, 253, 246, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.brand { display: inline-flex; align-items: center; }
.site-nav { display: flex; align-items: center; justify-content: center; gap: 4px; }
.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 11px;
  border-radius: 8px;
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
}
.site-nav a[aria-current="page"], .site-nav a:hover { background: #e7f2ea; color: var(--brand-2); }
.header-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 16px;
  border: 0;
  border-radius: 8px;
  background: var(--brand);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(18, 106, 74, 0.22);
}
.btn.secondary { background: var(--ink); }
.menu-toggle { display: none; }

.hero, .section, .band { padding: 56px max(18px, calc((100vw - 1160px) / 2)); }
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: center;
  min-height: 620px;
  background: radial-gradient(circle at 20% 15%, rgba(242, 201, 76, 0.28), transparent 34%), linear-gradient(135deg, #0d2018 0%, #123f2d 62%, #07100d 100%);
  color: var(--white);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 16, 13, 0.86), rgba(7, 16, 13, 0.42), rgba(7, 16, 13, 0.08));
  pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }
.hero .lead { color: #eef8ef; }
.hero .eyebrow { color: var(--gold); }
.hero .breadcrumbs, .hero .breadcrumbs a { color: #cce7d5; }
.hero .disclosure {
  color: #fdf7d5;
  background: rgba(16, 24, 32, 0.58);
  border-left-color: var(--gold);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--brand-2);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
}
.lead { font-size: 20px; max-width: 760px; color: #24342d; }
.hero-media {
  border: 1px solid rgba(16, 24, 32, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  min-height: 300px;
  object-fit: cover;
}
.photo-hero {
  min-height: 680px;
  grid-template-columns: minmax(360px, 0.86fr) minmax(300px, 1.14fr);
}
.photo-hero .hero-media {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border: 2px solid rgba(242, 201, 76, 0.42);
}
.offer-card {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.offer-card span {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid rgba(242, 201, 76, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff8dc;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 22px 0 16px; }
.disclosure, .note {
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  background: rgba(242, 201, 76, 0.16);
  color: #3a3421;
  border-radius: 0 8px 8px 0;
}
.note.risk { border-left-color: var(--coral); background: rgba(217, 95, 67, 0.12); }

.section:nth-of-type(even) { background: #ffffff; }
.casino-banner {
  position: relative;
  margin: 24px 0;
  border-radius: 8px;
  overflow: hidden;
  min-height: 270px;
  background: var(--ink);
  box-shadow: var(--shadow);
}
.casino-banner img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}
.casino-banner .banner-copy {
  position: absolute;
  left: 22px;
  bottom: 22px;
  max-width: 520px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(7, 16, 13, 0.72);
  color: var(--white);
}
.casino-banner strong { color: var(--gold); font-size: 22px; display: block; }
.grid { display: grid; gap: 18px; }
.grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--white);
}
.fact { display: grid; gap: 6px; }
.fact strong { color: var(--brand-2); font-size: 14px; text-transform: uppercase; }
.toc { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.toc a {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 8px; background: var(--white); }
table { width: 100%; border-collapse: collapse; min-width: 680px; }
th, td { padding: 13px 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { background: #eef8ef; color: var(--brand-2); }
tr:last-child td { border-bottom: 0; }
.check-list { padding-left: 1.2rem; }
.check-list li { margin-bottom: 0.6rem; }
.game-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.game-card { padding: 12px; border: 1px solid #214a38; border-radius: 8px; background: #10241b; color: var(--white); box-shadow: 0 12px 28px rgba(16, 24, 32, 0.16); }
.game-card img { width: 100%; border-radius: 6px; aspect-ratio: 170 / 230; object-fit: cover; }
.game-card span { color: #d8eadf; }
.game-card strong { display: block; margin-top: 10px; }
.breadcrumbs { font-size: 14px; margin-bottom: 18px; color: var(--muted); }
.breadcrumbs a { color: var(--muted); }
.author {
  display: flex;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #f7fbf7;
}
.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 900;
  flex: 0 0 auto;
}
.faq-item { border: 1px solid var(--line); border-radius: 8px; padding: 0; background: var(--white); overflow: hidden; }
.faq-button {
  width: 100%;
  min-height: 52px;
  padding: 15px 18px;
  border: 0;
  background: #f7fbf7;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  text-align: left;
}
.faq-item p { padding: 0 18px 18px; }
.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  margin-top: 24px;
  padding: 22px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}
.cta-panel a { color: var(--white); }
.site-footer {
  padding: 42px max(18px, calc((100vw - 1160px) / 2));
  background: #0e1713;
  color: #eaf4ed;
}
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.7fr 1fr; gap: 28px; }
.site-footer a { display: block; color: #eaf4ed; margin-bottom: 8px; }
.responsible strong {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 20px;
}
.copyright { margin-top: 28px; color: #aebfb4; font-size: 14px; }

@media (max-width: 900px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  body { font-size: 16px; }
  .site-header { grid-template-columns: auto auto; }
  .menu-toggle {
    display: inline-grid;
    gap: 4px;
    justify-self: end;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    padding: 12px;
  }
  .menu-toggle span { height: 2px; background: var(--ink); }
  .site-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px;
  }
  .site-nav.is-open { display: flex; }
  .header-cta { display: none; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 28px;
    padding-bottom: 32px;
    gap: 18px;
    background: linear-gradient(135deg, #102318 0%, #173f2d 100%);
  }
  .hero::before {
    background: rgba(7, 16, 13, 0.18);
  }
  .hero .eyebrow {
    margin-bottom: 8px;
    color: var(--gold);
  }
  .hero h1 {
    margin-bottom: 14px;
    color: #fffdf6;
  }
  .hero .lead {
    margin-bottom: 16px;
    color: #f4f7ef;
    font-size: 18px;
    line-height: 1.5;
  }
  .hero-actions {
    margin: 14px 0;
    gap: 10px;
  }
  .photo-hero { min-height: auto; }
  .photo-hero > div { display: contents; }
  .photo-hero .breadcrumbs { order: 1; }
  .photo-hero .eyebrow { order: 2; }
  .photo-hero h1 { order: 3; }
  .photo-hero .lead { order: 4; }
  .photo-hero .hero-actions { order: 5; }
  .photo-hero .hero-media { order: 6; }
  .photo-hero .offer-card { order: 7; }
  .photo-hero .disclosure { order: 8; }
  .photo-hero .hero-media {
    height: 240px;
    min-height: 0;
  }
  .offer-card { grid-template-columns: 1fr; }
  .offer-card {
    gap: 8px;
    margin-top: 8px;
  }
  .offer-card span {
    min-height: 46px;
    padding: 8px 10px;
  }
  .disclosure, .note {
    padding: 12px 14px;
    font-size: 15px;
    line-height: 1.45;
  }
  .grid.cols-3, .grid.cols-2, .footer-grid { grid-template-columns: 1fr; }
  .game-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-panel { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .hero, .section, .band { padding-left: 14px; padding-right: 14px; }
  .hero {
    padding-top: 22px;
    padding-bottom: 26px;
  }
  .hero h1 {
    font-size: 30px;
  }
  .hero .lead {
    font-size: 17px;
  }
  .hero-actions .btn { width: 100%; }
  .game-grid { grid-template-columns: 1fr; }
}
