@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg: #1c1c1f;
  --surface: #252830;
  --surface-soft: #22242b;
  --surface-hover: #3d4048;
  --text: #edf0fa;
  --muted: #95979e;
  --line: #212328;
  --primary: #1a6e96;
  --primary-dark: #1b4f69;
  --primary-ink: #edf0fa;
  --primary-glow: rgba(26, 110, 150, 0.22);
  --primary-glow-sm: rgba(26, 110, 150, 0.12);
  --secondary: #1a6e96;
  --button-bg: #1a6e96;
  --button-text: #edf0fa;
  --banner-tint: #1c1c1f;
  --font-family: 'Montserrat', '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;
  /* Full-bleed sections (e.g. bonuses moved into the article) extend to 100vw
     which includes the vertical scrollbar — without this they'd create a
     phantom horizontal scrollbar. `clip` is preferred over `hidden` because
     it doesn't establish a new scroll container. */
  overflow-x: clip;
}
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: #4ff0a8; }
img { max-width: 100%; height: auto; }

.container-65ab8f {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

/* ─── Header ─────────────────────────────────────────── */
.site-header-65ab8f {
  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-65ab8f {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 16px; padding: 12px 0;
}
.logo-65ab8f { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.logo-img-65ab8f { height: 36px; width: auto; }
.logo-text-65ab8f {
  font-weight: 900; font-size: 1.15rem;
  letter-spacing: 0.06em; color: var(--primary);
  text-transform: uppercase;
}
.main-nav-65ab8f {
  display: flex; gap: 0; color: var(--muted);
  flex: 1 1 auto;
  justify-content: center;
  flex-wrap: nowrap;
  min-width: 0;
}
.main-nav-65ab8f 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-65ab8f a:hover { color: var(--text); background: var(--surface-soft); }
.header-actions-65ab8f { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.burger-65ab8f {
  display: none; background: none; border: 0; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 6px;
}
.burger-65ab8f span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.burger-65ab8f.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-65ab8f.open span:nth-child(2) { opacity: 0; }
.burger-65ab8f.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Buttons ─────────────────────────────────────────── */
.btn-65ab8f {
  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-65ab8f:hover { transform: translateY(-1px); }
.btn-primary-65ab8f {
  background: var(--button-bg); color: var(--button-text);
  box-shadow: 0 4px 16px var(--primary-glow);
}
.btn-primary-65ab8f:hover { box-shadow: 0 6px 24px rgba(61, 225, 155, 0.35); }
.btn-ghost-65ab8f {
  border-color: var(--line); background: transparent; color: var(--text);
}
.btn-ghost-65ab8f:hover { border-color: var(--muted); background: var(--surface-soft); }
.btn-lg-65ab8f { padding: 14px 32px; font-size: 1rem; border-radius: var(--radius); }

/* ─── Hero ────────────────────────────────────────────── */
.hero-65ab8f {
  position: relative; overflow: hidden;
  min-height: 520px;
  display: flex; align-items: center;
  padding: 80px 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(61, 225, 155, 0.10) 0%, transparent 60%),
    linear-gradient(135deg, var(--surface) 0%, var(--bg) 60%);
}
.hero-bg-65ab8f {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg-65ab8f picture {
  position: absolute; inset: 0;
  display: block; width: 100%; height: 100%;
}
.hero-bg-img-65ab8f {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
}
.hero-bg-65ab8f picture > source { display: none; }
/* Default: light bottom-fade only (the banner image speaks for itself). */
.hero-bg-65ab8f::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(8, 12, 24, 0.12) 0%,
    rgba(8, 12, 24, 0.0) 25%,
    rgba(8, 12, 24, 0.0) 65%,
    rgba(8, 12, 24, 0.50) 100%);
  /* Don't swallow clicks — without this the ::after overlay intercepts the
     click and event.target becomes .hero-bg-65ab8f, which the referral redirect
     can't match. Let clicks fall through to the actual <img> below. */
  pointer-events: none;
}
/* When the optional hero H1 is shown, add a darker left scrim so the headline
   stays legible against busy banner art. */
.hero-65ab8f.hero-has-title-65ab8f .hero-bg-65ab8f::after {
  background:
    linear-gradient(90deg,
      rgba(8, 12, 24, 0.85) 0%,
      rgba(8, 12, 24, 0.60) 28%,
      rgba(8, 12, 24, 0.20) 55%,
      rgba(8, 12, 24, 0.0) 80%),
    linear-gradient(180deg,
      rgba(8, 12, 24, 0.0) 65%,
      rgba(8, 12, 24, 0.50) 100%);
}
/* .hero-inner-65ab8f inherits .container-65ab8f's centered max-width 1120px — DON'T set
   width:100% here, that would overflow the container and push the CTA to the
   viewport edge. The CTA sits at the left of the centered column. */
.hero-inner-65ab8f {
  position: relative; z-index: 1;
  max-width: 600px;
}
/* Without the optional H1 the hero is just a single CTA button. Align it with
   the article column below (max-width 820px, centered) so the button's left
   edge sits on the same vertical as the H1 / paragraphs of the SEO content —
   keeps the layout visually anchored instead of pushing the CTA to dead
   center or the page edge. When .hero-has-title-65ab8f is set, the H1 + button
   stack stays in the narrower 600px column (Britsino-style). */
.hero-65ab8f:not(.hero-has-title-65ab8f) .hero-inner-65ab8f {
  max-width: 820px;
}
.hero-65ab8f h1 {
  margin: 0 0 24px;
  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;
}

/* ─── Content Area (SEO Article) ──────────────────────── */
.content-area-65ab8f {
  padding: 60px 0;
}
.seo-content-65ab8f {
  max-width: var(--content-width);
  margin: 0 auto;
}
.seo-content-65ab8f 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-65ab8f 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-65ab8f 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-65ab8f h3 {
  font-size: 1.1rem; font-weight: 700;
  margin: 28px 0 10px; color: var(--text);
}
.seo-content-65ab8f p {
  margin: 0 0 16px; color: var(--muted);
  font-size: 1rem; line-height: 1.75;
}
.seo-content-65ab8f a { color: var(--primary); }
.seo-content-65ab8f a:hover { text-decoration: underline; }

.seo-content-65ab8f ul, .seo-content-65ab8f ol {
  margin: 12px 0 20px; padding-left: 0;
  list-style: none;
}
.seo-content-65ab8f li {
  position: relative; padding-left: 20px;
  margin-bottom: 8px; color: var(--muted);
  font-size: 0.97rem;
}
.seo-content-65ab8f 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-65ab8f ol { counter-reset: ol-counter; }
.seo-content-65ab8f ol li { counter-increment: ol-counter; }
.seo-content-65ab8f 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-65ab8f 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-65ab8f th, .seo-content-65ab8f td {
  text-align: left; padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 0.93rem;
}
.seo-content-65ab8f th {
  color: var(--muted); font-weight: 600;
  background: var(--surface-soft);
}
.seo-content-65ab8f td { color: var(--text); font-weight: 500; }
.seo-content-65ab8f tr:last-child th,
.seo-content-65ab8f tr:last-child td { border-bottom: 0; }
.seo-content-65ab8f tr:hover td { background: var(--surface-soft); }

.seo-content-65ab8f 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-65ab8f blockquote p { margin: 0; }

/* ─── FAQ Accordion ───────────────────────────────────── */
.seo-content-65ab8f .faq-list {
  display: flex; flex-direction: column; gap: 12px;
  margin: 18px 0 28px;
}
.seo-content-65ab8f 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-65ab8f 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-65ab8f 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-65ab8f 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-65ab8f details[open]::before {
  background: var(--primary);
  box-shadow: 0 0 14px var(--primary-glow);
}
.seo-content-65ab8f 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-65ab8f details summary::-webkit-details-marker { display: none; }
.seo-content-65ab8f 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-65ab8f details[open] summary { color: var(--primary); }
.seo-content-65ab8f 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-65ab8f 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-65ab8f details > *:nth-last-child(1) { padding-bottom: 22px; }
.seo-content-65ab8f details > p + p { padding-top: 8px; }
.seo-content-65ab8f details > ul, .seo-content-65ab8f details > ol { padding-top: 0; }
@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Bonuses Section ─────────────────────────────────── */
.bonuses-section-65ab8f {
  padding: 60px 0;
  background: linear-gradient(180deg, var(--surface-soft) 0%, transparent 100%);
  border-top: 1px solid var(--line);
}
/* When the renderer moves .bonuses-section-65ab8f INSIDE the SEO article (placed just
   before the first H2), break out of the article's 820px column so it still
   spans the full container width. The classic full-bleed pattern: negative
   horizontal margins equal to half the gap between parent and viewport. No
   explicit width — block elements naturally fill parent + negative margins. */
.seo-content-65ab8f > .bonuses-section-65ab8f {
  margin: 40px calc(50% - 50vw);
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.seo-content-65ab8f > .bonuses-section-65ab8f .container-65ab8f {
  width: min(1120px, 92vw);
  margin: 0 auto;
}
.bonuses-section-65ab8f h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  margin: 0 0 28px; padding-bottom: 12px;
  position: relative;
}
.bonuses-section-65ab8f h2::after {
  content: ''; position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 3px;
  background: var(--primary); border-radius: 999px;
}
.bonuses-grid-65ab8f {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bonus-card-65ab8f {
  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-65ab8f: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-65ab8f h3 {
  margin: 0 0 8px; font-size: 1.05rem; color: var(--text);
}
.bonus-card-65ab8f p {
  margin: 0; color: var(--primary); font-weight: 600; font-size: 0.95rem;
}
.bonus-image-65ab8f {
  height: 160px; overflow: hidden; border-radius: var(--radius-sm);
  position: relative; margin-bottom: 14px;
}
.bonus-image-65ab8f img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; border-radius: var(--radius-sm); display: block;
}

/* ─── Payments Section ────────────────────────────────── */
.payments-section-65ab8f {
  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-65ab8f 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-65ab8f 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-65ab8f {
  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-65ab8f 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-65ab8f 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-65ab8f 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-65ab8f li:hover::before { opacity: 1; }
.payment-logo-65ab8f {
  position: relative;
  height: 24px; width: auto; max-width: 100%;
  object-fit: contain;
  opacity: 0.82;
  transition: opacity var(--transition), transform var(--transition);
}
.payments-list-65ab8f li:hover .payment-logo-65ab8f {
  opacity: 1;
  transform: scale(1.04);
}

/* ─── Footer ──────────────────────────────────────────── */
.site-footer-65ab8f {
  border-top: 1px solid var(--line);
  padding: 48px 0 0;
  background: #060a14;
}
.footer-inner-65ab8f {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
}
.footer-logo-img-65ab8f {
  height: 32px; width: auto; display: block; margin-bottom: 12px;
}
.footer-brand-65ab8f .logo-text-65ab8f {
  font-size: 1rem; display: block; margin-bottom: 10px;
}
.site-footer-65ab8f p {
  color: var(--muted); font-size: 0.83rem; line-height: 1.6;
}
.footer-nav-65ab8f h3 {
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 12px;
}
.footer-nav-65ab8f ul {
  list-style: none; margin: 0; padding: 0;
}
.footer-nav-65ab8f li + li { margin-top: 6px; }
.footer-nav-65ab8f a {
  color: var(--muted); font-size: 0.88rem;
}
.footer-nav-65ab8f a:hover { color: var(--text); }
.footer-bottom-65ab8f {
  border-top: 1px solid var(--line);
  padding: 16px 0; margin-top: 40px;
}
.footer-bottom-65ab8f p {
  text-align: center; color: var(--muted);
  font-size: 0.8rem; margin: 0;
}

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 1180px) {
  .main-nav-65ab8f a { font-size: 0.78rem; padding: 6px 8px; }
  .logo-img-65ab8f { height: 32px; }
}
@media (max-width: 1080px) {
  .main-nav-65ab8f { display: none; }
  .main-nav-65ab8f.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-65ab8f.open a { font-size: 0.95rem; padding: 10px 12px; }
  .burger-65ab8f { display: flex; }
  .bonuses-grid-65ab8f { grid-template-columns: 1fr; }
  .footer-inner-65ab8f { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 720px) {
  .hero-65ab8f { padding: 60px 0 40px; min-height: 380px; }
  .header-inner-65ab8f { flex-wrap: wrap; }
  .header-actions-65ab8f { margin-left: auto; }
  /* Desktop banners are typically 3:1 — on a phone in portrait the center crop
     can fully cut out the subject. Bias the crop toward the right side where
     the character usually sits, and ensure the image actually covers. */
  .hero-bg-img-65ab8f {
    object-position: 72% center;
  }
}
/* When a phone-specific banner is uploaded, the <picture> swap kicks in and we
   want to re-center because the asset is already framed for narrow viewports. */
@media (max-width: 720px) {
  .hero-bg-65ab8f.has-mobile-65ab8f .hero-bg-img-65ab8f { object-position: center center; }
}
