:root {
  --bg: #060a12;
  --bg-2: #0a111d;
  --panel: #111827;
  --panel-soft: rgba(17, 24, 39, .78);
  --card: rgba(17, 24, 39, .88);
  --card-2: rgba(255, 255, 255, .055);
  --line: rgba(255, 255, 255, .12);
  --line-strong: rgba(255, 255, 255, .2);
  --text: #f8fafc;
  --muted: #aeb9c8;
  --soft: #dbe6f3;
  --green: #16d08f;
  --green-2: #0aa972;
  --gold: #f7bd43;
  --red: #ff5f55;
  --blue: #55a8ff;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(0, 0, 0, .38);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 0, rgba(22, 208, 143, .22), transparent 31rem),
    radial-gradient(circle at 86% 12%, rgba(247, 189, 67, .15), transparent 30rem),
    linear-gradient(180deg, #060a12 0%, #0a111d 38%, #070b13 100%);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 12px clamp(16px, 4vw, 56px);
  background: rgba(6, 10, 18, .88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand-mark,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 950;
  text-decoration: none;
}
.brand-symbol {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 16px;
  color: #06120d;
  background: linear-gradient(135deg, var(--green), var(--gold));
  box-shadow: 0 14px 34px rgba(22, 208, 143, .22);
  font-size: 14px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.site-menu {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-menu a,
.header-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}
.site-menu a:hover,
.header-link:hover,
.site-menu a:focus-visible,
.header-link:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  outline: none;
}
.header-actions { display: flex; gap: 8px; }
.header-link {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .05);
}
.header-link-strong {
  color: #06120d;
  border-color: transparent;
  background: var(--green);
}
.header-link-strong:hover { color: #06120d; background: var(--gold); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .06);
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: #fff;
}
.site-main { min-height: 70vh; }

.dg-section,
.dg-hero {
  padding: 72px clamp(16px, 5vw, 68px);
}
.dg-section > *,
.dg-hero {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.dg-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .88fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  max-width: none;
  min-height: calc(100svh - 72px);
  padding-top: clamp(62px, 8vw, 92px);
  padding-bottom: clamp(56px, 8vw, 90px);
  background:
    radial-gradient(circle at 16% 16%, rgba(22, 208, 143, .24), transparent 28rem),
    radial-gradient(circle at 82% 22%, rgba(247, 189, 67, .18), transparent 28rem),
    linear-gradient(135deg, #07101b 0%, #111827 52%, #060a12 100%);
}
.dg-hero-copy,
.dg-hero-visual,
.dg-section-head,
.dg-quick-grid,
.dg-feature-strip,
.dg-game-category-grid,
.dg-app-section,
.dg-bonus-card,
.dg-payment-grid,
.dg-safety-callout,
.dg-steps,
.dg-review-track,
.dg-warning-card,
.dg-article,
.dg-faq-list {
  max-width: 1200px;
}
.dg-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.dg-hero h1 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(38px, 6.4vw, 74px);
  line-height: 1;
  letter-spacing: 0;
}
.dg-hero-text {
  max-width: 650px;
  margin: 0;
  color: var(--soft);
  font-size: 18px;
}
.dg-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.dg-btn,
.btn,
.wp-block-button__link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-weight: 950;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.dg-btn:hover,
.btn:hover { transform: translateY(-1px); }
.dg-btn-primary,
.btn {
  color: #05120d;
  background: linear-gradient(135deg, var(--green), var(--gold));
  box-shadow: 0 18px 42px rgba(22, 208, 143, .2);
}
.dg-btn-secondary {
  color: #06120d;
  background: var(--gold);
}
.dg-btn-ghost,
.btn.secondary {
  color: #fff;
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, .08);
}
.dg-age-note {
  margin: 18px 0 0;
  color: var(--soft);
  font-weight: 850;
}
.dg-trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.dg-trust-tags span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft);
  background: rgba(255, 255, 255, .06);
  font-size: 13px;
  font-weight: 850;
}
.dg-hero-visual {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .045));
  box-shadow: var(--shadow);
}
.dg-hero-visual img {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 20px;
  object-fit: cover;
}

.dg-section-head {
  margin-bottom: 30px;
}
.dg-section-head h2,
.dg-app-copy h2,
.dg-bonus-copy h2,
.dg-warning-card h2,
.dg-article h2,
.page-content h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}
.dg-section-head p,
.dg-app-copy p,
.dg-bonus-copy p,
.dg-article p,
.page-content p,
.page-content li {
  color: var(--muted);
}
.dg-section-head p {
  max-width: 760px;
  margin: 0;
}

