:root {
  --bg: #0B1020;
  --block: #151D35;
  --primary: #00E5A0;
  --secondary: #00A3FF;
  --accent: #FFD43B;
  --button: #00D084;
  --text: #F8FAFC;
  --muted: #B7C3D9;
  --line: rgba(255, 255, 255, .12);
  --shadow: 0 18px 50px rgba(0, 0, 0, .28);
  --radius: 22px;
  --max: 1180px
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  background: radial-gradient(circle at top left, rgba(0, 229, 160, .14), transparent 34%), radial-gradient(circle at top right, rgba(0, 163, 255, .13), transparent 35%), var(--bg);
  color: var(--text);
  line-height: 1.65
}

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

img {
  max-width: 100%;
  height: auto
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: auto
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 16, 32, .86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line)
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -.03em
}

.logo img {
  width: 150px;
  height: auto
}

.logo span {
  display: block;
  line-height: 1.05
}

.logo small {
  font-size: 11px;
  color: var(--primary);
  letter-spacing: .08em;
  text-transform: uppercase
}

.menu {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 700;
  font-size: 14px;
  color: #dfe9ff
}

.menu a:hover {
  color: var(--primary)
}

.burger {
  display: none;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 9px 11px;
  font-size: 22px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--button), var(--secondary));
  color: #06111f;
  font-weight: 900;
  border: 0;
  box-shadow: 0 10px 26px rgba(0, 208, 132, .22);
  cursor: pointer
}

.btn.alt {
  background: rgba(255, 255, 255, .08);
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none
}

.btn.small {
  padding: 10px 14px;
  font-size: 14px
}

.hero {
  padding: 68px 0 42px
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 28px;
  align-items: center
}

.pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border: 1px solid rgba(0, 229, 160, .35);
  background: rgba(0, 229, 160, .08);
  color: var(--primary);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px
}

h1,
h2,
h3 {
  line-height: 1.13;
  margin: 0 0 14px;
  letter-spacing: -.035em
}

h1 {
  font-size: clamp(36px, 6vw, 66px)
}

h2 {
  font-size: clamp(28px, 4vw, 42px)
}

h3 {
  font-size: 24px
}

p {
  margin: 0 0 16px;
  color: var(--muted)
}

.lead {
  font-size: 19px;
  color: #eaf2ff
}

.hero-card,
.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .025));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow)
}

.hero-card {
  padding: 26px;
  position: relative;
  overflow: hidden
}

.hero-card:before {
  content: "";
  position: absolute;
  inset: auto -80px -90px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(0, 229, 160, .16)
}

.mine-board {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin: 20px 0
}

.tile {
  aspect-ratio: 1;
  border-radius: 16px;
  background: #202b4c;
  border: 1px solid rgba(255, 255, 255, .09);
  display: grid;
  place-items: center;
  font-size: 26px
}

.tile.win {
  background: rgba(0, 229, 160, .17);
  color: var(--primary)
}

.tile.bomb {
  background: rgba(255, 212, 59, .16);
  color: var(--accent)
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px
}

.stat {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid var(--line)
}

.stat strong {
  display: block;
  color: var(--primary);
  font-size: 22px
}

.section {
  padding: 54px 0
}

.grid {
  display: grid;
  gap: 18px
}

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

.grid-3 {
  grid-template-columns: repeat(3, 1fr)
}

.card {
  padding: 24px
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(0, 229, 160, .2), rgba(0, 163, 255, .18));
  font-size: 24px;
  margin-bottom: 12px
}

.table-wrap {
  overflow: auto;
  border-radius: 18px;
  border: 1px solid var(--line)
}

table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(21, 29, 53, .72);
  min-width: 760px
}

th,
td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--line)
}

th {
  color: var(--primary);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .07em
}

td {
  color: #eaf2ff
}

.rank {
  font-weight: 900;
  color: var(--accent)
}

.tag {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 229, 160, .12);
  color: var(--primary);
  font-weight: 800;
  font-size: 12px
}

.steps {
  counter-reset: step
}

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  margin: 16px 0
}

.step:before {
  counter-increment: step;
  content: counter(step);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #06111f;
  font-weight: 900
}

.notice {
  border-left: 4px solid var(--accent);
  background: rgba(255, 212, 59, .08);
  padding: 18px;
  border-radius: 16px;
  color: #fff
}

.faq details {
  background: rgba(255, 255, 255, .045);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  margin: 12px 0
}

.faq summary {
  font-weight: 900;
  cursor: pointer
}

.footer {
  padding: 42px 0 28px;
  border-top: 1px solid var(--line);
  background: #080d1a
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 22px
}

.footer a {
  display: block;
  color: var(--muted);
  margin: 7px 0
}

.legal {
  font-size: 13px;
  color: #9fb0ca;
  text-align: center;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  background: #101935;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: none
}

.cookie-banner.show {
  display: block
}

.cookie-row {
  display: flex;
  gap: 14px;
  justify-content: space-between;
  align-items: center
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .62);
  z-index: 90;
  display: none;
  place-items: center;
  padding: 18px
}

.modal.show {
  display: grid
}

