@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg: #080c18;
  --surface: #111827;
  --surface-soft: #1a2236;
  --surface-hover: #1e2940;
  --text: #edf0fa;
  --muted: #8b97bb;
  --line: #252e4a;
  --primary: #3de19b;
  --primary-dark: #299069;
  --primary-ink: #070b16;
  --primary-glow: rgba(61, 225, 155, 0.22);
  --primary-glow-sm: rgba(61, 225, 155, 0.12);
  --secondary: #2a3d75;
  --button-bg: #3de19b;
  --button-text: #070b16;
  --banner-tint: #080c18;
  --font-family: 'Outfit', 'Segoe UI', Tahoma, sans-serif;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --transition: 0.22s ease;
  --content-width: 820px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0; padding: 0;
  font-family: var(--font-family);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 17px;
}
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: #4ff0a8; }
img { max-width: 100%; height: auto; }

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

/* ─── Header ─────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(8, 12, 24, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 16px; padding: 12px 0;
}
.logo { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.logo-img { height: 36px; width: auto; }
.logo-text {
  font-weight: 900; font-size: 1.15rem;
  letter-spacing: 0.06em; color: var(--primary);
  text-transform: uppercase;
}
.main-nav {
  display: flex; gap: 0; color: var(--muted);
  flex: 1 1 auto;
  justify-content: center;
  flex-wrap: nowrap;
  min-width: 0;
}
.main-nav a {
  padding: 6px 10px; border-radius: 8px;
  font-weight: 500; font-size: 0.84rem;
  color: var(--muted);
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}
.main-nav a:hover { color: var(--text); background: var(--surface-soft); }
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.burger {
  display: none; background: none; border: 0; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 6px;
}
.burger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid transparent; border-radius: var(--radius-sm);
  padding: 9px 18px; font-weight: 700; font-size: 0.88rem;
  font-family: inherit; cursor: pointer; white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition),
              background var(--transition), border-color var(--transition);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--button-bg); color: var(--button-text);
  box-shadow: 0 4px 16px var(--primary-glow);
}
.btn-primary:hover { box-shadow: 0 6px 24px rgba(61, 225, 155, 0.35); }
.btn-ghost {
  border-color: var(--line); background: transparent; color: var(--text);
}
.btn-ghost:hover { border-color: var(--muted); background: var(--surface-soft); }
.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: var(--radius); }

/* ─── Hero ────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  min-height: 620px; display: flex; align-items: center;
  padding: 110px 0 90px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(90deg,
      rgba(8, 12, 24, 0.95) 0%,
      rgba(8, 12, 24, 0.82) 30%,
      rgba(8, 12, 24, 0.50) 55%,
      rgba(8, 12, 24, 0.15) 80%,
      rgba(8, 12, 24, 0.0) 100%
    ),
    linear-gradient(180deg,
      rgba(8, 12, 24, 0.3) 0%,
      rgba(8, 12, 24, 0.0) 30%,
      rgba(8, 12, 24, 0.0) 70%,
      rgba(8, 12, 24, 0.6) 100%
    );
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 600px;
}
.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15; font-weight: 900;
  background: linear-gradient(135deg, #ffffff 0%, #c8d8ff 60%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  color: var(--muted); font-size: 1.1rem;
  margin: 0 0 28px; max-width: 540px;
}

/* ─── Content Area (SEO Article) ──────────────────────── */
.content-area {
  padding: 60px 0;
}
.seo-content {
  max-width: var(--content-width);
  margin: 0 auto;
}
.seo-content h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900; line-height: 1.2;
  margin: 0 0 20px; color: var(--text);
  -webkit-text-fill-color: unset;
  background: none;
}
.seo-content h2 {
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 800; line-height: 1.25;
  margin: 48px 0 16px; color: var(--text);
  padding-bottom: 12px; position: relative;
}
.seo-content h2::after {
  content: ''; position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 3px;
  background: var(--primary); border-radius: 999px;
  box-shadow: 0 0 8px var(--primary-glow);
}
.seo-content h3 {
  font-size: 1.1rem; font-weight: 700;
  margin: 28px 0 10px; color: var(--text);
}
.seo-content p {
  margin: 0 0 16px; color: var(--muted);
  font-size: 1rem; line-height: 1.75;
}
.seo-content a { color: var(--primary); }
.seo-content a:hover { text-decoration: underline; }

