/* SpinEmpire Australia 12 — Deep Pacific Theme */
/* Font */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&display=swap');

/* ─── Variables ─── */
:root {
  --bg:           #060D12;
  --bg-card:      #0C1A22;
  --bg-alt:       #091418;
  --bg-card-hover:#0F2030;
  --jade:         #1EC8A0;
  --jade-lt:      #3BDDB5;
  --jade-dim:     rgba(30,200,160,.12);
  --jade-glow:    rgba(30,200,160,.25);
  --gold:         #F5B731;
  --gold-lt:      #FFCF4D;
  --gold-glow:    rgba(245,183,49,.30);
  --coral:        #FF6B6B;
  --text:         #E8F4F0;
  --text-muted:   #5E8A7A;
  --text-sub:     #9BBFB5;
  --border:       rgba(30,200,160,.12);
  --border-mid:   rgba(30,200,160,.25);
  --radius-sm:    6px;
  --radius:       12px;
  --radius-lg:    20px;
  --radius-xl:    30px;
  --shadow-card:  0 8px 32px rgba(0,0,0,.55);
  --shadow-jade:  0 0 40px rgba(30,200,160,.10);
  --max-w:        1160px;
  --tr:           .22s ease;
}

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

/* ─── Wrap ─── */
.dp-wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ─── Buttons ─── */
.dp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  transition: transform var(--tr), box-shadow var(--tr), background var(--tr), color var(--tr);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.dp-btn:hover { transform: translateY(-2px); }
.dp-btn--gold {
  background: var(--gold);
  color: #060D12;
  box-shadow: 0 4px 20px var(--gold-glow);
}
.dp-btn--gold:hover {
  background: var(--gold-lt);
  box-shadow: 0 6px 28px rgba(245,183,49,.55);
}
.dp-btn--jade {
  background: var(--jade);
  color: #060D12;
  box-shadow: 0 4px 20px var(--jade-glow);
}
.dp-btn--jade:hover {
  background: var(--jade-lt);
  box-shadow: 0 6px 28px rgba(30,200,160,.45);
}
.dp-btn--outline {
  background: transparent;
  color: var(--jade);
  border: 1.5px solid var(--border-mid);
}
.dp-btn--outline:hover {
  border-color: var(--jade);
  background: var(--jade-dim);
  color: var(--jade-lt);
}
.dp-btn--lg { padding: 16px 36px; font-size: 16px; }
.dp-btn--sm { padding: 9px 20px; font-size: 14px; }
.dp-btn--full { width: 100%; text-align: center; }

/* ─── Header ─── */
.dp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6,13,18,.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.dp-header__bar {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.dp-head__left { display: flex; align-items: center; gap: 16px; flex: 1; }
.dp-logo img { height: 36px; width: auto; }

.dp-nav { display: flex; align-items: center; gap: 4px; }
.dp-nav a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-sub);
  transition: color var(--tr), background var(--tr);
}
.dp-nav a:hover, .dp-nav a.is-active {
  color: var(--jade);
  background: var(--jade-dim);
}
.dp-head__right { display: flex; align-items: center; gap: 10px; flex: 1; justify-content: flex-end; }

/* Burger */
.dp-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  border-radius: var(--radius-sm);
  transition: background var(--tr);
}
.dp-burger:hover { background: var(--jade-dim); }
.dp-burger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.dp-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.dp-burger.is-open span:nth-child(2) { opacity: 0; }
.dp-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.dp-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  background: rgba(6,13,18,.98);
}
.dp-mobile-menu.is-open { display: flex; }
.dp-mobile-menu a {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--text-sub);
  transition: color var(--tr), background var(--tr);
}
.dp-mobile-menu a:hover { color: var(--jade); background: var(--jade-dim); }
.dp-mobile-menu .dp-btn { margin-top: 8px; }

