:root {
  --primary: #24ff7a;
  --primary-dark: #0bd85f;
  --primary-soft: rgba(36, 255, 122, .12);
  --secondary: #4da3ff;
  --secondary-dark: #1a76d2;
  --gold: #f7c957;
  --gold-soft: rgba(247, 201, 87, .16);
  --ink: #f8fff9;
  --text: #e2f3e7;
  --muted: #a9b9ae;
  --line: rgba(112, 255, 166, .16);
  --paper: #101712;
  --paper-2: #151f18;
  --bg: #050805;
  --shadow: 0 24px 70px rgba(0, 0, 0, .52);
  --shadow-soft: 0 14px 34px rgba(0, 0, 0, .32);
  --neon: 0 0 20px rgba(36, 255, 122, .35), 0 0 42px rgba(36, 255, 122, .16);
  --gold-glow: 0 0 22px rgba(247, 201, 87, .28);
  --radius: 18px;
  --radius-lg: 24px;
  --max: 960px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: Inter, Roboto, Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  background:
    radial-gradient(circle at 12% -10%, rgba(36, 255, 122, .20), transparent 360px),
    radial-gradient(circle at 90% 8%, rgba(77, 163, 255, .14), transparent 320px),
    radial-gradient(circle at 50% 105%, rgba(247, 201, 87, .10), transparent 420px),
    linear-gradient(180deg, #020403 0%, #050805 44%, #070b08 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(36,255,122,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36,255,122,.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.70), transparent 78%);
  z-index: -2;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 20%), rgba(36, 255, 122, .10), transparent 260px);
  z-index: -1;
  transition: background .16s linear;
}
body.is-loaded .panel { will-change: transform, opacity; }

