/* SpinEmpire Australia 13 — Dark Canyon Theme (Warm Coral) */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ─── Variables ─── */
:root {
  --bg:           #0B0805;
  --bg-card:      #1A1410;
  --bg-alt:       #130E09;
  --bg-card-hover:#221A10;
  --jade:         #FF7A3D;
  --jade-lt:      #FF9D6E;
  --jade-dim:     rgba(255,122,61,.10);
  --jade-glow:    rgba(255,122,61,.28);
  --gold:         #F5B731;
  --gold-lt:      #FFCF4D;
  --gold-glow:    rgba(245,183,49,.30);
  --coral:        #FF5F5F;
  --text:         #F4EDE8;
  --text-muted:   #7A6550;
  --text-sub:     #C0A890;
  --border:       rgba(255,122,61,.12);
  --border-mid:   rgba(255,122,61,.28);
  --radius-sm:    4px;
  --radius:       10px;
  --radius-lg:    18px;
  --radius-xl:    28px;
  --shadow-card:  0 8px 32px rgba(0,0,0,.60);
  --shadow-jade:  0 0 40px rgba(255,122,61,.12);
  --max-w:        1160px;
  --tr:           .20s ease;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta 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-sm);
  font-size: 15px;
  font-weight: 700;
  transition: transform var(--tr), box-shadow var(--tr), background var(--tr);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  text-decoration: none;
  letter-spacing: .3px;
}
.dp-btn:hover { transform: translateY(-2px); }
.dp-btn--gold {
  background: var(--gold);
  color: #0B0805;
  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: #0B0805;
  box-shadow: 0 4px 20px var(--jade-glow);
}
.dp-btn--jade:hover {
  background: var(--jade-lt);
  box-shadow: 0 6px 28px rgba(255,122,61,.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 18px; font-size: 14px; }
.dp-btn--full { width: 100%; text-align: center; }

/* ─── Header ─── */
.dp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,8,5,.96);
  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: 6px; }
.dp-nav a {
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 13px;
}
.dp-nav a.is-active {
  background: var(--jade-dim);
  border-color: var(--jade);
  color: var(--jade);
}
.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: 6px;
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  background: rgba(11,8,5,.99);
}
.dp-mobile-menu.is-open { display: flex; }
.dp-mobile-menu .dp-btn--gold { margin-top: 6px; }

/* ─── Hero ─── */
.dp-hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  min-height: 420px;
}
.dp-hero--sub { min-height: 360px; }
.dp-hero--sub .dp-hero__overlay {
}
.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;
  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: rgba(11,8,5,.65);
  border: 1px solid rgba(255,122,61,.40);
  border-radius: var(--radius-sm);
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--jade-lt);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.dp-hero__badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--jade);
  animation: pulse-coral 2s infinite;
}
@keyframes pulse-coral {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.8); }
}
.dp-hero__title {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  max-width: 620px;
  margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.dp-hero__title em { color: var(--jade); font-style: normal; }
.dp-hero__sub {
  font-size: 15px;
  color: rgba(255,255,255,.78);
  max-width: 500px;
  margin-bottom: 28px;
}
.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,.40);
}

/* ─── Stats ribbon ─── */
.dp-ribbon {
  background: linear-gradient(90deg, rgba(255,122,61,.07), rgba(255,122,61,.03));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 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: 3px;
  flex: 1;
  min-width: 100px;
}
.dp-ribbon__val {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--jade);
  line-height: 1;
}
.dp-ribbon__label {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.dp-ribbon__div {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

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

.dp-section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 52px;
}
.dp-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--jade);
  border-bottom: 2px solid var(--jade);
  padding-bottom: 4px;
  margin-bottom: 16px;
}
.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 ─── */
.dp-prose {
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}
.dp-prose h2 {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 800;
  color: #fff;
  margin: 38px 0 12px;
  padding: 10px 16px;
  background: var(--jade-dim);
  border-left: 3px solid var(--jade);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  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: 26px 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 22px;
  position: relative;
  color: var(--text-sub);
  font-size: 15px;
}
.dp-prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 2px;
  background: var(--jade);
}

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

/* ─── Stages table ─── */
.dp-stages-table-wrap { overflow-x: auto; margin-bottom: 20px; }
.dp-stages-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.dp-stages-table thead tr { background: rgba(255,122,61,.1); }
.dp-stages-table th { padding: 10px 14px; text-align: left; border: 1px solid var(--border); color: var(--jade); font-weight: 700; }
.dp-stages-table td { padding: 9px 14px; border: 1px solid var(--border); color: var(--text-sub); }
.dp-stages-table__stage { color: #fff; font-weight: 700; }
.dp-stages-table__best td { color: var(--gold); font-weight: 700; }
.dp-stages-table__best .dp-stages-table__stage { color: var(--gold); }

@media (max-width: 768px) {
  .dp-stages-table-wrap { overflow-x: visible; }
  .dp-stages-table thead { display: none; }
  .dp-stages-table tbody tr {
    display: block;
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 12px;
    padding: 4px 0;
    background: rgba(255,255,255,.02);
  }
  .dp-stages-table__best { background: rgba(255,179,0,.05) !important; border-color: var(--gold) !important; }
  .dp-stages-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    border-bottom: 1px solid var(--border);
    padding: 9px 14px;
    font-size: 13px;
  }
  .dp-stages-table td:last-child { border-bottom: none; }
  .dp-stages-table td::before {
    content: attr(data-label);
    color: var(--jade);
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .5px;
    flex-shrink: 0;
    margin-right: 12px;
  }
  .dp-stages-table__stage::before { color: var(--jade); }
  .dp-stages-table__best td::before { color: var(--gold); }
}

