/* SpinEmpire Greece 2 — "Aegean Copper" theme | prefix: sgm- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,500;0,9..144,600;0,9..144,700;0,9..144,900;1,9..144,600&family=Mulish:wght@400;600;700;800;900&display=swap');

/* ─── Variables ─── */
:root {
  --sgm-bg: #0A1622;
  --sgm-surface: #0F2032;
  --sgm-surface-2: #15293D;
  --sgm-surface-3: #1C3348;
  --sgm-gold: #DDA84A;
  --sgm-gold-h: #F0BE63;
  --sgm-gold-dim: rgba(221,168,74,0.12);
  --sgm-accent: #E2704A;
  --sgm-accent-dim: rgba(226,112,74,0.12);
  --sgm-jade: #35C08A;
  --sgm-jade-dim: rgba(53,192,138,0.12);
  --sgm-text: #F4EFE4;
  --sgm-text-muted: #8CA2B4;
  --sgm-border: rgba(255,255,255,0.07);
  --sgm-border-gold: rgba(221,168,74,0.28);
  --sgm-radius: 14px;
  --sgm-radius-lg: 22px;
  --sgm-shadow: 0 4px 32px rgba(0,0,0,0.4);
  --sgm-font: 'Mulish', sans-serif;
  --sgm-font-display: 'Fraunces', serif;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--sgm-bg);
  color: var(--sgm-text);
  font-family: var(--sgm-font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ─── Layout ─── */
.sgm-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── Buttons ─── */
.sgm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
}
.sgm-btn--primary {
  background: linear-gradient(135deg, var(--sgm-gold-h), var(--sgm-gold) 60%, #B9812E);
  color: #1A1204;
  border-color: transparent;
  box-shadow: 0 6px 22px rgba(221,168,74,0.28);
}
.sgm-btn--primary:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(221,168,74,0.4);
}
.sgm-btn--ghost {
  background: rgba(255,255,255,0.03);
  color: var(--sgm-text);
  border-color: var(--sgm-border);
}
.sgm-btn--ghost:hover {
  border-color: var(--sgm-gold);
  color: var(--sgm-gold);
}
.sgm-btn--outline {
  background: transparent;
  color: var(--sgm-gold);
  border-color: var(--sgm-border-gold);
}
.sgm-btn--outline:hover {
  background: var(--sgm-gold-dim);
}
.sgm-btn--lg { padding: 16px 36px; font-size: 17px; border-radius: 12px; }
.sgm-btn--full { width: 100%; }

/* ─── Header ─── */
.sgm-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,22,34,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sgm-border);
}
.sgm-header__bar {
  max-width: 1160px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.sgm-head__left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.sgm-logo img { height: 36px; width: auto; }
.sgm-nav { flex: 1; }
.sgm-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
}
.sgm-nav a {
  padding: 7px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--sgm-text-muted);
  transition: all 0.2s;
  position: relative;
}
.sgm-nav a:hover, .sgm-nav a.active {
  color: var(--sgm-text);
}
.sgm-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--sgm-gold);
  border-radius: 2px;
}
.sgm-head__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.sgm-head__actions .sgm-btn {
  padding: 8px 18px;
  font-size: 13px;
}

/* Burger */
.sgm-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--sgm-border);
  border-radius: 9px;
}
.sgm-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--sgm-text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile overlay */
.sgm-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 200;
  opacity: 0;
  transition: opacity 0.3s;
}
.sgm-mobile-overlay.is-active { display: block; }

/* Mobile panel */
.sgm-mobile-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: min(300px, 88vw);
  height: 100%;
  background: var(--sgm-surface);
  z-index: 300;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.sgm-mobile-panel.is-open { transform: translateX(0); }
.sgm-mobile-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--sgm-border);
}
.sgm-mobile-panel__logo img { height: 32px; }
.sgm-mobile-panel__close {
  width: 36px; height: 36px;
  background: var(--sgm-surface-2);
  border: none;
  border-radius: 8px;
  color: var(--sgm-text);
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
}
.sgm-mobile-panel__nav {
  padding: 12px 0;
  flex: 1;
}
.sgm-mobile-panel__nav a {
  display: block;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--sgm-text-muted);
  border-bottom: 1px solid var(--sgm-border);
  transition: color 0.2s;
}
.sgm-mobile-panel__nav a:hover, .sgm-mobile-panel__nav a.active { color: var(--sgm-gold); }
.sgm-mobile-panel__actions {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--sgm-border);
}

