:root {
  --bg-primary: #050505;
  --bg-alt: #0b0b0b;
  --bg-card: #111111;
  --bg-card-hover: #181818;
  --bg-header: #020202;
  --accent: #ffe500;
  --accent-dark: #f2c400;
  --accent-glow: rgba(255, 229, 0, 0.16);
  --text-main: #ffffff;
  --text-muted: #969696;
  --text-secondary: #d7d7d7;
  --text-on-accent: #050505;
  --border: #2b2b2b;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.68);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 18px;
  --transition: 0.24s ease;
  --max-width: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
}

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

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-dark); }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--bg-header);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  width: 164px;
  height: auto;
  max-height: 46px;
  object-fit: contain;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 800;
  color: var(--text-on-accent);
  flex-shrink: 0;
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0;
}

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

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-list a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background-color var(--transition);
  text-decoration: none;
}

.nav-list a:hover {
  color: var(--text-main);
  background-color: rgba(255,255,255,0.06);
}

.nav-cta {
  background-color: var(--accent) !important;
  color: var(--text-on-accent) !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
  border-radius: 20px !important;
}

.nav-cta:hover { background-color: var(--accent-dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.mobile-nav {
  display: none;
  background-color: var(--bg-header);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
}

.mobile-nav.open { display: block; }

.mobile-nav a {
  display: block;
  color: var(--text-secondary);
  padding: 12px 0;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
}

.mobile-nav a:last-child { border-bottom: none; }

/* ── HERO ── */
.hero {
  background-color: #020202;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
  min-height: 620px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: -38px;
  background: url('/assets/img/hero-slot-bg.png') center right / cover no-repeat;
  filter: blur(5px) saturate(1.18) contrast(1.08);
  opacity: 1;
  transform: scale(1.03);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2,2,2,0.94) 0%, rgba(2,2,2,0.82) 42%, rgba(2,2,2,0.18) 100%),
    radial-gradient(circle at 72% 24%, rgba(255,229,0,0.12) 0%, transparent 38%),
    linear-gradient(180deg, rgba(2,2,2,0.12) 0%, #050505 100%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 680px);
  justify-content: center;
  min-height: 460px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0,0,0,0.72);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255,229,0,0.1);
  border: 1px solid rgba(255,229,0,0.28);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  color: var(--text-main);
  margin-bottom: 18px;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-lead {
  font-size: 17px;
  color: var(--text-secondary);
  margin: 0 auto 32px;
  max-width: 560px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--text-on-accent);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 18px rgba(255,229,0,0.22);
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,229,0,0.32);
  color: var(--text-on-accent);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 24px;
  border-radius: 24px;
  border: 1px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition);
  white-space: nowrap;
}

.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stat-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  display: block;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


/* ── SECTION COMMONS ── */
section { padding: 72px 0; }
.section-alt { background-color: var(--bg-alt); }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: 0;
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── ADVANTAGES ── */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.adv-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}

.adv-card:hover {
  border-color: rgba(255,229,0,0.3);
  transform: translateY(-3px);
}

.adv-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-glow);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
}

.adv-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 8px;
}

.adv-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── SLOTS ── */
.slots-filter {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color var(--transition), border-color var(--transition), color var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--text-on-accent);
  font-weight: 700;
}

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

.slot-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}

.slot-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,229,0,0.38);
}

.slot-card.hidden { display: none; }

.slot-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: #0b0b0b;
}

.slot-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.slot-card:hover .slot-thumb img { transform: scale(1.05); }

.slot-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.slot-card:hover .slot-overlay { background: rgba(0,0,0,0.32); }

.slot-play-btn {
  opacity: 0;
  background: var(--accent);
  color: var(--text-on-accent);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 16px;
  transition: opacity var(--transition);
  text-decoration: none;
  display: inline-block;
}

.slot-card:hover .slot-play-btn { opacity: 1; }

.slot-meta {
  padding: 12px 14px;
}

.slot-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 3px;
}

.slot-cat {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── HOW TO START ── */
.steps-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.step-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
}

.step-num {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--text-on-accent);
  margin: 0 auto 14px;
}

.step-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 6px;
  line-height: 1.3;
}

.step-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── BONUSES ── */
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.bonus-card {
  background: linear-gradient(148deg, var(--bg-card), #0b0b0b);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color var(--transition), transform var(--transition);
}

.bonus-card:hover {
  border-color: rgba(255,229,0,0.32);
  transform: translateY(-3px);
}

.bonus-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,229,0,0.08);
  border: 1px solid rgba(255,229,0,0.18);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 11px;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  width: fit-content;
}

.bonus-name {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
}

.bonus-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  flex-grow: 1;
}

.bonus-check-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

.bonus-check-cta:hover { color: var(--accent-dark); }

.bonus-terms {
  font-size: 11px;
  color: var(--text-muted);
  opacity: 0.65;
  line-height: 1.45;
}

/* ── ARTICLE ── */
.article-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.article-wrap h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-main);
  margin: 40px 0 14px;
  line-height: 1.3;
  letter-spacing: 0;
}

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

.article-wrap h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-main);
  margin: 28px 0 10px;
}

.article-wrap p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 18px;
  line-height: 1.8;
}

.article-wrap ul,
.article-wrap ol {
  margin: 0 0 18px 22px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.8;
}

.article-wrap li { margin-bottom: 6px; }

.article-wrap strong { color: var(--text-main); font-weight: 600; }

.info-box {
  background-color: var(--bg-card);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 24px 0;
}

.info-box p {
  margin: 0;
  font-size: 15px;
  color: var(--text-secondary);
}

/* ── FAQ ── */
.faq-wrap {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
}

.faq-q {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.4;
}

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: rgba(255,229,0,0.08);
  border: 1px solid rgba(255,229,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 16px;
  font-weight: 700;
  transition: transform var(--transition), background-color var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background-color: var(--accent);
  color: var(--text-on-accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-body {
  padding: 0 22px 20px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ── FOOTER ── */
.site-footer {
  background-color: var(--bg-header);
  border-top: 1px solid var(--border);
  padding: 52px 24px 32px;
}

.footer-inner { max-width: var(--max-width); margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand .logo { margin-bottom: 14px; }

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col ul a:hover { color: var(--accent); }

.responsible-bar {
  background: rgba(255,229,0,0.05);
  border: 1px solid rgba(255,229,0,0.13);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-legal {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.55;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero h1 { font-size: 40px; }

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

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

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

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

  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-list { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 56px 20px; }
  .hero h1 { font-size: 32px; }
  .hero-lead { font-size: 15px; }

  section { padding: 52px 0; }
  .section-title { font-size: 26px; }

  .slots-grid { grid-template-columns: repeat(2, 1fr); }
  .bonuses-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; letter-spacing: 0; }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-outline {
    text-align: center;
    justify-content: center;
  }

  .hero-stats { gap: 16px; }

  .advantages-grid { grid-template-columns: 1fr; }

  .slots-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

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

  .section-title { font-size: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
