:root {
  --lime: #C7F51F;
  --bg: #14161D;
  --card: #1C1520;
  --badge: #1C1F2A;
  --border: #30303D;
  --text: #F0F0F2;
  --muted: #A8A7B3;
  --btn-text: #0B0D10;
  --radius: 14px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --max: 1120px;
  --font-display: "Sora", sans-serif;
  --font-body: "Outfit", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(199, 245, 31, 0.12), transparent 55%),
    radial-gradient(900px 500px at 10% 20%, rgba(120, 40, 160, 0.18), transparent 50%),
    linear-gradient(180deg, #101218 0%, var(--bg) 40%, #12141b 100%);
  line-height: 1.6;
  min-height: 100vh;
}

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

a {
  color: var(--lime);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--lime);
  color: var(--btn-text);
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(20, 22, 29, 0.82);
  border-bottom: 1px solid rgba(48, 48, 61, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.logo img {
  width: min(168px, 42vw);
  height: auto;
}

.nav {
  display: none;
  gap: 1.25rem;
}

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
}

.nav a:hover {
  color: var(--lime);
}

.header-actions {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: none;
  border-radius: 999px;
  padding: 0.8rem 1.35rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--lime);
  color: var(--btn-text);
  box-shadow: 0 8px 28px rgba(199, 245, 31, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 12px 32px rgba(199, 245, 31, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.btn-lg {
  padding: 1rem 1.7rem;
  font-size: 1.05rem;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 0 3.5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(20, 22, 29, 0.96) 28%, rgba(20, 22, 29, 0.72) 55%, rgba(20, 22, 29, 0.35) 100%),
    url("../images/hero.webp") center/cover no-repeat;
  z-index: -1;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--badge);
  border: 1px solid var(--border);
  color: var(--muted);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.82rem;
  margin-bottom: 1rem;
}

.hero-kicker span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.1;
  margin: 0 0 0.8rem;
  letter-spacing: -0.03em;
}

.hero h1 .accent {
  color: var(--lime);
}

.hero-lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 42ch;
  margin: 0 0 1.5rem;
}