.dg-quick-section { background: rgba(10, 17, 29, .72); }
.dg-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.dg-access-card,
.dg-game-category,
.dg-step,
.dg-review,
.dg-faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .035));
  box-shadow: 0 16px 42px rgba(0, 0, 0, .18);
}
.dg-access-card {
  display: grid;
  gap: 12px;
  min-height: 218px;
  padding: 24px;
}
.dg-card-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 18px;
  color: #06120d;
  background: linear-gradient(135deg, var(--green), var(--gold));
  font-size: 13px;
  font-weight: 950;
}
.dg-access-card h3,
.dg-game-category h3,
.dg-step h3,
.dg-review h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
}
.dg-access-card p,
.dg-game-category p,
.dg-step p,
.dg-review p {
  margin: 0;
  color: var(--muted);
}
.dg-mini-link {
  align-self: end;
  justify-self: start;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 13px;
  border: 1px solid rgba(22, 208, 143, .36);
  border-radius: 999px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  background: rgba(22, 208, 143, .08);
}

.dg-feature-section {
  padding-top: 36px;
  padding-bottom: 36px;
  background: linear-gradient(90deg, rgba(22, 208, 143, .11), rgba(247, 189, 67, .08));
}
.dg-feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.dg-feature-strip div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(17, 24, 39, .68);
}
.dg-feature-strip strong,
.dg-feature-strip span { display: block; }
.dg-feature-strip strong { color: #fff; }
.dg-feature-strip span { color: var(--muted); margin-top: 4px; }

.dg-games-section { background: #080d16; }
.dg-game-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.dg-game-category {
  overflow: hidden;
}
.dg-game-category img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.dg-game-category div { padding: 22px; }
.dg-game-category:nth-child(odd) { border-color: rgba(22, 208, 143, .28); }
.dg-game-category:nth-child(even) { border-color: rgba(247, 189, 67, .26); }

.dg-app-section {
  display: grid;
  grid-template-columns: minmax(300px, .75fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
  background:
    radial-gradient(circle at 8% 25%, rgba(22, 208, 143, .18), transparent 28rem),
    linear-gradient(135deg, #0b1320, #101827);
}
.dg-phone-panel {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .08);
  box-shadow: var(--shadow);
}
.dg-phone-panel img {
  width: 100%;
  max-height: 720px;
  border-radius: 20px;
  object-fit: cover;
}
.dg-check-list,
.dg-bonus-checklist,
.dg-warning-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.dg-check-list li,
.dg-bonus-checklist li,
.dg-warning-list li {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--soft);
  background: rgba(255, 255, 255, .06);
}
.dg-app-copy .dg-btn { margin-top: 24px; }

.dg-bonus-section {
  background: linear-gradient(135deg, #101827, #080d16);
}
.dg-bonus-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .84fr);
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid rgba(247, 189, 67, .34);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(247, 189, 67, .13), rgba(255, 255, 255, .045)),
    #0c1320;
  box-shadow: var(--shadow);
}
.dg-bonus-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 20px;
  object-fit: cover;
}
.dg-bonus-checklist {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 24px;
}
.dg-bonus-checklist li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 99px;
  background: var(--green);
  vertical-align: 1px;
}

.dg-payment-section { background: #080d16; }
.dg-payment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.dg-payment-grid span {
  display: grid;
  min-height: 82px;
  place-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--soft);
  background: rgba(255, 255, 255, .06);
  text-align: center;
  font-weight: 850;
}
.dg-safety-callout,
.dg-article-callout {
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(247, 189, 67, .35);
  border-radius: 18px;
  color: var(--soft);
  background: rgba(247, 189, 67, .09);
}
.dg-safety-callout strong,
.dg-article-callout strong { color: #fff; }

.dg-steps-section { background: linear-gradient(180deg, #0a111d, #0c1421); }
.dg-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.dg-step { padding: 24px; }
.dg-step span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 16px;
  color: #06120d;
  background: var(--gold);
  font-weight: 950;
}

.dg-review-section { background: var(--bg-2); }
.dg-review-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.dg-review {
  padding: 24px;
  background: linear-gradient(180deg, rgba(22, 208, 143, .11), rgba(255, 255, 255, .04));
}

.dg-responsible-section { background: #070a11; }
.dg-warning-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .55fr);
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid rgba(255, 95, 85, .45);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 95, 85, .16), rgba(255, 255, 255, .045)),
    #101827;
  box-shadow: var(--shadow);
}
.dg-warning-card img {
  width: 100%;
  max-height: 520px;
  border-radius: 20px;
  object-fit: cover;
}
.dg-warning-list li {
  border-color: rgba(255, 95, 85, .22);
}
.dg-warning-list strong { color: #fff; }

.dg-article-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02)),
    #0d1420;
}
.dg-article {
  max-width: 920px;
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #101827;
  box-shadow: var(--shadow);
}
.dg-article h2 { font-size: clamp(30px, 5vw, 48px); }
.dg-article h3,
.page-content h3 {
  margin: 34px 0 10px;
  color: #fff;
  font-size: 24px;
  line-height: 1.25;
}
.dg-article p { margin: 0 0 16px; }

