/* DmgWin SEO Landing — dark purple app-matched theme */

:root {
  --bg: #0f0f12;
  --bg-elevated: #14141a;
  --surface: #1a1a22;
  --surface-2: #22222c;
  --purple: #9b7ebd;
  --purple-strong: #8b6bb8;
  --purple-soft: #b9a3d4;
  --purple-glow: rgba(155, 126, 189, 0.35);
  --text: #ffffff;
  --muted: #a0a0b0;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --container: 1100px;
  --header-h: 64px;
  --sticky-cta-h: 64px;
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  --transition: 0.22s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(155, 126, 189, 0.22), transparent),
    radial-gradient(ellipse 40% 30% at 100% 40%, rgba(139, 107, 184, 0.08), transparent);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--sticky-cta-h) + env(safe-area-inset-bottom, 0px) + 8px);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--purple-soft);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--text);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--purple);
  color: #fff;
  padding: 10px 16px;
  z-index: 10000;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--purple);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
  overflow: visible;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--header-h);
  min-height: var(--header-h);
  max-height: var(--header-h);
  padding: 0;
  overflow: visible;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  line-height: 0;
  flex-shrink: 0;
  max-width: min(260px, 54vw);
  position: relative;
  z-index: 2;
}

.logo:hover {
  color: #fff;
  opacity: 0.96;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 800;
}

.logo-img {
  height: 78px;
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.header-ctas .btn-outline:hover {
  background: #f7f2fc;
  color: var(--purple-strong);
}

.header-ctas .btn-ghost {
  border-color: rgba(255, 255, 255, 0.7);
}

.nav-desktop {
  display: none !important;
}

.nav-desktop a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
}

.nav-desktop a:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.header-ctas {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 22px;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition), border-color var(--transition), color var(--transition);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--purple-strong);
  color: #fff;
  border-color: var(--purple-strong);
  box-shadow: 0 0 0 0 var(--purple-glow);
}

.btn-primary:hover {
  background: #9d7ec6;
  border-color: #9d7ec6;
  color: #fff;
  box-shadow: 0 0 24px var(--purple-glow);
}

.btn-outline {
  background: #fff;
  color: var(--purple-strong);
  border-color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.92);
  color: var(--purple-strong);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn-sm {
  min-height: 38px;
  padding: 8px 14px;
  font-size: 0.85rem;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  cursor: pointer;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 0 16px 16px;
  background: var(--purple-strong);
}

.nav-mobile.is-open {
  display: flex;
}

.nav-mobile a {
  color: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  font-weight: 500;
}

.nav-mobile a:hover {
  background: rgba(255, 255, 255, 0.12);
}

@media (min-width: 900px) {
  .menu-toggle {
    display: none;
  }
}

/* keep Free Bonus visible on all screen sizes */

/* ——— Hero ——— */
.hero {
  padding: 44px 0 8px;
  animation: fadeUp 0.65s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-inner {
  text-align: left;
  max-width: 760px;
  margin: 0 auto;
}

@media (max-width: 700px) {
  .hero-inner {
    text-align: center;
    max-width: 100%;
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.2vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.18;
  margin: 0 0 14px;
}

.hero-sub {
  max-width: 620px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

@media (max-width: 700px) {
  .hero-sub {
    margin-inline: auto;
  }
}

.hero-cta-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

@media (max-width: 700px) {
  .hero-cta-pair {
    justify-content: center;
  }
}

.hero-cta-pair .btn-primary {
  animation: softPulse 3s ease-in-out infinite;
}

@keyframes softPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 var(--purple-glow);
  }
  50% {
    box-shadow: 0 0 22px 2px var(--purple-glow);
  }
}

.hero-banner {
  display: block;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  border: none;
  box-shadow: none;
  transition: transform var(--transition), box-shadow var(--transition);
  line-height: 0;
}

.hero-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
  color: inherit;
}

.hero-banner img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 14px;
}

.agent-banner {
  display: block;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: none;
  box-shadow: none;
  transition: transform var(--transition), box-shadow var(--transition);
  max-width: 100%;
  height: auto;
  align-self: start;
  line-height: 0;
}

.agent-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
  color: inherit;
}

.agent-banner img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  object-position: top center;
  display: block;
  border-radius: 14px;
  background: transparent;
}

.trust-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 8px 0 24px;
  align-items: start;
}