/* ─── Hero ─── */
.dp-hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  min-height: 420px;
}
.dp-hero--sub { min-height: 380px; }
.dp-hero--sub .dp-hero__overlay { background: linear-gradient(90deg, rgba(6,13,18,.82) 0%, rgba(6,13,18,.45) 55%, transparent 100%); }
.dp-hero__link { display: block; }
.dp-hero__link picture { display: block; width: 100%; }
.dp-hero__link img { width: 100%; height: auto; object-fit: cover; display: block; }
.dp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,13,18,.82) 0%, rgba(6,13,18,.45) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  pointer-events: none;
}
.dp-hero__overlay > * { pointer-events: auto; }
.dp-hero__overlay .dp-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.dp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--jade-dim);
  border: 1px solid var(--border-mid);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--jade);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.dp-hero__badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--jade);
  animation: pulse-jade 2s infinite;
}
@keyframes pulse-jade {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.85); }
}
.dp-hero__title {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  max-width: 600px;
  margin-bottom: 14px;
}
.dp-hero__title em { color: var(--jade); font-style: normal; }
.dp-hero__sub {
  font-size: 15px;
  color: rgba(255,255,255,.75);
  max-width: 480px;
  margin-bottom: 24px;
}
.dp-hero__actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.dp-hero__fine {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255,255,255,.45);
}

/* ─── Stats ribbon ─── */
.dp-ribbon {
  background: linear-gradient(90deg, rgba(30,200,160,.08), rgba(30,200,160,.04));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.dp-ribbon__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.dp-ribbon__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 1;
  min-width: 100px;
}
.dp-ribbon__val {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--jade);
  line-height: 1;
}
.dp-ribbon__label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.dp-ribbon__div {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* ─── Sections ─── */
.dp-section { padding: 72px 0; }
.dp-section--alt { background: var(--bg-alt); }
.dp-section--card { background: var(--bg-card); }

.dp-section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.dp-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--jade);
  background: var(--jade-dim);
  border: 1px solid var(--border-mid);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 14px;
}
.dp-section-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 14px;
}
.dp-section-desc {
  font-size: 16px;
  color: var(--text-sub);
  line-height: 1.65;
}

/* ─── Prose content ─── */
.dp-prose h2 {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 800;
  color: #fff;
  margin: 36px 0 12px;
  padding-left: 16px;
  border-left: 3px solid var(--jade);
  line-height: 1.3;
}
.dp-prose h2:first-child { margin-top: 0; }
.dp-prose h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--jade-lt);
  margin: 24px 0 10px;
}
.dp-prose p {
  color: var(--text-sub);
  margin-bottom: 16px;
  font-size: 15px;
}
.dp-prose ul {
  list-style: none;
  margin-bottom: 16px;
}
.dp-prose ul li {
  padding: 6px 0 6px 20px;
  position: relative;
  color: var(--text-sub);
  font-size: 15px;
}
.dp-prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--jade);
}

/* ─── Overview grid ─── */
.dp-overview { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }

/* ─── Quick stats sidebar ─── */
.dp-quick {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 80px;
  box-shadow: var(--shadow-card);
}
.dp-quick__title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--jade);
  margin-bottom: 18px;
}
.dp-quick__list { margin-bottom: 20px; }
.dp-quick__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.dp-quick__row:last-child { border-bottom: none; }
.dp-quick__key { color: var(--text-muted); }
.dp-quick__val { font-weight: 700; color: #fff; text-align: right; }

/* ─── Stage cards ─── */
.dp-stages { display: flex; flex-direction: column; gap: 24px; }
.dp-stage {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--tr), box-shadow var(--tr);
  box-shadow: var(--shadow-card);
}
.dp-stage:hover { border-color: var(--border-mid); box-shadow: var(--shadow-jade); }
.dp-stage__header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  cursor: pointer;
}
.dp-stage__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--jade-dim);
  border: 2px solid var(--jade);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--jade);
  flex-shrink: 0;
}
.dp-stage__meta { flex: 1; min-width: 0; }
.dp-stage__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.dp-stage__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.dp-stage__chips { display: flex; gap: 8px; flex-wrap: wrap; }
.dp-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  background: var(--jade-dim);
  color: var(--jade);
  border: 1px solid var(--border);
}
.dp-chip--gold { background: rgba(245,183,49,.1); color: var(--gold); border-color: rgba(245,183,49,.2); }
.dp-chip--coral { background: rgba(255,107,107,.08); color: var(--coral); border-color: rgba(255,107,107,.15); }
.dp-stage__toggle {
  color: var(--text-muted);
  transition: transform var(--tr), color var(--tr);
  flex-shrink: 0;
}
.dp-stage.is-open .dp-stage__toggle { transform: rotate(180deg); color: var(--jade); }
.dp-stage__body { display: none; padding: 0 24px 24px; }
.dp-stage.is-open .dp-stage__body { display: block; }
.dp-stage__terms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.dp-term {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
}
.dp-term__key {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.dp-term__val { font-size: 15px; font-weight: 700; color: #fff; }
.dp-stage__note {
  background: var(--jade-dim);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 13px;
  color: var(--text-sub);
  margin-bottom: 16px;
  line-height: 1.5;
}
.dp-stage__note strong { color: var(--jade); }

/* ─── Bonus stats widget ─── */
.dp-bonus-stats { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 16px; }
.dp-bonus-stats li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 14px;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
}
.dp-bonus-stats li:last-child { border-bottom: none; }
.dp-bonus-stats li:nth-child(odd) { background: rgba(255,255,255,.02); }
.dp-bonus-stats li span:first-child { color: var(--text-muted); font-weight: 500; }
.dp-bonus-stats li span:last-child { font-weight: 700; text-align: right; }
.dp-bonus-card__terms {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

/* ─── Games tabs ─── */
.dp-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.dp-tab {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--tr), background var(--tr), border-color var(--tr);
  font-family: inherit;
}
.dp-tab:hover { color: var(--jade); border-color: var(--border-mid); }
.dp-tab.is-active {
  background: var(--jade-dim);
  border-color: var(--jade);
  color: var(--jade);
}

.dp-games-panel { display: none; }
.dp-games-panel.is-active { display: grid; }
.dp-games-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.dp-game {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--tr), transform var(--tr), box-shadow var(--tr);
  cursor: pointer;
}
.dp-game:hover {
  border-color: var(--border-mid);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.5);
}
.dp-game__thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-alt);
}
.dp-game__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.dp-game:hover .dp-game__thumb img { transform: scale(1.06); }
.dp-game__info {
  padding: 10px 12px 12px;
}
.dp-game__name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dp-game__provider {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}
.dp-game__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
  margin-top: 6px;
  background: var(--jade-dim);
  color: var(--jade);
  border: 1px solid var(--border);
}
.dp-game__badge--hot { background: rgba(255,107,107,.1); color: var(--coral); border-color: rgba(255,107,107,.2); }
.dp-game__badge--jackpot { background: rgba(245,183,49,.1); color: var(--gold); border-color: rgba(245,183,49,.2); }
.dp-games-cta {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 0 4px;
}