.seo-content ul, .seo-content ol {
  margin: 12px 0 20px; padding-left: 0;
  list-style: none;
}
.seo-content li {
  position: relative; padding-left: 20px;
  margin-bottom: 8px; color: var(--muted);
  font-size: 0.97rem;
}
.seo-content li::before {
  content: ''; position: absolute;
  left: 0; top: 10px;
  width: 6px; height: 6px;
  background: var(--primary); border-radius: 50%;
  box-shadow: 0 0 6px var(--primary-glow);
}
.seo-content ol { counter-reset: ol-counter; }
.seo-content ol li { counter-increment: ol-counter; }
.seo-content ol li::before {
  content: counter(ol-counter) '.';
  width: auto; height: auto; background: none;
  border-radius: 0; box-shadow: none;
  font-weight: 700; color: var(--primary);
  font-size: 0.9rem;
}

.seo-content table {
  width: 100%; border-collapse: collapse;
  margin: 16px 0 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.seo-content th, .seo-content td {
  text-align: left; padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 0.93rem;
}
.seo-content th {
  color: var(--muted); font-weight: 600;
  background: var(--surface-soft);
}
.seo-content td { color: var(--text); font-weight: 500; }
.seo-content tr:last-child th,
.seo-content tr:last-child td { border-bottom: 0; }
.seo-content tr:hover td { background: var(--surface-soft); }

.seo-content blockquote {
  margin: 20px 0; padding: 16px 20px;
  border-left: 3px solid var(--primary);
  background: var(--surface-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--muted);
}
.seo-content blockquote p { margin: 0; }

/* ─── FAQ Accordion ───────────────────────────────────── */
.seo-content .faq-list {
  display: flex; flex-direction: column; gap: 12px;
  margin: 18px 0 28px;
}
.seo-content details {
  position: relative;
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-soft) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition),
              transform var(--transition);
}
.seo-content details::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px; background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.seo-content details:hover {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}
.seo-content details[open] {
  border-color: var(--primary);
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-soft) 100%);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.32),
              0 0 0 1px var(--primary-glow-sm) inset;
}
.seo-content details[open]::before {
  background: var(--primary);
  box-shadow: 0 0 14px var(--primary-glow);
}
.seo-content details summary {
  padding: 20px 56px 20px 24px; cursor: pointer;
  font-weight: 700; font-size: 1.02rem;
  list-style: none; position: relative;
  user-select: none; color: var(--text);
  line-height: 1.45;
  transition: color var(--transition);
}
.seo-content details summary::-webkit-details-marker { display: none; }
.seo-content details summary::after {
  content: ''; position: absolute;
  right: 20px; top: 50%;
  width: 32px; height: 32px;
  margin-top: -16px;
  border-radius: 50%;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  background-image:
    linear-gradient(var(--muted), var(--muted)),
    linear-gradient(var(--muted), var(--muted));
  background-position: center;
  background-size: 12px 2px, 2px 12px;
  background-repeat: no-repeat;
  transition: transform var(--transition), background var(--transition),
              border-color var(--transition);
}
.seo-content details[open] summary { color: var(--primary); }
.seo-content details[open] summary::after {
  transform: rotate(45deg);
  background-color: var(--primary);
  border-color: var(--primary);
  background-image:
    linear-gradient(var(--primary-ink), var(--primary-ink)),
    linear-gradient(var(--primary-ink), var(--primary-ink));
}
.seo-content details > *:not(summary) {
  margin: 0;
  padding: 14px 24px 4px 24px;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.72;
  animation: faqFadeIn 0.28s ease-out;
}
.seo-content details > *:nth-last-child(1) { padding-bottom: 22px; }
.seo-content details > p + p { padding-top: 8px; }
.seo-content details > ul, .seo-content details > ol { padding-top: 0; }
@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Bonuses Section ─────────────────────────────────── */
.bonuses-section {
  padding: 60px 0;
  background: linear-gradient(180deg, var(--surface-soft) 0%, transparent 100%);
  border-top: 1px solid var(--line);
}
.bonuses-section h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  margin: 0 0 28px; padding-bottom: 12px;
  position: relative;
}
.bonuses-section h2::after {
  content: ''; position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 3px;
  background: var(--primary); border-radius: 999px;
}
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bonus-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px; text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition),
              border-color var(--transition);
}
.bonus-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
  border-color: rgba(100, 114, 161, 0.5);
}
.bonus-card h3 {
  margin: 0 0 8px; font-size: 1.05rem; color: var(--text);
}
.bonus-card p {
  margin: 0; color: var(--primary); font-weight: 600; font-size: 0.95rem;
}
.bonus-image {
  height: 160px; overflow: hidden; border-radius: var(--radius-sm);
  position: relative; margin-bottom: 14px;
}
.bonus-image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; border-radius: var(--radius-sm); display: block;
}