::selection { background: rgba(36, 255, 122, .34); color: #fff; }
a { color: var(--primary); text-decoration: none; font-weight: 800; }
a:hover, a:focus { color: var(--gold); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  background: rgba(5, 8, 5, .78);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, .28);
  transition: min-height .25s ease, background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  background: rgba(2, 4, 3, .94);
  box-shadow: 0 14px 38px rgba(0, 0, 0, .44), var(--neon);
}
.header-inner {
  width: min(var(--max), calc(100% - 24px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo img {
  width: 188px;
  height: auto;
  padding: 8px 10px;
  border-radius: 16px;
      background: rgb(255 255 255 / 9%);
  box-shadow: 0 0 0 1px rgba(36,255,122,.16), 0 12px 26px rgba(0,0,0,.30);
}
.primary-nav { display: flex; align-items: center; gap: 10px; }
.primary-nav a {
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  padding: 12px 13px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background .22s ease, color .22s ease, transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.primary-nav a:hover,
.primary-nav a:focus,
.primary-nav a[aria-current="page"] {
  color: var(--primary);
  background: rgba(36,255,122,.10);
  border-color: rgba(36,255,122,.22);
  transform: translateY(-1px);
  box-shadow: var(--neon);
}
.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid rgba(36,255,122,.36);
  border-radius: 14px;
  background: linear-gradient(135deg, #062614, #0bd85f);
  box-shadow: var(--neon);
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.page-wrap { position: relative; padding: 28px 12px 0; }
.panel {
  width: min(var(--max), 100%);
  margin: 0 auto 24px;
  background: linear-gradient(180deg, rgba(18, 27, 20, .98), rgba(11, 15, 12, .98));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(36,255,122,.16), transparent 28%, rgba(247,201,87,.08));
  opacity: .72;
}
.panel-inner { position: relative; padding: 34px 42px 36px; }
.hero .panel-inner { padding-bottom: 18px; }

.section-title,
.hero-title,
h1 {
  color: var(--ink);
  text-align: center;
  text-transform: uppercase;
  line-height: 1.18;
  margin: 0;
  font-weight: 950;
  letter-spacing: .018em;
  text-shadow: 0 0 24px rgba(36,255,122,.13);
}
.hero-title { font-size: clamp(25px, 3vw, 34px); }
.section-title, h1 { font-size: clamp(23px, 2.7vw, 30px); }
.title-line {
  width: 112px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  margin: 16px auto 28px;
  border-radius: 999px;
  box-shadow: var(--neon), var(--gold-glow);
}
.lead {
  color: var(--text);
  max-width: 825px;
  margin: 0 auto 26px;
  font-size: 14px;
  text-align: left;
}
.hero-actions { display: flex; justify-content: flex-end; margin: 0 0 14px; }
.select-sort {
  border: 1px solid var(--line);
  color: var(--text);
  background: #0b120d;
  border-radius: 999px;
  padding: 8px 36px 8px 14px;
  font-size: 12px;
  box-shadow: var(--shadow-soft);
}

.ranking { border-top: 1px solid var(--line); margin-left: -42px; margin-right: -42px; }
.casino-row {
  display: grid;
  grid-template-columns: 40px 170px minmax(220px, 1fr) 96px 150px;
  gap: 15px;
  align-items: center;
  min-height: 116px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(15, 22, 17, .96), rgba(9, 13, 10, .96));
  transition: background .25s ease, transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.casino-row:hover {
  background: linear-gradient(90deg, rgba(22, 33, 25, .98), rgba(12, 17, 13, .98));
  border-color: rgba(36,255,122,.32);
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1px rgba(36,255,122,.12), var(--neon);
}
.rank-no {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #030503;
  background: linear-gradient(135deg, var(--gold), #ffe9a1);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 950;
  text-align: center;
  box-shadow: var(--gold-glow);
}
.brand-name {
  font-size: 37px;
  font-weight: 950;
  line-height: .95;
  letter-spacing: -.06em;
  color: var(--primary);
  text-shadow: 0 0 16px rgba(36,255,122,.24);
  white-space: nowrap;
}
.brand-name.orange { color: #ff8a43; text-shadow: 0 0 15px rgba(255,138,67,.25); }
.brand-name small {
  display: block;
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--muted);
  margin-top: 10px;
  text-transform: uppercase;
}
.features { margin: 0 0 8px; padding-left: 18px; color: var(--text); font-size: 13px; line-height: 1.48; }
.features li::marker { color: var(--gold); }
.bonus-line { color: var(--gold); font-size: 12px; font-weight: 950; margin: 0 0 3px; }
.review-link { display: inline-block; font-size: 12px; font-weight: 950; text-decoration: underline; text-underline-offset: 3px; }
.score-wrap { text-align: center; position: relative; }
.score-label {
  display: inline-block;
  margin-bottom: 7px;
  padding: 5px 10px;
  background: rgba(247,201,87,.12);
  color: var(--gold);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  border: 1px solid rgba(247,201,87,.24);
  border-radius: 999px;
}
.score {
  width: 62px;
  height: 62px;
  margin: 0 auto;
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 24px;
  font-weight: 900;
  background: radial-gradient(circle, rgba(247,201,87,.12), rgba(6, 9, 7, .98));
  box-shadow: 0 0 0 6px rgba(247,201,87,.08), var(--gold-glow);
}
.cta {
  margin: 10px 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 142px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #38ff86, #0bd85f 54%, #08a948);
  border: 1px solid rgba(145,255,185,.78);
  color: #011707;
  font-weight: 950;
  font-size: 12px;
  box-shadow: 0 0 18px rgba(36,255,122,.50), 0 12px 26px rgba(0,0,0,.34), inset 0 0 0 1px rgba(255,255,255,.25);
  text-transform: uppercase;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, filter .22s ease;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: -120% -40%;
  background: linear-gradient(110deg, transparent 42%, rgba(255,255,255,.68) 50%, transparent 58%);
  transform: translateX(-70%);
  transition: transform .65s ease;
}
.cta:hover::before, .cta:focus::before { transform: translateX(70%); }
.cta:hover, .cta:focus {
  color: #011707;
  background: linear-gradient(135deg, #72ffa7, #24ff7a, #12c45a);
  text-decoration: none;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 24px rgba(36,255,122,.62), 0 18px 30px rgba(0,0,0,.42);
}

.article-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.article-card { display: grid; grid-template-columns: 148px 1fr; gap: 16px; align-items: start; }
.article-card img { border-radius: 16px; aspect-ratio: 10/9; object-fit: cover; box-shadow: var(--shadow-soft); border: 1px solid var(--line); }
.article-card h3 { margin: 0 0 8px; font-size: 15px; line-height: 1.35; color: var(--ink); }
.article-card p { margin: 0; font-size: 12px; line-height: 1.48; color: var(--text); }
.article-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.article-list .article-card {
  grid-template-columns: 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(22,31,24,.98), rgba(11,16,12,.98));
  box-shadow: var(--shadow-soft);
}
.article-list .article-card img { border-radius: 0; width: 100%; }
.article-list .article-card .article-content { padding: 0 20px 22px; }
.article-list .article-card h2 { margin: 0 0 10px; font-size: 20px; line-height: 1.3; color: var(--ink); }
.article-list .article-card p { font-size: 14px; }

.content-block { color: var(--text); }
.content-block p { margin: 0 0 18px; }
.content-block h2, .content-block h3 { color: var(--ink); margin: 24px 0 10px; line-height: 1.3; }
.content-block ul, .content-block ol { margin-top: 0; padding-left: 22px; }
.content-block li { margin-bottom: 8px; }
.note-box {
  border-left: 5px solid var(--primary);
  background: rgba(36,255,122,.08);
  padding: 16px 18px;
  margin: 22px 0;
  color: var(--text);
  border-radius: 0 16px 16px 0;
  box-shadow: inset 0 0 0 1px rgba(36,255,122,.10);
}

.review-detail { display: grid; grid-template-columns: 170px 1fr; gap: 24px; padding: 24px 0; border-top: 1px solid var(--line); }
.review-detail:first-of-type { border-top: 0; padding-top: 0; }
.review-detail h2 { margin: 0 0 8px; color: var(--ink); }
.meta-list { display: grid; gap: 8px; margin: 12px 0; padding: 0; list-style: none; }
.meta-list li { padding: 10px 12px; background: rgba(36,255,122,.06); border: 1px solid var(--line); border-radius: 14px; }

.contact-layout { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr); gap: 30px; }
.contact-form { display: grid; gap: 15px; }
.field label { display: block; margin: 0 0 6px; font-weight: 950; color: var(--ink); }
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 14px;
  font: inherit;
  color: var(--text);
  background: #080d09;
  outline: none;
  transition: border .2s, box-shadow .2s, background .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(36,255,122,.14), var(--neon); background: #0c140e; }
.field textarea { min-height: 132px; resize: vertical; }
.form-submit { justify-self: start; border: 0; cursor: pointer; }
.help-card {
  background: linear-gradient(180deg, rgba(20, 31, 24, .98), rgba(9, 14, 10, .98));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}
.help-card h2 { margin: 0 0 12px; color: var(--ink); }
.help-card p { margin: 0 0 12px; }

.site-footer {
  margin-top: 0;
  padding: 34px 12px 42px;
  background: linear-gradient(180deg, rgba(8, 12, 9, .96), rgba(2, 4, 3, .98));
  color: var(--muted);
  font-size: 12px;
  border-top: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(36,255,122,.08);
}
.footer-inner { width: min(var(--max), 100%); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) minmax(250px, .9fr);
  gap: 22px;
  align-items: start;
  text-align: left;
}
.footer-brand, .footer-copy, .footer-warning {
  border: 1px solid var(--line);
  background: rgba(16, 23, 18, .72);
  border-radius: 20px;
  padding: 18px;
  min-height: 100%;
}
.footer-seal { width: 210px; margin: 0 0 16px; border-radius: 10px; box-shadow: var(--shadow-soft); }
.footer-copy h2, .footer-warning h2 { margin: 0 0 10px; color: var(--ink); font-size: 16px; line-height: 1.3; }
.footer-inner p { margin: 0 0 10px; }
.footer-links { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin: 22px 0 16px; }
.footer-links a {
  color: var(--primary);
  font-weight: 950;
  padding: 9px 12px;
  border: 1px solid rgba(36,255,122,.18);
  border-radius: 999px;
  background: rgba(36,255,122,.06);
}
.footer-links a:hover, .footer-links a:focus { color: var(--gold); border-color: rgba(247,201,87,.35); }
.age-line { font-weight: 950; color: var(--gold); text-align: center; }
.footer-small, .footer-bottom { max-width: 900px; margin-left: auto !important; margin-right: auto !important; text-align: center; }
.footer-bottom { color: var(--text); padding-top: 8px; }

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  max-width: 940px;
  margin: 0 auto;
  background: rgba(10, 15, 11, .96);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, .55), var(--neon);
  z-index: 80;
  display: none;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 18px;
  align-items: center;
  backdrop-filter: blur(18px);
}
.cookie-banner.is-visible { display: grid; animation: rise .35s ease both; }
.cookie-banner p { margin: 0; color: var(--text); font-size: 13px; }
.cookie-actions { display: flex; gap: 10px; align-items: center; }
.cookie-btn { border: 0; border-radius: 999px; padding: 10px 16px; font-weight: 950; cursor: pointer; }
.cookie-accept { background: var(--primary); color: #011707; box-shadow: var(--neon); }
.cookie-secondary { background: rgba(77,163,255,.12); color: #cfe7ff; border: 1px solid rgba(77,163,255,.22); }

.alert-modal { position: fixed; inset: 0; background: rgba(0, 0, 0, .72); display: none; align-items: center; justify-content: center; padding: 20px; z-index: 100; }
.alert-modal.is-visible { display: flex; }
.alert-card {
  width: min(420px, 100%);
  background: linear-gradient(180deg, #111a13, #070b08);
  border: 1px solid rgba(36,255,122,.22);
  border-radius: 26px;
  padding: 34px 28px;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0,0,0,.58), var(--neon);
  animation: pop .35s cubic-bezier(.2, 1.1, .25, 1) both;
}
.alert-icon { width: 86px; height: 86px; margin: 0 auto 16px; border-radius: 50%; background: rgba(36,255,122,.08); border: 3px solid var(--primary); position: relative; animation: pulse .75s ease .2s both; box-shadow: var(--neon); }
.alert-icon::after { content: ""; position: absolute; left: 24px; top: 30px; width: 30px; height: 16px; border-left: 5px solid var(--primary); border-bottom: 5px solid var(--primary); transform: rotate(-45deg); transform-origin: center; animation: draw-check .45s ease .25s both; }
.alert-card h2 { margin: 0 0 8px; color: var(--ink); }
.alert-card p { margin: 0 0 20px; color: var(--muted); }

.breadcrumbs { width: min(var(--max), 100%); margin: 0 auto 12px; color: var(--muted); font-size: 13px; }
.breadcrumbs a { color: var(--muted); font-weight: 950; }

.js-reveal { opacity: 0; transform: translateY(26px) scale(.985); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.js-reveal.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.casino-row.js-reveal, .article-card.js-reveal { transition-delay: calc(var(--delay, 0) * 90ms); }
.fx-particle {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  pointer-events: none;
  background: var(--primary);
  box-shadow: var(--neon);
  z-index: 120;
  animation: particle .7s ease-out forwards;
}

@keyframes rise { from { transform: translateY(16px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes pop { from { transform: translateY(24px) scale(.94); opacity: 0; } to { transform: translateY(0) scale(1); opacity: 1; } }
@keyframes pulse { 0% { transform: scale(.7); opacity: .3; } 70% { transform: scale(1.08); } 100% { transform: scale(1); opacity: 1; } }
@keyframes draw-check { from { clip-path: inset(0 100% 0 0); } to { clip-path: inset(0 0 0 0); } }
@keyframes particle { to { transform: translate(var(--tx), var(--ty)) scale(0); opacity: 0; } }

@media (max-width: 860px) {
  .panel-inner { padding: 26px 22px; }
  .ranking { margin-left: -22px; margin-right: -22px; }
  .casino-row { grid-template-columns: 34px 1fr 88px; gap: 12px; padding: 18px 22px; }
  .casino-info { grid-column: 2 / -1; }
  .score-wrap { grid-column: 2 / 3; display: flex; align-items: center; justify-content: flex-start; gap: 12px; text-align: left; }
  .score-label { margin: 0; }
  .cta-wrap { grid-column: 3 / 4; grid-row: 2; justify-self: end; }
  .brand-name { font-size: 31px; }
  .article-card, .article-list, .article-grid, .contact-layout, .review-detail, .footer-grid { grid-template-columns: 1fr; }
  .article-card { gap: 12px; }
  .article-card img { width: 100%; }
  .cookie-banner { grid-template-columns: 1fr; }
  .cookie-actions { justify-content: flex-start; flex-wrap: wrap; }
}

@media (max-width: 680px) {
  .header-inner { min-height: 68px; }
  .nav-toggle { display: block; }
  .primary-nav {
    position: absolute;
    left: 12px;
    right: 12px;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(8, 12, 9, .98);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow), var(--neon);
    overflow: hidden;
  }
  .primary-nav.is-open { display: flex; animation: rise .24s ease both; }
  .primary-nav a { padding: 16px 18px; border-radius: 0; border-bottom: 1px solid var(--line); }
  .primary-nav a:last-child { border-bottom: 0; }
  .logo img { width: 160px; }
  .page-wrap { padding-top: 18px; }
  .lead { font-size: 13px; }
  .casino-row { grid-template-columns: 28px 1fr; }
  .rank-no { font-size: 13px; }
  .casino-info, .score-wrap, .cta-wrap { grid-column: 2 / -1; }
  .cta-wrap { grid-row: auto; justify-self: start; }
  .brand-name { font-size: 28px; }
  .score { width: 54px; height: 54px; font-size: 20px; }
  .hero-actions { justify-content: stretch; }
  .select-sort { width: 100%; }
  .footer-links { flex-direction: column; gap: 8px; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .js-reveal { opacity: 1 !important; transform: none !important; }
}

.casino-info {
  margin: 10px 0;
}

.brand-name--image {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  min-width: 150px;
}

.brand-name--image img {
  display: block;
  max-width: 150px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(57, 255, 20, 0.18));
}

.brand-name--image small {
  display: block;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 600;
  color: rgba(245, 247, 250, 0.72);
  letter-spacing: 0.02em;
}
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    radial-gradient(circle at top, rgba(57, 255, 20, 0.16), transparent 36%),
    rgba(3, 7, 6, 0.92);
  backdrop-filter: blur(14px);
}

.age-gate.is-hidden {
  display: none;
}

.age-gate__panel {
  width: min(100%, 460px);
  padding: 34px 28px;
  border: 1px solid rgba(57, 255, 20, 0.24);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(18, 24, 22, 0.98), rgba(7, 10, 9, 0.98));
  color: #f5f7fa;
  text-align: center;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.58),
    0 0 42px rgba(57, 255, 20, 0.12);
  animation: ageGateIn 0.5s ease both;
}

.age-gate__badge {
  display: inline-grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin-bottom: 18px;
  border: 2px solid #d8b75d;
  border-radius: 50%;
  color: #d8b75d;
  font-size: 26px;
  font-weight: 900;
  box-shadow: 0 0 24px rgba(216, 183, 93, 0.22);
}

.age-gate h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(26px, 5vw, 36px);
  line-height: 1.1;
}

.age-gate p {
  margin: 0 0 22px;
  color: rgba(245, 247, 250, 0.78);
  font-size: 15px;
  line-height: 1.65;
}

.age-gate__actions {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.age-gate__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.age-gate__btn:hover {
  transform: translateY(-2px);
}

.age-gate__btn--primary {
  border: 1px solid rgba(57, 255, 20, 0.8);
  background: #39ff14;
  color: #031007;
  box-shadow: 0 0 28px rgba(57, 255, 20, 0.28);
}

.age-gate__btn--primary:hover {
  box-shadow: 0 0 42px rgba(57, 255, 20, 0.42);
}

.age-gate__btn--secondary {
  border: 1px solid rgba(245, 247, 250, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #f5f7fa;
}

.age-gate small {
  display: block;
  color: rgba(245, 247, 250, 0.58);
  font-size: 12px;
  line-height: 1.5;
}

body.age-locked {
  overflow: hidden;
}

@keyframes ageGateIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Mobile adaptive polish */
@media (max-width: 760px) {
  :root {
    --radius: 16px;
    --radius-lg: 22px;
  }

  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body.menu-open,
  body.age-locked {
    overflow: hidden;
    touch-action: none;
  }

  .site-header {
    z-index: 200;
  }

  .header-inner {
    width: min(100% - 24px, var(--max));
    min-height: 66px;
    gap: 10px;
  }

  .logo img {
    width: clamp(132px, 43vw, 164px);
    padding: 7px 8px;
    border-radius: 14px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 0 0 46px;
    min-width: 46px;
    position: relative;
    z-index: 215;
    -webkit-tap-highlight-color: transparent;
  }

  .primary-nav {
    position: fixed;
    top: 76px;
    left: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    max-height: calc(100dvh - 92px);
    padding: 14px;
    overflow-y: auto;
    border: 1px solid rgba(36, 255, 122, .24);
    border-radius: 24px;
    background:
      radial-gradient(circle at top left, rgba(36,255,122,.18), transparent 260px),
      linear-gradient(180deg, rgba(10, 16, 11, .98), rgba(2, 4, 3, .98));
    box-shadow: 0 28px 90px rgba(0,0,0,.68), var(--neon);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px) scale(.98);
    transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    animation: none;
  }

  .primary-nav a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 15px 16px;
    border: 1px solid rgba(36,255,122,.12);
    border-radius: 16px;
    background: rgba(255,255,255,.035);
    font-size: 14px;
    letter-spacing: .02em;
  }

  .primary-nav a::after {
    content: "›";
    margin-left: auto;
    color: var(--gold);
    font-size: 22px;
    line-height: 1;
  }

  .primary-nav a:last-child {
    border-bottom: 1px solid rgba(36,255,122,.12);
  }

  .page-wrap {
    padding: 16px 10px 0;
  }

  .breadcrumbs {
    width: min(100%, var(--max));
    margin-bottom: 10px;
    padding: 0 2px;
    font-size: 12px;
  }

  .panel {
    margin-bottom: 16px;
    border-radius: 22px;
    box-shadow: 0 18px 46px rgba(0,0,0,.42);
  }

  .panel-inner,
  .hero .panel-inner {
    padding: 22px 16px 24px;
  }

  .hero-title,
  .section-title,
  h1 {
    font-size: clamp(22px, 7vw, 31px);
    letter-spacing: .01em;
  }

  .title-line {
    width: 92px;
    margin: 13px auto 20px;
  }

  .lead,
  .content-block p,
  .content-block li {
    font-size: 14px;
    line-height: 1.66;
  }

  .hero-actions {
    margin-bottom: 16px;
  }

  .select-sort,
  .field input,
  .field textarea,
  .field select {
    min-height: 48px;
    font-size: 16px;
  }

  .ranking {
    display: grid;
    gap: 14px;
    margin: 0;
    border-top: 0;
  }

  .casino-row {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    min-height: auto;
    padding: 16px;
    border: 1px solid rgba(36,255,122,.18);
    border-radius: 22px;
    background:
      radial-gradient(circle at top right, rgba(36,255,122,.12), transparent 210px),
      linear-gradient(180deg, rgba(17, 27, 20, .98), rgba(7, 11, 8, .98));
    box-shadow: 0 16px 36px rgba(0,0,0,.34);
    overflow: hidden;
  }

  .casino-row:hover {
    transform: none;
  }

  .rank-no {
    width: 34px;
    height: 34px;
    font-size: 15px;
    align-self: center;
  }

  .brand-name,
  .brand-name--image {
    min-width: 0;
    width: 100%;
    align-self: center;
  }

  .brand-name {
    font-size: clamp(27px, 10vw, 38px);
    white-space: normal;
    letter-spacing: -.045em;
  }

  .brand-name--image img {
    max-width: min(168px, 72vw);
    max-height: 54px;
  }

  .casino-info {
    grid-column: 1 / -1;
    margin: 2px 0 0;
    padding-top: 10px;
    border-top: 1px solid rgba(36,255,122,.12);
  }

  .features {
    display: grid;
    gap: 8px;
    margin-bottom: 12px;
    padding-left: 18px;
    font-size: 13px;
    line-height: 1.5;
  }

  .bonus-line {
    padding: 10px 12px;
    border: 1px solid rgba(247,201,87,.20);
    border-radius: 14px;
    background: rgba(247,201,87,.08);
    font-size: 12px;
    line-height: 1.35;
  }

  .review-link {
    margin-top: 6px;
    font-size: 13px;
  }

  .score-wrap {
    grid-column: 1 / 2;
    display: grid;
    justify-items: center;
    align-items: center;
    gap: 6px;
    text-align: center;
  }

  .score-label {
    display: none;
  }

  .score {
    width: 56px;
    height: 56px;
    font-size: 21px;
  }

  .cta-wrap {
    grid-column: 2 / -1;
    justify-self: stretch;
    align-self: center;
  }

  .cta {
    width: 100%;
    min-height: 50px;
    margin: 0;
    font-size: 13px;
    letter-spacing: .02em;
    touch-action: manipulation;
  }

  .article-grid,
  .article-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .article-grid .article-card,
  .article-list .article-card {
    display: block;
    border: 1px solid rgba(36,255,122,.16);
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(19, 29, 22, .98), rgba(8, 12, 9, .98));
    box-shadow: 0 14px 34px rgba(0,0,0,.30);
  }

  .article-grid .article-card img,
  .article-list .article-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    border: 0;
    border-radius: 0;
  }

  .article-grid .article-card .article-content,
  .article-list .article-card .article-content {
    padding: 16px;
  }

  .article-card h3,
  .article-list .article-card h2 {
    font-size: 18px;
    line-height: 1.28;
  }

  .article-card p,
  .article-list .article-card p {
    font-size: 14px;
    line-height: 1.55;
  }

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

  .note-box {
    padding: 14px 15px;
    border-radius: 14px;
  }

  .review-detail {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px 0;
  }

  .review-detail .brand-name,
  .review-detail .brand-name--image {
    padding: 14px;
    border: 1px solid rgba(36,255,122,.14);
    border-radius: 18px;
    background: rgba(36,255,122,.055);
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-form {
    gap: 14px;
  }

  .contact-form label {
    line-height: 1.45;
  }

  .field label {
    font-size: 14px;
  }

  .field textarea {
    min-height: 150px;
  }

  .form-submit {
    justify-self: stretch;
  }

  .help-card {
    padding: 18px;
    border-radius: 22px;
  }

  .site-footer {
    padding: 26px 10px 34px;
  }

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

  .footer-brand,
  .footer-copy,
  .footer-warning {
    padding: 16px;
    border-radius: 18px;
  }

  .footer-seal {
    width: min(210px, 100%);
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 18px 0 14px;
  }

  .footer-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px;
    text-align: center;
    line-height: 1.25;
  }

  .footer-small,
  .footer-bottom,
  .age-line {
    text-align: left;
    line-height: 1.58;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: none;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 15px;
    border-radius: 20px;
  }

  .cookie-banner p {
    font-size: 12.5px;
    line-height: 1.5;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
  }

  .cookie-btn {
    min-height: 44px;
    padding: 10px;
  }

  .alert-modal {
    align-items: flex-end;
    padding: 12px;
  }

  .alert-card {
    border-radius: 24px;
    padding: 28px 20px 22px;
  }

  .age-gate {
    padding: 12px;
  }

  .age-gate__panel {
    max-height: calc(100dvh - 24px);
    overflow-y: auto;
    padding: 28px 20px;
    border-radius: 24px;
  }

  .age-gate__badge {
    width: 66px;
    height: 66px;
    font-size: 24px;
  }
}

@media (max-width: 420px) {
  .header-inner {
    width: calc(100% - 20px);
  }

  .page-wrap {
    padding-left: 8px;
    padding-right: 8px;
  }

  .panel-inner,
  .hero .panel-inner {
    padding: 20px 14px 22px;
  }

  .casino-row {
    grid-template-columns: 40px minmax(0, 1fr);
    padding: 14px;
  }

  .rank-no {
    width: 32px;
    height: 32px;
  }

  .score {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }

  .footer-links,
  .cookie-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 340px) {
  .logo img {
    width: 126px;
  }

  .nav-toggle {
    flex-basis: 42px;
    min-width: 42px;
    width: 42px;
  }

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

  .rank-no,
  .score-wrap,
  .cta-wrap,
  .casino-info {
    grid-column: 1 / -1;
  }

  .score-wrap {
    justify-items: start;
  }
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(57, 255, 20, 0.35);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  position: relative;
  z-index: 1001;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 0 18px rgba(57, 255, 20, 0.12);
}

.burger span {
  display: block;
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: #39ff14;
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.65);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.burger.is-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.burger.is-active span:nth-child(2) {
  opacity: 0;
}

.burger.is-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
  .burger {
    display: inline-flex;
  }
}