.modal-box {
  width: min(620px, 100%);
  background: #111a35;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow)
}

.switch {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line)
}

input[type=checkbox] {
  width: 22px;
  height: 22px;
  accent-color: #00D084
}

.page-head {
  padding: 54px 0 26px
}

.breadcrumb {
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 12px
}

.screenshot {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(140deg, #101832, #172446);
  padding: 18px
}

.fake-shot {
  height: 260px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 229, 160, .18), rgba(0, 163, 255, .18)), repeating-linear-gradient(0deg, transparent 0 38px, rgba(255, 255, 255, .04) 39px 40px);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  text-align: center
}

.cta-band {
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(0, 229, 160, .18), rgba(0, 163, 255, .18));
  border: 1px solid rgba(0, 229, 160, .28)
}

ul.clean {
  padding-left: 18px;
  color: var(--muted)
}

li {
  margin: 8px 0
}

@media(max-width:880px) {
  .burger {
    display: block
  }

  .menu {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: #0B1020;
    border-bottom: 1px solid var(--line);
    padding: 18px 24px
  }

  .menu.open {
    display: flex
  }

  .hero-grid,
  .grid-2,
  .grid-3,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .stats {
    grid-template-columns: 1fr
  }

  .cookie-row {
    display: block
  }

  .cookie-row .actions {
    margin-top: 14px
  }

  .nav .btn {
    display: none
  }

  h1 {
    font-size: 38px
  }

  .section {
    padding: 38px 0
  }
}

/* Additional Styles */
form {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

input,
textarea,
select {
  width: 100%;
  padding: 14px;
  background: rgba(21, 29, 53, 0.72);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(0, 229, 160, 0.2);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.hero-card img {
  border-radius: 0;
}

.content-img {
  margin: 24px 0;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.faq details {
  background: rgba(21, 29, 53, 0.6);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  margin: 16px 0;
  transition: all 0.3s ease;
}

.faq details[open] {
  background: rgba(21, 29, 53, 0.9);
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.faq summary {
  font-weight: 900;
  font-size: 18px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: '+';
  color: var(--primary);
  font-size: 24px;
  font-weight: 400;
  transition: transform 0.3s;
}

.faq details[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}

.faq p {
  margin-top: 16px;
  margin-bottom: 0;
  color: #eaf2ff;
  line-height: 1.6;
}

@media(max-width: 880px) {
  .section {
    padding: 40px 0;
  }

  .card,
  .hero-card {
    padding: 20px;
  }

  .hero {
    padding: 40px 0 20px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }
}

/* Casino List */
.casino-list {
  display: grid;
  gap: 20px;
  margin: 24px 0;
}

.casino-row {
  display: grid;
  grid-template-columns: auto 1.5fr 1.5fr 1.5fr auto;
  gap: 24px;
  align-items: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .025));
  border: 1px solid rgba(0, 229, 160, 0.4);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 40px rgba(0, 229, 160, 0.15);
  position: relative;
  overflow: hidden;
}

.casino-row.top-pick::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  box-shadow: 0 0 20px var(--primary);
}

.casino-rank {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.casino-rank span {
  font-size: 32px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  text-shadow: 0 0 12px rgba(0, 229, 160, 0.4);
}

.casino-rank small {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.casino-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.brand-logo {
  max-width: 140px;
  border-radius: 8px;
}

.stars {
  font-size: 13px;
  color: #FFD43B;
  font-weight: 700;
  letter-spacing: 1px;
}

.casino-bonus {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(0, 0, 0, 0.2);
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.bonus-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.bonus-amount {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
}

.casino-bonus small {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
}

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

ul.checks li {
  margin: 6px 0;
  font-size: 14px;
  font-weight: 500;
  color: #eaf2ff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.casino-action {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  min-width: 160px;
}

.promo-code {
  font-size: 12px;
  border: 1px dashed var(--secondary);
  padding: 6px 12px;
  border-radius: 8px;
  color: #fff;
  background: rgba(0, 163, 255, 0.1);
  width: 100%;
  text-align: center;
}

.promo-code strong {
  color: var(--secondary);
  font-size: 14px;
}

.play-btn {
  width: 100%;
  box-shadow: 0 8px 24px rgba(0, 208, 132, 0.3);
  font-size: 16px;
  padding: 14px;
}

.review-link {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.2);
  text-underline-offset: 4px;
}

.review-link:hover {
  color: #fff;
  text-decoration-color: var(--primary);
}

@media(max-width: 1024px) {
  .casino-row {
    grid-template-columns: auto 1fr 1fr;
  }

  .casino-action {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
  }

  .play-btn {
    width: auto;
    flex: 1;
  }

  .promo-code {
    width: auto;
    flex: 1;
  }
}

@media(max-width: 768px) {
  .casino-row {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 20px;
    gap: 20px;
  }

  .casino-row.top-pick::before {
    width: 100%;
    height: 4px;
  }

  .casino-rank {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
  }

  .casino-brand {
    align-items: center;
  }

  .casino-action {
    flex-direction: column;
    width: 100%;
  }

  .play-btn,
  .promo-code {
    width: 100%;
  }
}