:root {
  --bg-base: #0a0d12;
  --bg-elevated: #12181f;
  --bg-card: #151c26;
  --border: rgba(212, 175, 55, 0.15);
  --gold: #d4af37;
  --gold-dim: #a68b2d;
  --accent: #2dd4a3;
  --accent-dim: #1faa84;
  --text: #e8eaed;
  --text-muted: #9aa3af;
  --danger: #c45c5c;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  --font: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.0625rem);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-base);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(212, 175, 55, 0.12), transparent 50%),
    radial-gradient(ellipse 80% 60% at 100% 50%, rgba(45, 212, 163, 0.06), transparent 45%),
    radial-gradient(ellipse 60% 50% at 0% 80%, rgba(139, 30, 63, 0.08), transparent 40%);
  min-height: 100vh;
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: #4ef0c4;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: var(--bg-base);
  z-index: 100;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 13, 18, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.logo {
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}

.logo span {
  color: var(--gold);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  font-size: 0.875rem;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
}

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

.hero {
  max-width: 72rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem;
  text-align: center;
}

.hero__badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(45, 212, 163, 0.12);
  border: 1px solid rgba(45, 212, 163, 0.35);
  color: var(--accent);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.75rem, 1.2rem + 3vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}

.hero__illustration-wrap {
  max-width: min(100%, 32rem);
  margin: 0 auto 1.5rem;
  padding: 0 0.5rem;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.5));
}

.hero__illustration {
  display: block;
  width: 100%;
  height: auto;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .hero-ill-lever {
    transform-origin: 374px 144px;
    animation: hero-lever-idle 3.5s ease-in-out infinite;
  }
}

@keyframes hero-lever-idle {
  0%,
  100% {
    transform: rotate(0deg);
  }
  12% {
    transform: rotate(-14deg);
  }
  24% {
    transform: rotate(4deg);
  }
  36% {
    transform: rotate(-6deg);
  }
  48%,
  90% {
    transform: rotate(0deg);
  }
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.hero__lead {
  margin: 0 auto;
  max-width: 42rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 2.5rem;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #0a0d12;
  background: linear-gradient(135deg, #f6df8a 0%, #d4af37 50%, #b8921e 100%);
  box-shadow:
    0 0 0 0 rgba(212, 175, 55, 0),
    0 6px 24px rgba(212, 175, 55, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  position: relative;
  overflow: hidden;
}

.btn-play::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.22), transparent 60%);
  pointer-events: none;
}

.btn-play:hover,
.btn-play:focus-visible {
  color: #0a0d12;
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 0 0 4px rgba(212, 175, 55, 0.28),
    0 12px 32px rgba(212, 175, 55, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-play:active {
  transform: translateY(0) scale(0.98);
}

.btn-play__icon {
  font-size: 0.85em;
  line-height: 1;
}

.btn-bonus {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 2rem;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--text);
  background: linear-gradient(135deg, rgba(45, 212, 163, 0.14), rgba(45, 212, 163, 0.06));
  border: 1.5px solid rgba(45, 212, 163, 0.55);
  box-shadow: 0 4px 20px rgba(45, 212, 163, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  position: relative;
  overflow: hidden;
}

.btn-bonus::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45, 212, 163, 0.12), transparent 55%);
  pointer-events: none;
}

.btn-bonus strong {
  color: var(--accent);
  font-weight: 700;
}

.btn-bonus:hover,
.btn-bonus:focus-visible {
  color: var(--text);
  transform: translateY(-3px) scale(1.03);
  border-color: rgba(45, 212, 163, 0.85);
  box-shadow: 0 0 0 4px rgba(45, 212, 163, 0.14), 0 10px 28px rgba(45, 212, 163, 0.32);
}

.btn-bonus:active {
  transform: translateY(0) scale(0.98);
}

.btn-bonus__gift {
  font-size: 1.1em;
  line-height: 1;
}

.btn-play--sm {
  padding: 0.45rem 1.2rem;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.35);
  white-space: nowrap;
}

.btn-play--sm:hover,
.btn-play--sm:focus-visible {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 0 0 3px rgba(212, 175, 55, 0.25),
    0 8px 20px rgba(212, 175, 55, 0.5);
}

main {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem 4rem;
}

.prose {
  max-width: 48rem;
}

.prose > * + * {
  margin-top: 1rem;
}

.prose h2 {
  margin: 2.5rem 0 0.75rem;
  font-size: clamp(1.35rem, 1.1rem + 1.2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
}

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

.prose h3 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-dim);
}

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

.prose strong {
  color: var(--text);
  font-weight: 600;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  box-shadow: var(--shadow);
}

.card--accent {
  border-color: rgba(45, 212, 163, 0.25);
  background: linear-gradient(135deg, rgba(21, 28, 38, 0.95), rgba(18, 32, 28, 0.4));
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.list-check li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.65rem;
  color: var(--text-muted);
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  box-shadow: 0 0 10px rgba(45, 212, 163, 0.5);
}

.table-wrap {
  overflow-x: auto;
  margin: 1.25rem 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  min-width: 320px;
}

thead th {
  text-align: left;
  padding: 0.85rem 1rem;
  background: var(--bg-elevated);
  color: var(--gold);
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}

tbody td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

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

tbody tr:hover td {
  background: rgba(212, 175, 55, 0.04);
}

.badge-reliability {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.badge-reliability--high {
  background: rgba(45, 212, 163, 0.15);
  color: var(--accent);
}

.badge-reliability--mid {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
}

.badge-reliability--low {
  background: rgba(196, 92, 92, 0.15);
  color: #e88;
}

.faq {
  margin-top: 2.5rem;
}

.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.65rem;
  background: var(--bg-elevated);
  overflow: hidden;
}

.faq__item summary {
  padding: 1rem 1.15rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.faq__item summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
}

.faq__item[open] summary::after {
  content: "−";
}

.faq__item .faq__answer {
  padding: 0 1.15rem 1rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  margin-top: 0;
  padding-top: 0.85rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 1.25rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.site-footer p {
  margin: 0;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