@media (min-width: 700px) {
  .trust-strip {
    grid-template-columns: 1.35fr 1fr;
    align-items: stretch;
  }

  .agent-banner {
    height: 100%;
    align-self: stretch;
  }

  .agent-banner img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    max-height: 360px;
    object-fit: contain;
    object-position: top center;
    border-radius: 14px;
  }
}

/* ——— Content ——— */
.prose {
  padding: 28px 0 48px;
}

.welcome-line {
  margin: 0 0 14px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(155, 126, 189, 0.12);
  border: 1px solid rgba(155, 126, 189, 0.28);
  color: var(--purple-soft);
  font-size: 0.95rem;
  font-weight: 600;
}

.prose > p.lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 72ch;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 40px 0 14px;
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.prose h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--purple-soft);
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.prose p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.88);
}

.prose ul,
.prose ol {
  margin: 0 0 18px;
  padding-left: 1.25rem;
  color: rgba(255, 255, 255, 0.88);
}

.prose li {
  margin-bottom: 8px;
}

.prose li strong {
  color: #fff;
}

.prose a {
  font-weight: 600;
}

/* Non-clickable keyword highlights (ex-links) */
.hl-text {
  color: var(--purple-soft);
  font-weight: 600;
}

.prose .hl-text,
.breadcrumb .hl-text,
.site-footer .hl-text {
  color: var(--purple-soft);
  font-weight: 600;
}

/* TOC */
.toc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin: 0 0 32px;
}

.toc-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.toc-toggle {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  border-radius: 8px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.toc nav ul {
  margin: 0;
  padding-left: 1.1rem;
  list-style: decimal;
}

.toc nav li {
  margin-bottom: 6px;
}

.toc nav a {
  color: var(--purple-soft);
  font-size: 0.95rem;
}

.toc nav ul ul {
  list-style: disc;
  margin-top: 6px;
}

.toc.is-collapsed nav {
  display: none;
}

/* Agency / trust strip — layout defined with .agent-banner above */

.feature-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  height: 100%;
}

.feature-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
}

.feature-tile strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.feature-tile span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Table */
.table-wrap {
  overflow-x: auto;
  margin: 18px 0 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

table.games-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  background: var(--surface);
}

table.games-table th,
table.games-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}

table.games-table th {
  background: var(--surface-2);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--purple-soft);
}

table.games-table tr:last-child td {
  border-bottom: 0;
}

table.games-table a {
  font-weight: 700;
  color: var(--purple);
}

/* FAQ */
.faqs {
  margin: 48px 0 24px;
}

.faqs h2 {
  text-align: center;
  margin-bottom: 24px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.is-open {
  border-color: rgba(155, 126, 189, 0.45);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  background: transparent;
  border: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(155, 126, 189, 0.2);
  color: var(--purple-soft);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  transition: transform 0.25s ease, background var(--transition);
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: var(--purple);
  color: #fff;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-inner p {
  margin: 0;
  padding: 0 18px 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  padding: 36px 0 28px;
  margin-top: 20px;
}

.footer-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  margin: 0 0 8px;
}

.footer-brand span {
  color: var(--purple-soft);
}

.site-footer p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 10px;
}

.site-footer h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin: 0 0 10px;
  color: #fff;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 8px;
}

.site-footer a {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer a:hover {
  color: var(--purple-soft);
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.82rem;
}

.disclaimer {
  font-size: 0.8rem;
  color: #7a7a8a;
  margin-top: 12px;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  background: rgba(26, 26, 34, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(155, 126, 189, 0.35);
  box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.35);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.sticky-cta.is-hidden {
  transform: translateY(110%);
}

.sticky-cta-inner {
  width: min(100%, var(--container));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sticky-cta p {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}

.sticky-cta .btn {
  background: var(--purple-strong);
  color: #fff;
  border-color: var(--purple-strong);
  min-height: 42px;
  white-space: nowrap;
}

.sticky-cta .btn:hover {
  background: #9d7ec6;
  color: #fff;
}

/* Misc */
.inline-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

/* Content SEO images (reference pattern) */
.content-figure {
  margin: 18px auto 24px;
  text-align: center;
  background: transparent;
  border: none;
  box-shadow: none;
}

.content-figure img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  border: none;
  box-shadow: none;
  display: block;
  margin: 0 auto;
  background: transparent;
}

.play-banner {
  display: block;
  width: 100%;
  max-width: 640px;
  margin: 12px auto 20px;
  border: none;
  box-shadow: none;
  background: transparent;
  border-radius: 14px;
  overflow: hidden;
  line-height: 0;
}

.play-banner:hover {
  color: inherit;
}

.play-banner img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  object-position: center;
  display: block;
  border: none;
  box-shadow: none;
  background: transparent;
  border-radius: 14px;
}

.breadcrumb {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 24px 0 12px;
}

.breadcrumb a {
  color: var(--purple-soft);
}

.page-content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}