/* ─── Hero ─── */
.sgm-hero {
  position: relative;
  overflow: hidden;
  background: var(--sgm-bg);
  min-height: 640px;
}
.sgm-hero__img-link { position: absolute; inset: 0; display: block; z-index: 0; }
.sgm-hero picture, .sgm-page-hero picture { position: absolute; inset: 0; display: block; }
.sgm-hero picture img, .sgm-page-hero picture img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sgm-hero__overlay {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 40px 0;
  pointer-events: none;
  background: linear-gradient(100deg, rgba(10,22,34,0.92) 0%, rgba(10,22,34,0.62) 42%, rgba(10,22,34,0.15) 68%, transparent 100%);
}
.sgm-hero__overlay > * { pointer-events: auto; }
.sgm-hero__overlay .sgm-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.sgm-hero__text { width: 100%; max-width: 560px; }
.sgm-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sgm-gold-dim);
  border: 1px solid var(--sgm-border-gold);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--sgm-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 26px;
  backdrop-filter: blur(4px);
}
.sgm-hero__h1 {
  font-family: var(--sgm-font-display);
  font-optical-sizing: auto;
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
  color: var(--sgm-text);
  text-shadow: 0 2px 16px rgba(0,0,0,0.55);
}
.sgm-hero__h1 span { color: var(--sgm-gold); font-style: italic; font-weight: 600; }
.sgm-hero__sub {
  font-size: 17px;
  color: var(--sgm-text-muted);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}
.sgm-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

.sgm-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.sgm-stat-card {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}
.sgm-stat-card__icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(10,22,34,0.55);
  border: 1px solid var(--sgm-border-gold);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  color: var(--sgm-gold);
}
.sgm-stat-card__val {
  font-family: var(--sgm-font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--sgm-gold);
  line-height: 1.15;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
.sgm-stat-card__label {
  font-size: 11px;
  color: var(--sgm-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

/* ─── Section common ─── */
.sgm-section { padding: 80px 0; }
.sgm-section--alt { background: var(--sgm-surface); }
.sgm-section--dark { background: rgba(0,0,0,0.28); }
.sgm-section-head {
  margin-bottom: 48px;
}
.sgm-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sgm-gold);
  margin-bottom: 14px;
}
.sgm-label::before {
  content: '';
  width: 16px;
  height: 2px;
  background: var(--sgm-gold);
  border-radius: 2px;
  flex-shrink: 0;
}
.sgm-h2 {
  font-family: var(--sgm-font-display);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: var(--sgm-text);
}
.sgm-h2 span { color: var(--sgm-gold); font-style: italic; font-weight: 600; }
.sgm-intro {
  font-size: 17px;
  color: var(--sgm-text-muted);
  max-width: 640px;
  line-height: 1.7;
}
.sgm-section-head--center { text-align: center; }
.sgm-section-head--center .sgm-label { justify-content: center; }
.sgm-section-head--center .sgm-intro { margin: 0 auto; }

/* ─── Bonus stages ─── */
.sgm-stages { display: flex; flex-direction: column; gap: 22px; }
.sgm-stage {
  background: var(--sgm-surface);
  border: 1px solid var(--sgm-border);
  border-radius: var(--sgm-radius-lg);
  overflow: hidden;
  display: flex;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.sgm-stage::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sgm-gold), var(--sgm-accent));
  opacity: 0.8;
}
.sgm-stage:hover { border-color: var(--sgm-border-gold); transform: translateY(-2px); }
.sgm-stage--alt { background: var(--sgm-surface-2); }
.sgm-stage__num {
  flex: 0 0 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
}
.sgm-stage__num-n {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--sgm-gold-dim);
  border: 1px solid var(--sgm-border-gold);
  font-family: var(--sgm-font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--sgm-gold);
  line-height: 1;
}
.sgm-stage__num-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sgm-text-muted);
  font-weight: 600;
}
.sgm-stage__body {
  flex: 1;
  padding: 24px 28px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  border-left: 1px solid var(--sgm-border);
}
.sgm-stage__main { flex: 1; }
.sgm-stage__title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--sgm-gold);
  font-weight: 700;
  margin-bottom: 6px;
}
.sgm-stage__offer {
  font-family: var(--sgm-font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--sgm-text);
  margin-bottom: 10px;
  line-height: 1.25;
}
.sgm-stage__slot {
  font-size: 13px;
  color: var(--sgm-text-muted);
  margin-bottom: 14px;
}
.sgm-stage__terms {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.sgm-stage__term {
  font-size: 12px;
  color: var(--sgm-text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.sgm-stage__term::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--sgm-gold);
  flex-shrink: 0;
}
.sgm-stage__cta { flex-shrink: 0; display: flex; align-items: center; }

/* ─── About split ─── */
.sgm-about {
  display: flex;
  gap: 64px;
  align-items: center;
}
.sgm-about__text { flex: 1; }
.sgm-about__visual {
  flex: 0 0 380px;
  position: relative;
}
.sgm-about__visual::before {
  content: '';
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(221,168,74,0.14) 0%, transparent 70%);
  top: -40px; right: -60px;
  pointer-events: none;
  z-index: 0;
}
.sgm-about__card {
  background: var(--sgm-surface);
  border: 1px solid var(--sgm-border);
  border-radius: var(--sgm-radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.sgm-about__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sgm-gold), var(--sgm-accent));
}
.sgm-about__list { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.sgm-about__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.sgm-about__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--sgm-gold-dim);
  border: 1px solid var(--sgm-border-gold);
  display: flex; align-items: center; justify-content: center;
}
.sgm-about__item-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--sgm-text);
  margin-bottom: 4px;
}
.sgm-about__item-desc {
  font-size: 13px;
  color: var(--sgm-text-muted);
  line-height: 1.5;
}

