/* Цветовая палитра — максимально близко к референсу (тёмная тема) */
:root {
  --bg: #0b0d13;           /* фон страницы */
  --surface: #121521;      /* поверхности/карточки */
  --surface-2: #0e1220;    /* вторичный фон, хедер/футер */
  --border: #262b3a;       /* границы/делители */
  --text: #e5e7eb;         /* основной текст */
  --muted: #b7bdc9;        /* вторичный текст */
  --primary: #10ff7f;      /* акцент (зелёный неон) */
  --secondary: #22d3ee;    /* вторичный акцент (циан) */
  --danger: #ff5d5d;       /* акцент ошибки */
  --gradient-start: #1a1636; /* градиент начала */
  --gradient-end: #0e1220;   /* градиент конца */
  --shadow: rgba(0,0,0,0.35);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  color: var(--text);
  background: linear-gradient(180deg, var(--gradient-start), var(--gradient-end));
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(14, 18, 32, 0.87);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}
.logo img { display: block; }

.nav { display: none; gap: 16px; }
.nav-link {
  color: var(--muted);
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 8px;
}
.nav-link:hover { color: var(--text); background: rgba(255,255,255,0.06); }

.header-cta { display: flex; gap: 10px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid transparent;
  text-decoration: none;
  background: linear-gradient(90deg, #FEA744, #FFD29E);
  color: #1B1208;
  font-weight: 600;
  transition: all 0.2s ease;
}
.btn-lg { height: 48px; padding: 0 20px; border-radius: 12px; }
.btn-primary { background: linear-gradient(90deg, #FEA744, #FFD29E); color: #1B1208; }
.btn-primary:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-secondary { background: linear-gradient(90deg, #FEA744, #FFD29E); color: #1B1208; }
.btn-secondary:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-outline {
  background: linear-gradient(90deg, #FEA744, #FFD29E);
  color: #1B1208;
  border-color: transparent;
}
.btn-outline:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-ghost { background: linear-gradient(90deg, #FEA744, #FFD29E); color: #1B1208; }
.btn-ghost:hover { filter: brightness(1.08); transform: translateY(-1px); }

/* Hero */
.hero {
  padding: 48px 0 24px;
  background: radial-gradient(1000px 300px at 20% 0%, rgba(16,255,127,0.15), transparent), radial-gradient(800px 250px at 90% 10%, rgba(34,211,238,0.12), transparent);
}
.hero-inner {
  display: grid;
  gap: 28px;
}
.hero-content h1 { margin: 0 0 12px; font-size: 36px; line-height: 1.1; }
.hero-content p { margin: 0 0 16px; color: var(--muted); font-size: 16px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-media img { width: 100%; height: auto; border-radius: 16px; box-shadow: 0 20px 60px var(--shadow); border: 1px solid var(--border); }

/* Sections */
.section-header { margin-bottom: 20px; }
.section-header h2 { margin: 0 0 8px; font-size: 28px; }
.section-header p { margin: 0; color: var(--muted); }

.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 10px 30px var(--shadow);
}
.card h3 { margin: 0 0 8px; font-size: 18px; }
.card p { margin: 0 0 12px; color: var(--muted); }

.catalog, .features, .wins, .payments, .mobile, .security, .support { padding: 28px 0; }

.game .thumb {
  height: 120px;
  margin-bottom: 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

.wins-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.win-card {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
}
.win-card .sum { color: var(--primary); font-weight: 700; }
.win-card .game { color: var(--muted); }

.center { text-align: center; margin-top: 16px; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); background: var(--surface-2); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; }
.footer-links { display: flex; gap: 14px; }
.footer-links a { color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--text); }

/* Promo */
.promo {
  padding: 14px 0;
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow: inset 0 0 24px var(--shadow);
}
.promo-inner { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.promo-title {
  margin: 0;
  color: var(--primary);
  font-weight: 700;
}
.promo-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.promo-code {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px dashed var(--secondary);
  color: var(--secondary);
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  font-weight: 700;
  letter-spacing: 0.6px;
}
.btn-copy {
  background: transparent;
  border-color: var(--secondary);
  color: var(--secondary);
}
.btn-copy:hover { background: rgba(255,255,255,0.06); }
.promo-note { margin: 0; color: var(--muted); }

/* Responsive */
@media (min-width: 900px) {
  .nav { display: flex; }
  .hero-inner { grid-template-columns: 1.1fr 1fr; align-items: center; }
}
@media (max-width: 899px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; gap: 10px; }
}
@media (max-width: 599px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .wins-strip { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 28px; }
}
.btn-copy {
  background: linear-gradient(90deg, #FEA744, #FFD29E);
  border-color: transparent;
  color: #1B1208;
}
.btn-copy:hover { filter: brightness(1.08); transform: translateY(-1px); }