/* Download CTA block */
.download-section {
  margin: 40px 0 20px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.download-section h2 {
  margin-top: 0;
  text-align: center;
}

.download-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 240px;
  margin-top: 8px;
  padding: 16px 28px;
  border-radius: 12px;
  background: var(--purple-strong);
  color: #fff !important;
  text-decoration: none;
  box-shadow: 0 0 24px var(--purple-glow);
  transition: transform var(--transition), background var(--transition);
}

.download-btn:hover {
  transform: translateY(-2px);
  background: #9d7ec6;
  color: #fff !important;
}

.download-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
}

.download-size {
  font-size: 0.8rem;
  opacity: 0.9;
}

/* Floating signup bonus — desktop only to reduce mobile clutter */
.signup-bonus-float {
  position: fixed;
  bottom: calc(var(--sticky-cta-h) + 16px + env(safe-area-inset-bottom, 0px));
  left: 16px;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: var(--purple-strong);
  color: #fff !important;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  animation: signup-bonus-pulse 2.4s ease-out infinite;
}

@media (min-width: 900px) {
  .signup-bonus-float {
    display: inline-flex;
  }
}

.signup-bonus-float:hover,
.signup-bonus-float:focus {
  background: #9d7ec6;
  color: #fff !important;
  transform: translateY(-2px);
}

.signup-bonus-text {
  white-space: nowrap;
}

@keyframes signup-bonus-pulse {
  0% {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), 0 0 0 0 var(--purple-glow);
  }
  70% {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), 0 0 0 14px transparent;
  }
  100% {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), 0 0 0 0 transparent;
  }
}

@media (prefers-reduced-motion: reduce) {
  .signup-bonus-float,
  .hero-cta-pair .btn-primary {
    animation: none;
  }
}

/* Footer legal row like reference */
.footer-legal-nav {
  margin-top: 22px;
}

.footer-legal-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 18px;
}

.footer-legal-menu li {
  margin: 0;
  position: relative;
}

.footer-legal-menu li + li::before {
  content: "·";
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.45);
  font-weight: 700;
}

.footer-legal-menu a {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-legal-menu a:hover {
  color: #fff !important;
  text-decoration: underline;
}

.sticky-text-short {
  display: none;
}

.menu-toggle {
  display: none !important;
}

/* ========== FULL MOBILE RESPONSIVE ========== */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
}

.hero-inner {
  max-width: min(760px, 100%);
  width: 100%;
}

.hero-banner,
.content-figure,
.table-wrap,
.toc,
.download-section,
.agency-card,
.faq-item {
  max-width: 100%;
}