/* ─── Text paragraphs ─── */
.sgm-prose { max-width: 780px; }
.sgm-prose p {
  color: var(--sgm-text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: 16px;
}
.sgm-prose h3 {
  font-family: var(--sgm-font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--sgm-gold);
  margin: 28px 0 12px;
}
.sgm-prose ul { margin: 0 0 16px; padding-left: 20px; }
.sgm-prose ul li { list-style: disc; color: var(--sgm-text-muted); line-height: 1.75; margin-bottom: 8px; font-size: 16px; }

/* ─── Legal pages ─── */
.sgm-legal__updated { color: var(--sgm-text-muted); font-size: 13px; margin-bottom: 32px; }
.sgm-legal h2 {
  font-family: var(--sgm-font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--sgm-text);
  margin: 36px 0 14px;
  padding-top: 24px;
  border-top: 1px solid var(--sgm-border);
}
.sgm-legal h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }

/* ─── Providers grid ─── */
.sgm-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.sgm-provider {
  flex: 1 1 140px;
  background: var(--sgm-surface);
  border: 1px solid var(--sgm-border);
  border-radius: var(--sgm-radius);
  padding: 18px 16px;
  text-align: center;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.sgm-provider:hover {
  border-color: var(--sgm-border-gold);
  background: var(--sgm-surface-2);
  transform: translateY(-2px);
}
.sgm-provider img {
  max-width: 110px;
  height: 36px;
  object-fit: contain;
  margin: 0 auto;
  opacity: 0.65;
  filter: grayscale(1) brightness(1.3);
  transition: opacity 0.25s, filter 0.25s;
}
.sgm-provider:hover img { opacity: 1; filter: grayscale(0) brightness(1); }

/* ─── Steps (registration) ─── */
.sgm-steps {
  display: flex;
  gap: 24px;
  counter-reset: step;
  margin-top: 40px;
}
.sgm-step {
  flex: 1;
  background: var(--sgm-surface);
  border: 1px solid var(--sgm-border);
  border-radius: var(--sgm-radius-lg);
  padding: 30px 24px 26px;
  position: relative;
  overflow: hidden;
  counter-increment: step;
}
.sgm-step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -14px; right: -6px;
  font-family: var(--sgm-font-display);
  font-size: 5.2rem;
  font-weight: 700;
  color: rgba(255,255,255,0.035);
  line-height: 1;
  pointer-events: none;
}
.sgm-step__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--sgm-gold-dim);
  border: 1px solid var(--sgm-border-gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.sgm-step__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--sgm-text);
  margin-bottom: 8px;
}
.sgm-step__desc {
  font-size: 14px;
  color: var(--sgm-text-muted);
  line-height: 1.6;
}