/* ─── 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);
  border-top: 3px solid var(--jade);
}
.dp-quick__title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--jade);
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}
.dp-quick__list { margin-bottom: 22px; }
.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: 20px; }
.dp-stage {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  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: var(--radius-sm);
  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: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.dp-stage__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.dp-stage__chips { display: flex; gap: 8px; flex-wrap: wrap; }
.dp-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  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,95,95,.08); color: var(--coral); border-color: rgba(255,95,95,.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(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.dp-term {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}
.dp-term__key {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.dp-term__val { font-size: 14px; font-weight: 700; color: #fff; }
.dp-stage__note {
  background: var(--jade-dim);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  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 ─── */
.dp-bonus-stats { border: 1px solid var(--border); border-radius: var(--radius-sm); 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: 6px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.dp-tab {
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  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;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.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: 14px;
}
.dp-game {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  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,.55);
}
.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: var(--radius-sm);
  margin-top: 6px;
  background: var(--jade-dim);
  color: var(--jade);
  border: 1px solid var(--border);
}
.dp-game__badge--hot { background: rgba(255,95,95,.1); color: var(--coral); border-color: rgba(255,95,95,.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: 12px; }
.dp-provider {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px 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: 30px; width: auto; opacity: .70; transition: opacity var(--tr); filter: brightness(1.1); }
.dp-provider:hover img { opacity: 1; }

/* ─── Feature cards ─── */
.dp-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.dp-feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color var(--tr), transform var(--tr), box-shadow var(--tr);
  border-top: 2px solid transparent;
}
.dp-feature:hover {
  border-color: var(--border-mid);
  border-top-color: var(--jade);
  transform: translateY(-4px);
  box-shadow: var(--shadow-jade);
}
.dp-feature__icon {
  width: 48px; height: 48px;
  background: var(--jade-dim);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  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: 20px; }
.dp-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  border-left: 3px solid var(--jade);
}
.dp-info-card__title { font-size: 1rem; 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(255,122,61,.07), rgba(245,183,49,.05));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 64px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.dp-cta::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,122,61,.08), transparent 70%);
  pointer-events: none;
}
.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: 8px; }
.dp-faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  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: 600;
  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: var(--radius-sm);
  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: 60px 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: 11px; font-weight: 800; letter-spacing: 1.5px; 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: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  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: .45;
  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; }

/* ─── Page CTA bar ─── */
.dp-page-cta {
  background: var(--jade-dim);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  padding: 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); }

/* ─── App features ─── */
.dp-app-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.dp-app-feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  border-top: 2px 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 ─── */
.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);
  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: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--jade);
  background: var(--jade-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  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 ─── */
.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: var(--radius-sm);
  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); }
  .dp-stage__terms { grid-template-columns: repeat(2, 1fr); }
}
.dp-mob-only { display: none; }
@media (max-width: 768px) {
  .dp-mob-only { display: block; }
  .dp-nav { display: none; }
  .dp-burger { display: flex; }
  /* скрываем Log In на мобиле — остаётся только Sign Up */
  .dp-head__right .dp-btn--outline { display: none; }
  /* уменьшаем gap хедер-бара */
  .dp-header__bar { gap: 12px; }
  .dp-hero { min-height: 340px; }
  .dp-hero__overlay { background: linear-gradient(180deg, rgba(11,8,5,.88) 0%, rgba(11,8,5,.72) 100%); }
  .dp-hero__title { font-size: 1.35rem; }
  .dp-hero__sub { font-size: 13px; margin-bottom: 20px; }
  .dp-hero__badge { margin-bottom: 12px; }
  .dp-section { padding: 56px 0; }
  .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-ribbon { padding: 16px 0; }
  .dp-ribbon__val { font-size: 1.3rem; }
  .dp-cta { padding: 40px 20px; }
  .dp-games-grid { grid-template-columns: repeat(2, 1fr); }
  .dp-quick { padding: 20px; }
  .dp-section-head { margin-bottom: 36px; }
  .dp-prose { max-width: 100%; overflow: hidden; }
  .dp-prose h2 { font-size: 1rem; padding: 8px 12px; margin: 28px 0 10px; }
  .dp-prose p, .dp-prose ul li { font-size: 14px; }
  .dp-overview { overflow: hidden; }
}
@media (max-width: 480px) {
  .dp-wrap { padding: 0 16px; }
  .dp-header__bar { padding: 10px 16px; gap: 10px; }
  .dp-logo img { height: 30px; }
  .dp-btn--sm { padding: 8px 14px; font-size: 13px; }
  .dp-providers { grid-template-columns: repeat(2, 1fr); }
  .dp-steps { grid-template-columns: 1fr; }
  .dp-ribbon__grid { justify-content: space-evenly; gap: 8px; }
  .dp-ribbon__item { min-width: 80px; }
  .dp-hero__title { font-size: 1.2rem; }
  .dp-games-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .dp-stage__header { padding: 16px; gap: 12px; }
  .dp-stage__body { padding: 0 16px 16px; }
  .dp-page-cta { flex-direction: column; align-items: flex-start; }
  .dp-cta { padding: 32px 16px; }
  .dp-footer__logos img { height: 16px; }
}