.dg-faq-section { background: #080d16; }
.dg-faq-list {
  display: grid;
  gap: 12px;
}
.dg-faq-list details {
  padding: 0;
  overflow: hidden;
  background: var(--card);
}
.dg-faq-list summary {
  cursor: pointer;
  min-height: 58px;
  padding: 18px 48px 18px 20px;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  list-style: none;
  position: relative;
}
.dg-faq-list summary::-webkit-details-marker { display: none; }
.dg-faq-list summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green);
  font-size: 24px;
}
.dg-faq-list details[open] summary::after { content: "-"; }
.dg-faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.page-shell {
  padding: 0 clamp(16px, 5vw, 68px) 72px;
}
.page-hero {
  max-width: 960px;
  padding: 58px 0 28px;
}
.page-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1;
}
.page-content {
  max-width: 1120px;
  margin: 0 auto;
}
.page-content > section {
  margin: 28px 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
}
.page-content > section.content-card-lead {
  border-color: rgba(22, 208, 143, .28);
  background:
    radial-gradient(circle at 0 0, rgba(22, 208, 143, .13), transparent 26rem),
    var(--panel);
}
.page-content > section.risk-card {
  border-color: rgba(255, 95, 85, .42);
  background:
    linear-gradient(135deg, rgba(255, 95, 85, .13), rgba(255, 255, 255, .035)),
    #111827;
}
.page-content > section.internal-links {
  border-color: rgba(247, 189, 67, .3);
}
.dg-subpage-image {
  margin: 28px 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .06);
  box-shadow: var(--shadow);
}
.dg-subpage-image img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}
.page-content .dg-link-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding-left: 0;
  list-style: none;
}
.page-content .dg-link-list li {
  margin: 0;
}
.page-content .dg-link-list a {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(22, 208, 143, .28);
  border-radius: 16px;
  background: rgba(22, 208, 143, .07);
  text-decoration: none;
}
.dg-games-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.dg-game-bg-card {
  position: relative;
  display: flex;
  min-height: 236px;
  overflow: hidden;
  align-items: flex-end;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 22px;
  color: #fff;
  text-decoration: none;
  background-image:
    linear-gradient(180deg, rgba(6, 10, 18, .12) 0%, rgba(6, 10, 18, .76) 58%, rgba(6, 10, 18, .94) 100%),
    var(--card-bg);
  background-position: center;
  background-size: cover;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .28);
  isolation: isolate;
}
.dg-game-bg-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 0, rgba(22, 208, 143, .32), transparent 42%),
    radial-gradient(circle at 82% 10%, rgba(247, 189, 67, .26), transparent 38%);
  opacity: .85;
  transition: opacity .18s ease, transform .18s ease;
}
.dg-game-bg-card:hover,
.dg-game-bg-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(22, 208, 143, .55);
  outline: none;
}
.dg-game-bg-card:hover::before,
.dg-game-bg-card:focus-visible::before {
  opacity: 1;
  transform: scale(1.04);
}
.dg-game-bg-card span {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  color: #06120d;
  background: linear-gradient(135deg, var(--green), var(--gold));
  font-size: 12px;
  font-weight: 950;
}
.dg-game-bg-card h3 {
  margin: 12px 0 8px;
  color: #fff;
  font-size: 22px;
  line-height: 1.15;
}
.dg-game-bg-card p {
  margin: 0;
  color: #e5edf7;
  line-height: 1.45;
}
.page-content details {
  margin: 12px 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .045);
  overflow: hidden;
}
.page-content summary {
  cursor: pointer;
  padding: 16px 18px;
  color: #fff;
  font-weight: 900;
}
.page-content details p {
  margin: 0;
  padding: 0 18px 18px;
}
.page-content ul { padding-left: 22px; }
.page-content a:not(.dg-btn):not(.btn):not(.dg-access-card):not(.dg-game-bg-card) {
  color: var(--green);
  font-weight: 850;
}