/* ─── Mobile feature ─── */
.sgm-mobile-feat {
  display: flex;
  gap: 60px;
  align-items: center;
}
.sgm-mobile-feat__text { flex: 1; }
.sgm-mobile-feat__visual { flex: 0 0 360px; }
.sgm-mobile-feat__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.sgm-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--sgm-surface-2);
  border: 1px solid var(--sgm-border);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sgm-text-muted);
}
.sgm-pill svg { flex-shrink: 0; }

.sgm-device-card {
  background: var(--sgm-surface);
  border: 1px solid var(--sgm-border);
  border-radius: var(--sgm-radius-lg);
  padding: 36px;
}
.sgm-device-card__title {
  font-family: var(--sgm-font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--sgm-text);
  margin-bottom: 24px;
}
.sgm-device-list { display: flex; flex-direction: column; gap: 16px; }
.sgm-device-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--sgm-border);
}
.sgm-device-item:last-child { border-bottom: none; }
.sgm-device-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--sgm-gold-dim);
  display: flex; align-items: center; justify-content: center;
}
.sgm-device-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--sgm-text);
  margin-bottom: 2px;
}
.sgm-device-desc {
  font-size: 13px;
  color: var(--sgm-text-muted);
}

/* ─── Trust bar ─── */
.sgm-trust-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.sgm-trust-card {
  flex: 1 1 220px;
  background: var(--sgm-surface);
  border: 1px solid var(--sgm-border);
  border-radius: var(--sgm-radius);
  padding: 28px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.2s, transform 0.2s;
}
.sgm-trust-card:hover { border-color: rgba(226,112,74,0.35); transform: translateY(-2px); }
.sgm-trust-card__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--sgm-accent-dim);
  border: 1px solid rgba(226,112,74,0.22);
  display: flex; align-items: center; justify-content: center;
}
.sgm-trust-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--sgm-text);
  margin-bottom: 6px;
}
.sgm-trust-card__desc {
  font-size: 13px;
  color: var(--sgm-text-muted);
  line-height: 1.5;
}

/* ─── Reviews slider ─── */
.sgm-reviews-slider { position: relative; overflow: hidden; margin-top: 40px; }
.sgm-reviews-track { display: flex; gap: 20px; transition: transform 0.4s ease; }
.sgm-review-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 280px;
  background: var(--sgm-surface);
  border: 1px solid var(--sgm-border);
  border-radius: var(--sgm-radius-lg);
  padding: 24px;
}
.sgm-review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}
.sgm-review-card__name { font-weight: 700; font-size: 15px; }
.sgm-review-card__stars { color: var(--sgm-gold); font-size: 14px; }
.sgm-review-card__meta { font-size: 12px; color: var(--sgm-text-muted); margin-bottom: 12px; }
.sgm-review-card p { font-size: 14px; color: var(--sgm-text-muted); line-height: 1.6; font-style: italic; }

.sgm-slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
}
.sgm-slider-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--sgm-border);
  background: var(--sgm-surface);
  color: var(--sgm-text);
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.sgm-slider-btn:hover { border-color: var(--sgm-gold); color: var(--sgm-gold); }
.sgm-slider-dots { display: flex; gap: 8px; }
.sgm-slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sgm-border);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.sgm-slider-dot.is-active { background: var(--sgm-gold); transform: scale(1.3); }

/* ─── FAQ ─── */
.sgm-faq { margin-top: 40px; display: flex; flex-direction: column; gap: 10px; }
.sgm-faq-item {
  background: var(--sgm-surface);
  border: 1px solid var(--sgm-border);
  border-radius: var(--sgm-radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.sgm-faq-item.is-open { border-color: var(--sgm-border-gold); }
.sgm-faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  color: var(--sgm-text);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.sgm-faq-q__chevron {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--sgm-border);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s, border-color 0.2s;
  color: var(--sgm-text-muted);
  font-size: 12px;
}
.sgm-faq-item.is-open .sgm-faq-q__chevron {
  transform: rotate(180deg);
  border-color: var(--sgm-gold);
  color: var(--sgm-gold);
}
.sgm-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
}
.sgm-faq-a__inner {
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--sgm-text-muted);
  line-height: 1.7;
}