/* ─── Providers ─── */
.dp-providers { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.dp-provider {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--tr), transform var(--tr);
}
.dp-provider:hover { border-color: var(--border-mid); transform: translateY(-3px); }
.dp-provider img { height: 32px; width: auto; opacity: .75; transition: opacity var(--tr); }
.dp-provider:hover img { opacity: 1; }

/* ─── Feature cards ─── */
.dp-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.dp-feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color var(--tr), transform var(--tr), box-shadow var(--tr);
}
.dp-feature:hover {
  border-color: var(--border-mid);
  transform: translateY(-4px);
  box-shadow: var(--shadow-jade);
}
.dp-feature__icon {
  width: 52px; height: 52px;
  background: var(--jade-dim);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.dp-feature__title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.dp-feature__text { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ─── Info cards ─── */
.dp-info-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.dp-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border-left: 3px solid var(--jade);
}
.dp-info-card__title { font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.dp-info-card__text { font-size: 14px; color: var(--text-sub); line-height: 1.65; }

/* ─── CTA block ─── */
.dp-cta {
  background: linear-gradient(135deg, rgba(30,200,160,.08), rgba(245,183,49,.05));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 56px 40px;
  text-align: center;
}
.dp-cta__title { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
.dp-cta__text { font-size: 16px; color: var(--text-sub); max-width: 520px; margin: 0 auto 32px; }
.dp-cta__btns { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.dp-cta__fine { font-size: 12px; color: var(--text-muted); margin-top: 16px; }

/* ─── FAQ ─── */
.dp-faq { display: flex; flex-direction: column; gap: 10px; }
.dp-faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--tr);
}
.dp-faq-item.is-open { border-color: var(--border-mid); }
.dp-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-align: left;
  background: none;
  font-family: inherit;
  cursor: pointer;
  transition: color var(--tr);
}
.dp-faq-q:hover { color: var(--jade); }
.dp-faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border: 1.5px solid var(--border-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--jade);
  transition: transform var(--tr), background var(--tr);
}
.dp-faq-item.is-open .dp-faq-icon { transform: rotate(45deg); background: var(--jade-dim); }
.dp-faq-a {
  display: none;
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.65;
}
.dp-faq-item.is-open .dp-faq-a { display: block; }