.site-footer {
  padding: 56px clamp(16px, 5vw, 68px) 108px;
  color: var(--muted);
  background: #05080d;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, .8fr) minmax(300px, 1.2fr);
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto;
}
.footer-grid p { max-width: 440px; }
.site-footer a { color: #fff; text-decoration: none; font-weight: 800; }
.site-footer nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  max-width: 1180px;
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #c7d1df;
}

.floating-entry {
  position: fixed;
  left: 50%;
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 80;
  transform: translate(-50%, 110px);
  opacity: 0;
  pointer-events: none;
  transition: transform .22s ease, opacity .22s ease;
}
.floating-entry.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}
.floating-entry a {
  display: inline-flex;
  min-width: 230px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 18px;
  color: #06120d;
  background: linear-gradient(135deg, var(--green), var(--gold));
  box-shadow: 0 18px 44px rgba(0, 0, 0, .38);
  font-weight: 950;
  text-decoration: none;
}
.mobile-entry-bar {
  display: none;
}
body.has-floating-entry { padding-bottom: 76px; }

@media (max-width: 1080px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 66px;
    display: none;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(10, 17, 29, .98);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: block; }
  .site-menu {
    display: grid;
    align-items: stretch;
  }
  .site-menu a { justify-content: flex-start; }
  .header-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 10px;
  }
  .dg-hero,
  .dg-app-section,
  .dg-bonus-card,
  .dg-warning-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .dg-quick-grid,
  .dg-game-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dg-feature-strip,
  .dg-payment-grid,
  .dg-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dg-review-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .site-footer nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dg-games-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 66px;
    padding: 10px 14px;
  }
  .brand-symbol {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }
  .dg-section,
  .dg-hero,
  .page-shell {
    padding: 48px 14px;
  }
  .dg-hero {
    min-height: auto;
    padding-top: 44px;
  }
  .dg-hero h1 {
    font-size: clamp(36px, 11vw, 48px);
  }
  .dg-hero-text,
  .dg-section-head p,
  .dg-app-copy p,
  .dg-bonus-copy p {
    font-size: 16px;
  }
  .dg-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .dg-actions .dg-btn-ghost { grid-column: 1 / -1; }
  .dg-btn,
  .btn {
    width: 100%;
    min-height: 46px;
  }
  .dg-trust-tags {
    display: grid;
    grid-template-columns: 1fr;
  }
  .dg-quick-grid,
  .dg-game-category-grid,
  .dg-feature-strip,
  .dg-payment-grid,
  .dg-steps,
  .dg-bonus-checklist {
    grid-template-columns: 1fr;
  }
  .dg-access-card,
  .dg-game-category div,
  .dg-step,
  .dg-review,
  .dg-feature-strip div {
    padding: 24px;
  }
  .dg-bonus-card,
  .dg-warning-card,
  .dg-article,
  .page-content > section {
    padding: 24px;
  }
  .page-content .dg-link-list {
    grid-template-columns: 1fr;
  }
  .dg-games-card-grid {
    grid-template-columns: 1fr;
  }
  .dg-game-bg-card {
    min-height: 210px;
    padding: 20px;
  }
  .dg-review-track {
    display: flex;
    gap: 14px;
    margin-left: -14px;
    margin-right: -14px;
    padding: 0 14px 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .dg-review {
    min-width: 82vw;
    scroll-snap-align: start;
  }
  .site-footer {
    padding-bottom: 128px;
  }
  .site-footer nav { grid-template-columns: 1fr; }
  .floating-entry { display: none; }
  .mobile-entry-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    z-index: 95;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 22px;
    background: rgba(6, 10, 18, .94);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .42);
    backdrop-filter: blur(16px);
  }
  .mobile-entry-bar a {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #06120d;
    background: var(--green);
    font-weight: 950;
    text-decoration: none;
  }
  .mobile-entry-bar a:last-child {
    background: var(--gold);
  }
  body {
    padding-bottom: 84px;
  }
  body.has-floating-entry { padding-bottom: 84px; }
}