/* ─── Payments Section ────────────────────────────────── */
.payments-section {
  padding: 64px 0 72px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 50% 0%, var(--primary-glow-sm) 0%, transparent 55%),
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.18) 100%);
}
.payments-section h2 {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 32px;
  position: relative;
  padding-bottom: 16px;
}
.payments-section h2::after {
  content: ''; position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 40px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  border-radius: 999px;
}
.payments-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  list-style: none; margin: 0; padding: 0;
  max-width: 760px; margin-left: auto; margin-right: auto;
}
.payments-list li {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  height: 72px;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 0 18px;
  overflow: hidden;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform var(--transition), border-color var(--transition),
              box-shadow var(--transition), background var(--transition);
}
.payments-list li::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 120%, var(--primary-glow-sm) 0%, transparent 70%);
  opacity: 0; transition: opacity var(--transition);
  pointer-events: none;
}
.payments-list li:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 100%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35),
              0 0 0 1px var(--primary-glow-sm) inset;
}
.payments-list li:hover::before { opacity: 1; }
.payment-logo {
  position: relative;
  height: 24px; width: auto; max-width: 100%;
  object-fit: contain;
  opacity: 0.82;
  transition: opacity var(--transition), transform var(--transition);
}
.payments-list li:hover .payment-logo {
  opacity: 1;
  transform: scale(1.04);
}

/* ─── Footer ──────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 0;
  background: #060a14;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
}
.footer-logo-img {
  height: 32px; width: auto; display: block; margin-bottom: 12px;
}
.footer-brand .logo-text {
  font-size: 1rem; display: block; margin-bottom: 10px;
}
.site-footer p {
  color: var(--muted); font-size: 0.83rem; line-height: 1.6;
}
.footer-nav h3 {
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 12px;
}
.footer-nav ul {
  list-style: none; margin: 0; padding: 0;
}
.footer-nav li + li { margin-top: 6px; }
.footer-nav a {
  color: var(--muted); font-size: 0.88rem;
}
.footer-nav a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 16px 0; margin-top: 40px;
}
.footer-bottom p {
  text-align: center; color: var(--muted);
  font-size: 0.8rem; margin: 0;
}

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 1180px) {
  .main-nav a { font-size: 0.78rem; padding: 6px 8px; }
  .logo-img { height: 32px; }
}
@media (max-width: 1080px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 12px 16px; z-index: 50;
    gap: 4px;
  }
  .main-nav.open a { font-size: 0.95rem; padding: 10px 12px; }
  .burger { display: flex; }
  .bonuses-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 620px) {
  .hero { padding: 60px 0 50px; min-height: 360px; }
  .hero h1 { font-size: 1.8rem; }
  .header-inner { flex-wrap: wrap; }
  .header-actions { margin-left: auto; }
}