.table-wrap {
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

@media (max-width: 900px) {
  :root {
    --header-h: 58px;
    --sticky-cta-h: 60px;
  }

  body {
    background-attachment: scroll;
    font-size: 15.5px;
    padding-bottom: calc(var(--sticky-cta-h) + env(safe-area-inset-bottom, 0px) + 12px);
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .header-inner {
    gap: 10px;
    height: var(--header-h);
    min-height: var(--header-h);
    max-height: var(--header-h);
    padding: 0;
  }

  .logo {
    max-width: min(210px, 50vw);
  }

  .logo-img {
    height: 64px;
  }

  .header-ctas {
    gap: 6px;
    flex-shrink: 0;
  }

  .header-ctas .btn-sm {
    min-height: 36px;
    padding: 6px 12px;
    font-size: 0.78rem;
    border-radius: 10px;
  }

  .hero {
    padding: 22px 0 4px;
  }

  .hero h1 {
    font-size: clamp(1.45rem, 6.2vw, 1.85rem);
    margin-bottom: 10px;
  }

  .hero-sub {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 16px;
  }

  .hero-cta-pair {
    gap: 10px;
    margin-bottom: 16px;
  }

  .hero-cta-pair .btn {
    flex: 1 1 calc(50% - 10px);
    min-width: 0;
    min-height: 46px;
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .hero-banner {
    max-width: 100%;
    border-radius: 12px;
    margin: 0 auto;
  }

  .hero-banner img {
    max-height: 170px;
    border-radius: 12px;
  }

  .hero-banner:hover,
  .agent-banner:hover {
    transform: none;
  }

  .agent-banner {
    margin: 0;
    border-radius: 12px;
    height: auto;
  }

  .agent-banner img {
    height: auto;
    min-height: 0;
    max-height: 240px;
    object-fit: contain;
    object-position: top center;
    border-radius: 12px;
  }

  .trust-strip {
    margin-bottom: 16px;
    gap: 10px;
    align-items: start;
  }

  .prose {
    padding: 18px 0 36px;
  }

  .welcome-line {
    font-size: 0.88rem;
    padding: 10px 12px;
    line-height: 1.45;
  }

  .prose > p.lead {
    font-size: 0.98rem;
  }

  .prose h2 {
    margin: 28px 0 12px;
    font-size: clamp(1.2rem, 5vw, 1.45rem);
  }

  .prose h3 {
    font-size: 1.05rem;
    margin: 20px 0 8px;
  }

  .toc {
    padding: 14px 14px;
    margin-bottom: 22px;
  }

  .toc nav a {
    font-size: 0.9rem;
    word-break: break-word;
  }

  .trust-strip {
    margin-bottom: 20px;
  }

  .agency-card {
    padding: 16px;
  }

  .agency-card .big {
    font-size: 1.55rem;
  }

  .feature-tile {
    padding: 12px;
  }

  .feature-tile strong {
    font-size: 0.85rem;
  }

  .feature-tile span {
    font-size: 0.75rem;
  }

  table.games-table {
    min-width: 480px;
  }

  table.games-table th,
  table.games-table td {
    padding: 10px 10px;
    font-size: 0.82rem;
  }

  .inline-cta-row {
    flex-direction: column;
  }

  .inline-cta-row .btn {
    width: 100%;
  }

  .faq-question {
    padding: 14px;
    font-size: 0.92rem;
    align-items: flex-start;
  }

  .faq-answer-inner p {
    padding: 0 14px 14px;
    font-size: 0.9rem;
  }

  .download-section {
    padding: 18px 14px;
    margin: 28px 0 16px;
  }

  .download-btn {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .site-footer {
    padding: 28px 0 22px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .footer-legal-menu {
    gap: 8px 14px;
    justify-content: flex-start;
  }

  .footer-legal-menu li + li::before {
    display: none;
  }

  .sticky-cta {
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom, 0px));
  }

  .sticky-cta-inner {
    gap: 10px;
  }

  .sticky-cta p {
    font-size: 0.85rem;
    line-height: 1.3;
  }

  .sticky-text-full {
    display: none;
  }

  .sticky-text-short {
    display: inline;
  }

  .sticky-cta .btn {
    flex-shrink: 0;
    min-height: 40px;
    padding: 8px 14px;
    font-size: 0.82rem;
  }

  .content-figure {
    margin: 14px auto 18px;
  }

  .content-figure img {
    border-radius: 12px;
    border: none;
  }

  .play-banner {
    width: 100%;
    max-width: 100%;
    margin: 10px auto 16px;
    border-radius: 12px;
  }

  .play-banner img {
    max-height: 170px;
    border-radius: 12px;
  }

  .page-content {
    padding-bottom: 24px;
  }

  .page-content h1 {
    font-size: clamp(1.4rem, 6vw, 1.85rem);
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 20px, var(--container));
  }

  .header-ctas .btn-sm {
    padding: 6px 10px;
    font-size: 0.74rem;
  }

  .hero-cta-pair {
    flex-direction: column;
  }

  .hero-cta-pair .btn {
    flex: 1 1 100%;
    width: 100%;
  }

  .hero-banner img,
  .play-banner img {
    max-height: 148px;
    border-radius: 10px;
  }

  .hero-banner,
  .play-banner,
  .agent-banner {
    border-radius: 10px;
  }

  .agent-banner img {
    max-height: 200px;
    object-fit: contain;
    object-position: top center;
    border-radius: 10px;
  }

  .feature-tiles {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  table.games-table {
    min-width: 420px;
  }

  .btn:hover,
  .hero-banner:hover,
  .download-btn:hover {
    transform: none;
  }
}

@media (max-width: 360px) {
  .logo {
    max-width: min(170px, 46vw);
  }

  .logo-img {
    height: 54px;
  }

  .header-ctas .btn-outline {
    display: none;
  }

  .hero h1 {
    font-size: 1.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero,
  .hero-cta-pair .btn-primary,
  .signup-bonus-float {
    animation: none !important;
  }
}