.bonus-pill {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.bonus-pill strong {
  background: linear-gradient(135deg, rgba(199, 245, 31, 0.18), rgba(199, 245, 31, 0.05));
  border: 1px solid rgba(199, 245, 31, 0.35);
  color: var(--lime);
  padding: 0.7rem 1rem;
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.trust-row span {
  background: var(--badge);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
}

.hero-visual {
  position: relative;
  justify-self: center;
  max-width: 420px;
  animation: floatY 5.5s ease-in-out infinite;
}

.hero-visual img {
  width: 100%;
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.45));
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.update-banner {
  background: linear-gradient(90deg, rgba(199, 245, 31, 0.12), rgba(28, 21, 32, 0.8));
  border-block: 1px solid var(--border);
  padding: 0.9rem 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.update-banner strong {
  color: var(--lime);
}

/* Sections */
section {
  padding: 3.2rem 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.section-lead {
  color: var(--muted);
  max-width: 70ch;
  margin: 0 0 1.75rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.toc ol {
  margin: 0;
  padding-left: 1.2rem;
  columns: 1;
  gap: 2rem;
}

.toc a {
  color: var(--text);
  text-decoration: none;
  display: inline-block;
  padding: 0.25rem 0;
}

.toc a:hover {
  color: var(--lime);
}

.notice {
  border-left: 3px solid var(--lime);
  background: rgba(199, 245, 31, 0.06);
  padding: 1rem 1.15rem;
  border-radius: 0 12px 12px 0;
  color: var(--muted);
  margin: 1.5rem 0;
}

.notice strong {
  color: var(--text);
}

/* Tables */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

th,
td {
  padding: 0.95rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

th {
  background: var(--badge);
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
}

tr:last-child td {
  border-bottom: none;
}

td:first-child {
  color: var(--muted);
  width: 34%;
}

.bonus-table {
  min-width: 760px;
}

.bonus-table td:first-child {
  width: 16%;
  color: var(--text);
  background: rgba(28, 31, 42, 0.65);
  vertical-align: middle;
}

.bonus-table td:nth-child(2),
.bonus-table td:nth-child(3) {
  white-space: nowrap;
}

.bonus-table tbody tr:nth-child(3n) td {
  border-bottom-color: rgba(199, 245, 31, 0.22);
}

/* Games */
.games-teaser {
  padding: 1.25rem 0 2.5rem;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.game-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--badge);
  aspect-ratio: 1;
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(199, 245, 31, 0.65);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  text-decoration: none;
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.35s ease;
}

.game-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.72);
}

.game-card .play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(11, 13, 16, 0.35);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.game-card:hover .play-overlay,
.game-card:focus-visible .play-overlay {
  opacity: 1;
}

.game-card .mini-btn {
  background: var(--lime);
  color: var(--btn-text);
  border-radius: 999px;
  padding: 0.65rem 1.35rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.02em;
  transform: translateY(10px) scale(0.92);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 24px rgba(199, 245, 31, 0.35);
}

.game-card:hover .mini-btn,
.game-card:focus-visible .mini-btn {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.slot-list {
  margin: 1.5rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  columns: 1;
}

.slot-list li {
  margin-bottom: 0.35rem;
}

/* Registration form */
.reg-section {
  position: relative;
}

.reg-section::before {
  content: "";
  position: absolute;
  inset: 10% 0;
  background: radial-gradient(circle at 50% 50%, rgba(199, 245, 31, 0.08), transparent 60%);
  pointer-events: none;
}

.reg-layout {
  display: grid;
  gap: 1.5rem;
  position: relative;
}

.reg-form {
  display: grid;
  gap: 0.9rem;
}

.form-row {
  display: grid;
  gap: 0.9rem;
}

label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select {
  width: 100%;
  background: var(--badge);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(199, 245, 31, 0.15);
}

.checkbox {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.86rem;
  color: var(--muted);
}

.checkbox input {
  width: auto;
  margin-top: 0.2rem;
}

.form-benefits {
  display: grid;
  gap: 0.8rem;
}

.benefit {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: var(--badge);
  border: 1px solid var(--border);
}

.benefit i {
  width: 10px;
  height: 10px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
}

/* Payments */
.payments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.pay-item {
  background: var(--badge);
  border: 1px solid var(--border);
  border-radius: 12px;
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 0.75rem;
}

.pay-item img {
  max-height: 36px;
  width: auto;
}

/* Providers */
.providers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.provider {
  background: var(--badge);
  border: 1px solid var(--border);
  color: var(--muted);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-size: 0.84rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.provider:hover {
  color: var(--lime);
  border-color: rgba(199, 245, 31, 0.4);
}

/* Steps */
.steps {
  display: grid;
  gap: 0.9rem;
  counter-reset: step;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--btn-text);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-family: var(--font-display);
}

.step h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  font-family: var(--font-display);
}

.step p {
  margin: 0;
  color: var(--muted);
}

/* FAQ */
.faq details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  margin-bottom: 0.7rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 650;
  font-family: var(--font-display);
  list-style: none;
}

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

.faq summary::after {
  content: "+";
  float: right;
  color: var(--lime);
  font-size: 1.2rem;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  color: var(--muted);
  margin: 0.8rem 0 0;
}

/* Verdict */
.verdict {
  background:
    linear-gradient(135deg, rgba(199, 245, 31, 0.12), transparent 45%),
    var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.6rem;
}

.verdict-score {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--badge);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  margin-bottom: 1rem;
  color: var(--lime);
  font-weight: 700;
}

/* Footer */
.site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--border);
  background: #101218;
  padding: 2.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.92rem;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.badges a,
.badges span {
  display: inline-flex;
  opacity: 0.92;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.badges a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.badges img {
  height: 36px;
  width: auto;
}

.footer-bottom {
  margin-top: 1.75rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.84rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
}

.age-note {
  color: var(--lime);
  font-weight: 700;
}

/* Mid CTA band */
.cta-band {
  text-align: center;
  padding: 2.2rem 1.2rem;
  border-radius: 18px;
  border: 1px solid rgba(199, 245, 31, 0.28);
  background:
    linear-gradient(180deg, rgba(199, 245, 31, 0.1), transparent),
    var(--card);
}

.cta-band h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
}

.cta-band p {
  margin: 0 0 1.2rem;
  color: var(--muted);
}

/* Responsive */
@media (min-width: 720px) {
  .nav { display: flex; }
  .games-grid { grid-template-columns: repeat(4, 1fr); }
  .payments-grid { grid-template-columns: repeat(6, 1fr); }
  .toc ol { columns: 2; }
  .slot-list { columns: 2; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .reg-layout { grid-template-columns: 1.15fr 0.85fr; align-items: start; }
  .footer-grid { grid-template-columns: 1.1fr 1fr; }
}

@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; }
  .games-grid { grid-template-columns: repeat(5, 1fr); }
  .steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 719px) {
  .btn { padding: 0.7rem 1rem; font-size: 0.88rem; }
  .payments-grid { grid-template-columns: repeat(3, 1fr); }
}