/* ─── Bonus widget cards ─── */
.sgm-bonus-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}
.sgm-bonus-grid .sgm-bonus-card {
  flex: 1 1 calc(50% - 12px);
}
.sgm-bonus-card {
  background: var(--sgm-surface);
  border: 1px solid var(--sgm-border);
  border-radius: var(--sgm-radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.sgm-bonus-card:hover {
  border-color: var(--sgm-border-gold);
  transform: translateY(-3px);
}
.sgm-bonus-card__img { width: 100%; aspect-ratio: 16/7; object-fit: cover; }
.sgm-bonus-card__body { padding: 24px; }
.sgm-bonus-card__stage {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--sgm-gold);
  font-weight: 700;
  margin-bottom: 6px;
}
.sgm-bonus-card h3 {
  font-family: var(--sgm-font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--sgm-text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.sgm-bonus-card__desc {
  font-size: 13px;
  color: var(--sgm-text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}
.sgm-bonus-stats {
  list-style: none;
  border: 1px solid var(--sgm-border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
}
.sgm-bonus-stats li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  font-size: 12px;
  border-bottom: 1px solid var(--sgm-border);
}
.sgm-bonus-stats li:last-child { border-bottom: none; }
.sgm-bonus-stats li:nth-child(odd) { background: rgba(255,255,255,0.02); }
.sgm-bonus-stats li span:first-child { color: var(--sgm-text-muted); font-weight: 500; }
.sgm-bonus-stats li span:last-child { font-weight: 700; }
.sgm-bonus-card__terms {
  font-size: 11px;
  color: var(--sgm-text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

/* ─── Page hero (inner pages) ─── */
.sgm-page-hero {
  position: relative;
  overflow: hidden;
  background: var(--sgm-bg);
  border-bottom: 1px solid var(--sgm-border);
  min-height: 420px;
}
.sgm-page-hero .sgm-hero__overlay { background: linear-gradient(100deg, rgba(10,22,34,0.92) 0%, rgba(10,22,34,0.68) 45%, rgba(10,22,34,0.25) 72%, transparent 100%); }
.sgm-page-hero__inner { position: relative; z-index: 1; }
.sgm-page-hero__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sgm-gold);
  margin-bottom: 14px;
}
.sgm-page-hero h1 {
  font-family: var(--sgm-font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 700;
  color: var(--sgm-text);
  margin-bottom: 16px;
  line-height: 1.18;
  text-shadow: 0 2px 16px rgba(0,0,0,0.55);
}
.sgm-page-hero__desc {
  font-size: 17px;
  color: var(--sgm-text-muted);
  max-width: 600px;
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}

/* ─── Wagering explainer ─── */
.sgm-wager-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.sgm-wager-card {
  flex: 1 1 260px;
  background: var(--sgm-surface-2);
  border: 1px solid var(--sgm-border);
  border-radius: var(--sgm-radius);
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.sgm-wager-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sgm-gold), var(--sgm-accent));
  opacity: 0.7;
}
.sgm-wager-card__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--sgm-gold);
  font-weight: 700;
  margin-bottom: 8px;
}
.sgm-wager-card__val {
  font-family: var(--sgm-font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--sgm-text);
  line-height: 1;
  margin-bottom: 8px;
}
.sgm-wager-card__desc {
  font-size: 13px;
  color: var(--sgm-text-muted);
  line-height: 1.5;
}

/* ─── Tips grid ─── */
.sgm-tips {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}
.sgm-tip {
  flex: 1 1 280px;
  display: flex;
  gap: 14px;
  padding: 20px;
  background: var(--sgm-surface);
  border: 1px solid var(--sgm-border);
  border-radius: var(--sgm-radius);
  transition: border-color 0.2s, transform 0.2s;
}
.sgm-tip:hover { border-color: var(--sgm-border-gold); transform: translateY(-2px); }
.sgm-tip__icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--sgm-gold-dim);
  display: flex; align-items: center; justify-content: center;
}
.sgm-tip__title { font-weight: 700; font-size: 14px; color: var(--sgm-text); margin-bottom: 4px; }
.sgm-tip__desc { font-size: 13px; color: var(--sgm-text-muted); line-height: 1.5; }

/* ─── CTA section ─── */
.sgm-cta-section {
  background: linear-gradient(135deg, rgba(221,168,74,0.09), rgba(226,112,74,0.06));
  border: 1px solid var(--sgm-border-gold);
  border-radius: var(--sgm-radius-lg);
  padding: 52px 48px;
  text-align: center;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}