/* ─── Footer ─── */
.dp-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}
.dp-footer__top {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px;
  margin-bottom: 40px;
}
.dp-footer__brand { max-width: 340px; }
.dp-footer__logo { height: 32px; width: auto; margin-bottom: 16px; }
.dp-footer__tagline { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.dp-footer__col-title { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--jade); margin-bottom: 14px; }
.dp-footer__links { display: flex; flex-direction: column; gap: 8px; }
.dp-footer__links a { font-size: 14px; color: var(--text-muted); transition: color var(--tr); }
.dp-footer__links a:hover { color: var(--jade); }

.dp-footer__reviews {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.dp-footer__reviews-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 18px;
}
.dp-footer__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.dp-footer__logos a {
  display: flex;
  align-items: center;
  opacity: .5;
  transition: opacity var(--tr), transform var(--tr);
}
.dp-footer__logos a:hover { opacity: 1; transform: translateY(-2px); }
.dp-footer__logos img { height: 20px; width: auto; }

.dp-footer__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.dp-footer__disclaimer { font-size: 12px; color: var(--text-muted); line-height: 1.6; max-width: 720px; }
.dp-footer__legal { font-size: 12px; color: var(--text-muted); white-space: nowrap; padding-top: 2px; }

/* ─── Mobile page CTA bar (bonus/app pages) ─── */
.dp-page-cta {
  background: var(--jade-dim);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.dp-page-cta__text h3 { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.dp-page-cta__text p { font-size: 14px; color: var(--text-sub); }

/* ─── Mobile app features ─── */
.dp-app-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.dp-app-feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  border-top: 3px solid var(--jade);
}
.dp-app-feature__title { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.dp-app-feature__text { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ─── Bonus card (bonuses page) ─── */
.dp-bonus-grid { display: flex; flex-direction: column; gap: 24px; }
.dp-bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 280px 1fr;
  box-shadow: var(--shadow-card);
  transition: border-color var(--tr), box-shadow var(--tr);
}
.dp-bonus-card:hover { border-color: var(--border-mid); box-shadow: var(--shadow-jade); }
.dp-bonus-card__image { overflow: hidden; background: var(--bg-alt); }
.dp-bonus-card__image img { width: 100%; height: 100%; object-fit: cover; }
.dp-bonus-card__content { padding: 28px; }
.dp-bonus-card__stage {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--jade);
  background: var(--jade-dim);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 10px;
}
.dp-bonus-card h3 { font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 10px; line-height: 1.3; }
.dp-bonus-card__desc { font-size: 14px; color: var(--text-sub); margin-bottom: 16px; line-height: 1.6; }

/* ─── Steps (how it works) ─── */
.dp-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.dp-step { text-align: center; }
.dp-step__num {
  width: 48px; height: 48px;
  background: var(--jade-dim);
  border: 2px solid var(--jade);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--jade);
  margin: 0 auto 14px;
}
.dp-step__title { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.dp-step__text { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .dp-overview { grid-template-columns: 1fr; }
  .dp-quick { position: static; }
  .dp-features { grid-template-columns: repeat(2, 1fr); }
  .dp-providers { grid-template-columns: repeat(4, 1fr); }
  .dp-steps { grid-template-columns: repeat(2, 1fr); }
  .dp-footer__top { grid-template-columns: 1fr 1fr; }
  .dp-games-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .dp-nav { display: none; }
  .dp-burger { display: flex; }
  .dp-hero__overlay { background: linear-gradient(180deg, rgba(6,13,18,.70) 0%, rgba(6,13,18,.60) 100%); }
  .dp-features { grid-template-columns: 1fr; }
  .dp-info-cards { grid-template-columns: 1fr; }
  .dp-providers { grid-template-columns: repeat(3, 1fr); }
  .dp-stage__terms { grid-template-columns: 1fr; }
  .dp-bonus-card { grid-template-columns: 1fr; }
  .dp-bonus-card__image { height: 180px; }
  .dp-app-features { grid-template-columns: 1fr; }
  .dp-steps { grid-template-columns: 1fr 1fr; }
  .dp-footer__top { grid-template-columns: 1fr; gap: 32px; }
  .dp-footer__logos { gap: 16px; }
  .dp-ribbon__div { display: none; }
  .dp-cta { padding: 40px 24px; }
  .dp-games-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .dp-wrap { padding: 0 16px; }
  .dp-providers { grid-template-columns: repeat(2, 1fr); }
  .dp-steps { grid-template-columns: 1fr; }
  .dp-ribbon__grid { justify-content: space-evenly; }
}