.sgm-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--sgm-surface);
  z-index: -1;
}
.sgm-cta-section h2 {
  font-family: var(--sgm-font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--sgm-text);
  margin-bottom: 12px;
}
.sgm-cta-section p {
  font-size: 16px;
  color: var(--sgm-text-muted);
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Footer ─── */
.sgm-footer {
  background: var(--sgm-surface);
  border-top: 1px solid var(--sgm-border);
  padding: 60px 0 32px;
}
.sgm-footer__top {
  display: flex;
  gap: 40px;
  margin-bottom: 48px;
}
.sgm-footer__brand { flex: 0 0 260px; }
.sgm-footer__logo img { height: 36px; margin-bottom: 16px; }
.sgm-footer__desc {
  font-size: 14px;
  color: var(--sgm-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.sgm-footer__nav {
  flex: 1;
  display: flex;
  gap: 40px;
}
.sgm-footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sgm-text-muted);
  margin-bottom: 16px;
}
.sgm-footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.sgm-footer__col a {
  font-size: 14px;
  color: var(--sgm-text-muted);
  transition: color 0.2s;
}
.sgm-footer__col a:hover { color: var(--sgm-gold); }

.sgm-footer__aggregators {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid var(--sgm-border);
  border-bottom: 1px solid var(--sgm-border);
  margin-bottom: 28px;
}
.sgm-footer__aggregators a {
  display: flex;
  align-items: center;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.sgm-footer__aggregators a:hover { opacity: 1; }
.sgm-footer__aggregators img, .sgm-footer__aggregators svg { height: 24px; width: auto; }

.sgm-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.sgm-footer__copy {
  font-size: 13px;
  color: var(--sgm-text-muted);
}
.sgm-footer__legal {
  font-size: 12px;
  color: var(--sgm-text-muted);
  line-height: 1.5;
  max-width: 500px;
  text-align: right;
}
.sgm-age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border: 2px solid var(--sgm-text-muted);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  color: var(--sgm-text-muted);
  margin-right: 8px;
}

/* ─── Responsive ─── */
@media (max-width: 980px) {
  .sgm-burger { display: flex; }
  .sgm-nav, .sgm-head__actions { display: none; }
  .sgm-about { flex-direction: column; }
  .sgm-about__visual { flex: none; width: 100%; max-width: 400px; overflow: hidden; border-radius: var(--sgm-radius-lg); }
  .sgm-steps { flex-wrap: wrap; }
  .sgm-step { flex: 1 1 200px; }
  .sgm-mobile-feat { flex-direction: column; }
  .sgm-mobile-feat__visual { flex: none; width: 100%; }
  .sgm-bonus-grid .sgm-bonus-card { flex: 1 1 100%; }
  .sgm-footer__top { flex-direction: column; }
  .sgm-footer__brand { flex: none; }
  .sgm-footer__nav { flex-wrap: wrap; }
  .sgm-review-card { flex: 0 0 calc(50% - 10px); }
}

@media (max-width: 640px) {
  .sgm-section { padding: 56px 0; }
  .sgm-hero { min-height: 560px; }
  .sgm-page-hero { min-height: 360px; }
  .sgm-hero__overlay, .sgm-page-hero .sgm-hero__overlay { padding: 24px 0; background: linear-gradient(180deg, rgba(10,22,34,0.55) 0%, rgba(10,22,34,0.93) 45%, rgba(10,22,34,0.97) 100%); }
  .sgm-hero__stats { gap: 16px 20px; }
  .sgm-stat-card__val { font-size: 1.2rem; }
  .sgm-stage { flex-direction: column; }
  .sgm-stage__num { flex: none; flex-direction: row; justify-content: flex-start; padding: 16px 20px 0; }
  .sgm-stage__body { flex-direction: column; gap: 16px; border-left: none; border-top: 1px solid var(--sgm-border); }
  .sgm-stage__cta { width: 100%; }
  .sgm-stage__cta .sgm-btn { width: 100%; }
  .sgm-trust-card { flex: 1 1 260px; }
  .sgm-review-card { flex: 0 0 100%; }
  .sgm-footer__bottom { flex-direction: column; align-items: flex-start; }
  .sgm-footer__legal { text-align: left; }
  .sgm-cta-section { padding: 36px 24px; }
}
