:root {
  --bg: #f7f3ec;
  --bg-soft: #fbf8f3;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --surface-muted: rgba(117, 94, 64, 0.06);
  --border: rgba(58, 43, 24, 0.09);
  --text: #211b13;
  --text-secondary: #5e5549;
  --muted: #8b8378;
  --accent: #c68b2f;
  --accent-soft: #efe0c6;
  --accent-dark: #4d3520;
  --success-soft: #dcece3;
  --danger-soft: #f6dedd;
  --radius: 28px;
  --radius-sm: 18px;
  --radius-xs: 12px;
  --shadow-soft: 0 18px 48px rgba(39, 29, 18, 0.06);
  --shadow-card: 0 10px 28px rgba(39, 29, 18, 0.05);
  --transition: 0.24s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  overflow-x: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(198, 139, 47, 0.1), transparent 30%),
    radial-gradient(circle at bottom right, rgba(127, 165, 146, 0.08), transparent 28%),
    var(--bg);
}

a { color: var(--accent-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
img { max-width: 100%; display: block; }

.container { width: min(1160px, 90vw); margin: 0 auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 236, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(58, 43, 24, 0.06);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

/* Header: Tower Rush image logo (no frame — PNG includes its own art) */
.topbar .logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
  line-height: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  transition: filter 0.2s ease;
}

.topbar .logo:hover {
  filter: brightness(1.07);
}

.topbar .logo:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 12px;
}

.topbar .logo img {
  display: block;
  height: clamp(44px, 6.5vw, 56px);
  width: auto;
  max-width: min(320px, 72vw);
  object-fit: contain;
}

.menu-toggle {
  display: none;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--text);
  font: inherit;
  font-size: 0.9rem;
  cursor: pointer;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.nav a {
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}

.nav a:hover,
.nav a.active {
  color: var(--text);
  border-color: rgba(198, 139, 47, 0.3);
}

.breadcrumbs {
  padding-top: 18px;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero { padding: 46px 0 14px; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 52px;
  align-items: center;
}

.hero-box { padding: 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(198, 139, 47, 0.45);
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 4vw, 5rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  max-width: 100%;
}

.hero h1 strong { font-weight: 600; color: var(--accent); }

.hero p {
  max-width: 560px;
  margin-top: 20px;
  font-size: 1.08rem;
  color: var(--text-secondary);
}

.hero-media {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius);
}

.hero-media--square {
  width: auto;
  max-width: min(420px, 100%);
  margin-inline: auto;
  aspect-ratio: 1;
  border-radius: var(--radius);
}

.hero--mobile-app .hero-mobile-app-head {
  width: 100%;
  padding-inline: max(5vw, 16px);
  box-sizing: border-box;
}

.hero--mobile-app .hero-mobile-app-head-inner.container {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

.hero--mobile-app .hero-mobile-app-head h1 {
  max-width: none;
  width: 100%;
}

.hero--mobile-app .hero-mobile-app-after.container {
  width: 100%;
  max-width: min(760px, 100%);
  margin-top: 32px;
  margin-inline: auto;
  text-align: center;
}

.hero--mobile-app .hero-mobile-app-after > p:first-of-type {
  margin-top: 0;
}

@media (min-width: 768px) {
  .hero--mobile-app .hero-mobile-app-after > p:first-of-type {
    white-space: nowrap;
  }
}

.hero--mobile-app .hero-mobile-app-after p {
  max-width: none;
  margin-inline: auto;
}

.hero--mobile-app .hero-mobile-app-after .badge-strip {
  justify-content: center;
  margin-top: 18px;
}

.hero--mobile-app .hero-mobile-app-after .cta {
  justify-content: center;
  margin-top: 22px;
}

.hero--mobile-app .hero-media-wrap {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}

.hero--mobile-app .hero-media-wrap .hero-media {
  max-height: min(640px, 78vh);
  width: auto;
  max-width: min(720px, 100%);
  border-radius: var(--radius);
}

.badge-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.badge {
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 600;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

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

.btn-primary {
  background: var(--accent-dark);
  color: #fffaf5;
  box-shadow: var(--shadow-card);
}

.btn-primary:hover { color: #fffaf5; background: #362415; }

.btn-secondary {
  background: rgba(255, 255, 255, 0.56);
  color: var(--text);
  border-color: rgba(58, 43, 24, 0.08);
}

.btn-secondary:hover { color: var(--text); background: rgba(255, 255, 255, 0.9); }

.content { padding: 16px 0 64px; }

.panel,
.section-block {
  padding: 54px 0;
}

.panel + .panel,
.section-block + .section-block {
  border-top: 1px solid rgba(58, 43, 24, 0.08);
}

.panel h2,
.section-block h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.7rem, 1.4vw + 1.1rem, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.panel h3,
.section-block h3 {
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.25;
}

.article p {
  margin-top: 14px;
  max-width: 70ch;
  color: var(--text-secondary);
  font-size: 1rem;
}

.article strong { color: var(--text); }

.article .article-bullet-list {
  margin-top: 14px;
  margin-left: 1.2rem;
  max-width: 70ch;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.55;
}

.article .article-bullet-list li { margin-top: 10px; }

/* Game rules page — imagens em ../Pictures/rules-* */
.figure-rules {
  margin: 22px 0 0;
  max-width: 760px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--surface);
}

.figure-rules img {
  width: 100%;
  height: auto;
  display: block;
}

.figure-rules figcaption {
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.figure-rules.rules-game-buildings-banner {
  margin-bottom: 36px;
}

/* Arte vertical de logo / capa — limita altura na página de regras */
.figure-rules.figure-rules--promo-logo img {
  width: 100%;
  max-height: min(52vh, 520px);
  height: auto;
  object-fit: contain;
  object-position: center top;
}

.figure-rules.figure-rules--promo-logo figcaption {
  text-align: center;
}

.figure-rules.figure-rules--demo-infographic img {
  width: 100%;
  max-height: min(78vh, 720px);
  height: auto;
  object-fit: contain;
  object-position: center top;
}

.rules-thumb-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.rules-thumb {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--surface);
}

.rules-thumb img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: top center;
}

.rules-thumb figcaption {
  padding: 10px 12px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.rules-aside-visual {
  margin: 0 0 20px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.rules-aside-visual img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.rules-demo-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: 28px;
  align-items: center;
  margin-top: 18px;
}

.rules-demo-split .figure-rules {
  margin-top: 0;
  max-width: none;
}

@media (max-width: 900px) {
  .rules-thumb-row {
    grid-template-columns: 1fr;
  }

  .rules-demo-split {
    grid-template-columns: 1fr;
  }
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.95fr);
  gap: 52px;
  align-items: start;
}

.section-grid aside .panel {
  padding: 0;
}

.home-cta-panel {
  position: sticky;
  top: 102px;
}

.home-cta-panel .cta {
  flex-direction: column;
  align-items: flex-start;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 24px 0 12px;
}

.kpi {
  padding: 22px 10px;
  text-align: center;
  border-top: 1px solid rgba(58, 43, 24, 0.09);
}

.kpi b {
  display: block;
  margin-bottom: 6px;
  font-family: 'Fraunces', serif;
  font-size: 1.9rem;
  color: var(--accent-dark);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 26px;
}

.card {
  padding: 28px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.card img {
  width: auto;
  max-width: 100%;
  height: 146px;
  margin: 0 auto 18px;
  object-fit: contain;
  border-radius: 10px;
}

/*
 * How-to: img + object-fit:contain — вся картинка видна.
 * Скругление как у карточки (--radius) + clip-path, чтобы растр обрезался по дуге.
 */
.howto-cards .card-img-frame {
  position: relative;
  display: block;
  height: 146px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0 auto 18px;
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--surface);
}

.howto-cards .card .card-img-frame .howto-card-img {
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius);
  overflow: hidden;
  -webkit-clip-path: inset(0 round var(--radius));
  clip-path: inset(0 round var(--radius));
}

/* PNGs sem fundo (BUILD, CASH OUT): inteiro na moldura + cantos arredondados */
.howto-cards .card .card-img-frame .howto-card-img--build,
.howto-cards .card .card-img-frame .howto-card-img--cashout {
  object-fit: contain;
  border-radius: var(--radius);
  -webkit-clip-path: inset(0 round var(--radius));
  clip-path: inset(0 round var(--radius));
}

.howto-cards .card .card-img-frame .howto-card-img--temple {
  object-fit: cover;
  object-position: center;
}

.card h3 { margin-bottom: 10px; }

.card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.step {
  padding: 24px;
  background: rgba(255, 255, 255, 0.42);
  border-radius: var(--radius-sm);
}

.step h4 {
  margin-bottom: 10px;
  color: var(--accent-dark);
  font-size: 0.95rem;
  font-weight: 700;
}

.step p {
  color: var(--text-secondary);
  font-size: 0.93rem;
}

.keyword-list {
  margin-top: 16px;
  list-style: none;
}

.keyword-list li {
  padding: 14px 0;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(58, 43, 24, 0.08);
}

.table-wrap {
  margin-top: 22px;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

th, td {
  padding: 14px 10px;
  text-align: left;
}

th {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(58, 43, 24, 0.12);
}

td {
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(58, 43, 24, 0.08);
}

/* ── Where to Play ── */
.where-to-play {
  padding: 54px 0;
  border-top: 1px solid rgba(58, 43, 24, 0.08);
}

.where-to-play h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.7rem, 1.4vw + 1.1rem, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.wtp-subtitle {
  margin-top: 10px;
  color: var(--text-secondary);
  font-size: 1rem;
}

.casino-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  align-items: stretch;
  gap: 22px;
  margin-top: 28px;
}

.casino-card {
  padding: 28px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.casino-card--with-brand {
  padding: 0;
  overflow: hidden;
  min-height: 0;
  height: 100%;
}

.casino-card--featured {
  border: 1.5px solid rgba(198, 139, 47, 0.35);
  background: var(--surface-strong);
}

.casino-card-brand {
  width: 100%;
  box-sizing: border-box;
  height: 132px;
  min-height: 132px;
  flex-shrink: 0;
  padding: 14px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.75) 0%, rgba(251, 248, 243, 0.4) 100%);
  border-bottom: 1px solid rgba(58, 43, 24, 0.08);
}

.casino-card-brand .casino-logo {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.casino-card-content {
  flex: 1 1 auto;
  padding: 22px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 0;
}

.casino-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  min-width: 0;
}

.casino-name {
  font-family: 'Fraunces', serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.casino-badge-best {
  padding: 5px 13px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.casino-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.casino-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.96rem;
  font-weight: 500;
}

.feat-icon {
  flex: none;
  font-size: 1rem;
}

.wtp-cta-stack {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-self: stretch;
  width: 100%;
}

.wtp-cta-stack .wtp-cta {
  margin-top: 0;
}

.wtp-cta {
  align-self: stretch;
  margin-top: auto;
  text-align: center;
}

/* Onde jogar: única ficha 1Win em faixa horizontal */
.where-to-play .casino-list {
  grid-template-columns: 1fr;
}

.where-to-play .casino-card--featured.casino-card--with-brand {
  flex-direction: row;
  align-items: stretch;
}

.where-to-play .casino-card--featured .casino-card-brand {
  width: clamp(160px, 26%, 260px);
  min-width: 140px;
  height: auto;
  min-height: 0;
  align-self: stretch;
  border-bottom: none;
  border-right: 1px solid rgba(58, 43, 24, 0.08);
  flex-shrink: 0;
}

.where-to-play .casino-card--featured .casino-card-brand .casino-logo {
  max-width: 200px;
  width: 100%;
}

.where-to-play .casino-card--featured .casino-card-content {
  flex: 1;
  min-width: 0;
}

.where-to-play .bonus-box {
  --bonus-box-bg: #21212e;
  --bonus-box-green: #48bb78;
  --bonus-box-text: #ffffff;
  --bonus-box-muted: #e2e8f0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(26px, 4vw, 38px) clamp(22px, 3.5vw, 40px);
  border-radius: 14px;
  background: var(--bonus-box-bg);
  border: none;
  box-shadow: 0 12px 32px rgba(15, 15, 28, 0.25);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.where-to-play .bonus-box-title {
  margin: 0 0 6px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--bonus-box-text);
  line-height: 1.3;
}

.where-to-play .bonus-box-value {
  margin: 0;
  font-size: clamp(2.5rem, 5.5vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--bonus-box-green);
}

.where-to-play .bonus-box-sub {
  margin: 6px 0 16px;
  font-size: 1rem;
  font-weight: 400;
  color: var(--bonus-box-muted);
  line-height: 1.4;
}

.where-to-play .bonus-box-promo-note {
  margin: 0 0 14px;
  max-width: 28rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--bonus-box-muted);
}

.where-to-play .bonus-box-promo-note strong {
  color: var(--bonus-box-text);
  font-weight: 700;
}

.where-to-play .bonus-box-code-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  margin: 0 0 22px;
}

.where-to-play .bonus-box-code {
  font-family: ui-monospace, "Cascadia Code", "Segoe UI Mono", monospace;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 9px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--bonus-box-text);
  border: 1px solid rgba(72, 187, 120, 0.4);
}

.where-to-play .bonus-box-copy-btn {
  cursor: pointer;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 8px;
  border: 2px solid var(--bonus-box-green);
  background: transparent;
  color: var(--bonus-box-green);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.where-to-play .bonus-box-copy-btn:hover {
  background: rgba(72, 187, 120, 0.14);
  color: #5fd08e;
  border-color: #5fd08e;
}

.where-to-play .bonus-box-copy-btn:focus-visible {
  outline: 2px solid var(--bonus-box-green);
  outline-offset: 3px;
}

.where-to-play .bonus-box-copy-btn.is-copied {
  background: var(--bonus-box-green);
  color: var(--bonus-box-bg);
  border-color: var(--bonus-box-green);
}

.where-to-play .bonus-box-sr-status {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.where-to-play .bonus-box-features {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 28px;
  margin: 0;
  padding: 0;
}

.where-to-play .bonus-box-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  color: var(--bonus-box-text);
  line-height: 1.2;
}

.where-to-play .bonus-box-icon {
  flex-shrink: 0;
  color: var(--bonus-box-green);
  display: block;
}

.where-to-play .bonus-box-icon--percent {
  overflow: visible;
}

.where-to-play .casino-card--featured .casino-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
}

.where-to-play .casino-card--featured .wtp-cta-stack {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
}

.where-to-play .casino-card--featured .wtp-cta-stack .btn-play-external,
.where-to-play .casino-card--featured .wtp-cta-stack .wtp-cta {
  flex: 1 1 200px;
}

/* Game-style CTA: gold plate, hazard stripes, rivets (Tower Rush–like BUILD control) */
.btn-play-external {
  position: relative;
  align-self: stretch;
  justify-content: center;
  min-height: 58px;
  padding: 16px 52px;
  border-radius: 11px;
  border: 2px solid #1e1810;
  font-size: 1.35rem;
  font-weight: 400;
  font-family: 'Archivo Black', 'Impact', 'Arial Black', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.55),
    0 2px 4px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  isolation: isolate;
  background-color: #b97208;
  background-image:
    repeating-linear-gradient(
      45deg,
      #0d0d0d 0 5px,
      #e6a818 5px 10px
    ),
    repeating-linear-gradient(
      45deg,
      #0d0d0d 0 5px,
      #e6a818 5px 10px
    ),
    radial-gradient(ellipse 125% 210% at 50% 18%, #fff9e6 0%, #ffe566 14%, #f4b82a 42%, #d0890a 72%, #8f5206 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, transparent 42%, rgba(0, 0, 0, 0.12) 100%);
  background-size:
    100% 10px,
    100% 10px,
    100% 100%,
    100% 100%;
  background-position:
    top center,
    bottom center,
    center,
    center;
  background-repeat: repeat-x, repeat-x, no-repeat, no-repeat;
  box-shadow:
    0 3px 0 #120e0a,
    0 10px 28px rgba(20, 14, 8, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-play-external::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 9px;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  z-index: 0;
}

.btn-play-external__label {
  position: relative;
  z-index: 2;
}

.btn-play-external__screw {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 15px;
  height: 15px;
  margin-top: -7.5px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #e8e8e8 0%, #9a9a9a 45%, #4a4a4a 78%, #2a2a2a 100%);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.55),
    inset 0 -2px 3px rgba(0, 0, 0, 0.45),
    0 1px 2px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.btn-play-external__screw::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 2px;
  margin: -1px 0 0 -4.5px;
  border-radius: 1px;
  background: linear-gradient(180deg, #1a1a1a, #0a0a0a);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-play-external__screw:first-of-type {
  left: 12px;
}

.btn-play-external__screw:last-of-type {
  right: 12px;
}

.btn-play-external:hover {
  color: #fff;
  filter: brightness(1.06) saturate(1.05);
  box-shadow:
    0 4px 0 #120e0a,
    0 14px 34px rgba(20, 14, 8, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.btn-play-external:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

@media (max-width: 720px) {
  .casino-list {
    grid-template-columns: 1fr;
  }
  .where-to-play {
    padding: 40px 0;
  }

  .where-to-play .casino-card--featured.casino-card--with-brand {
    flex-direction: column;
  }

  .where-to-play .casino-card--featured .casino-card-brand {
    width: 100%;
    min-width: 0;
    height: 132px;
    min-height: 132px;
    border-right: none;
    border-bottom: 1px solid rgba(58, 43, 24, 0.08);
  }

  .where-to-play .casino-card--featured .casino-card-brand .casino-logo {
    max-width: 100%;
  }

  .where-to-play .casino-card--featured .casino-features {
    grid-template-columns: 1fr;
  }

  .where-to-play .casino-card--featured .wtp-cta-stack {
    flex-direction: column;
  }

  .where-to-play .casino-card--featured .wtp-cta-stack .btn-play-external,
  .where-to-play .casino-card--featured .wtp-cta-stack .wtp-cta {
    flex: 1 1 auto;
  }
}

/* ── Details FAQ ── */
.details-faq {
  margin-top: 26px;
}

.details-faq details {
  border-top: 1px solid rgba(58, 43, 24, 0.08);
  padding: 0;
}

.details-faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  font-size: 1rem;
  font-weight: 700;
}

.details-faq summary::-webkit-details-marker { display: none; }

.details-faq summary::after {
  content: "+";
  flex: none;
  color: var(--muted);
  font-size: 1.25rem;
  font-weight: 400;
}

.details-faq details[open] summary::after { content: "−"; color: var(--accent); }

.details-faq p {
  margin: 0 0 18px;
  color: var(--text-secondary);
}

/* Mobile app page — iOS block, requisitos */
.ios-download-section .ios-download-grid {
  display: grid;
  gap: 36px;
  align-items: center;
  grid-template-columns: 1fr;
}

.ios-download-section .ios-download-visual {
  order: 1;
}

.ios-download-section .ios-download-copy {
  order: 2;
  scroll-margin-top: 5.5rem;
}

.ios-download-section .ios-download-img {
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.ios-download-section .ios-download-copy > p {
  margin-top: 14px;
  color: var(--text-secondary);
  max-width: 56ch;
}

.ios-download-section .ios-download-copy .cta {
  margin-top: 20px;
}

.ios-download-section .ios-pwa-steps {
  margin: 14px 0 0;
  padding-left: 1.25rem;
  color: var(--text-secondary);
  max-width: 56ch;
  line-height: 1.55;
}

.ios-download-section .ios-pwa-steps li {
  margin-top: 10px;
}

.ios-download-section .ios-install-heading {
  margin-top: 28px;
}

.ios-download-section .ios-pwa-label {
  margin-top: 16px;
  margin-bottom: 8px;
}

.sys-req-section h2 {
  text-align: center;
  margin-bottom: 8px;
}

.sys-req-section .cards.cards--pair {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.req-card ul {
  margin: 14px 0 0;
  padding-left: 1.2rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.req-card ul li {
  margin-top: 8px;
}

.req-card .req-card-foot {
  margin-top: 18px;
  font-size: 0.92rem;
}

@media (min-width: 768px) {
  .ios-download-section .ios-download-grid {
    grid-template-columns: minmax(260px, 1fr) minmax(0, 1.15fr);
    gap: 48px;
  }

  .ios-download-section .ios-download-visual {
    order: 1;
  }

  .ios-download-section .ios-download-copy {
    order: 2;
  }
}

@media (max-width: 720px) {
  .sys-req-section .cards.cards--pair {
    grid-template-columns: 1fr;
  }
}

.demo-game-container {
  margin-top: 24px;
  --demo-viewport-height: min(82vh, 980px);
}

.game-placeholder {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #f1ebe1;
  box-shadow: var(--shadow-soft);
  width: 100%;
  height: var(--demo-viewport-height);
}

.game-placeholder img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 248, 239, 0.38);
  backdrop-filter: blur(5px);
}

.btn-play-demo { min-width: 160px; }

/* ── Demo review band (Key Features) ── */
.py-5 {
  padding-top: clamp(2.5rem, 5vw, 3.25rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.25rem);
}

.demo-review {
  width: 100%;
  border-top: 1px solid rgba(58, 43, 24, 0.08);
  border-bottom: 1px solid rgba(58, 43, 24, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(251, 248, 243, 0.92) 100%),
    var(--surface-muted);
}

.demo-review-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1.05fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.demo-review-intro .section-label {
  margin-bottom: 12px;
}

.demo-review h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.7rem, 1.4vw + 1.1rem, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
}

.demo-review-lead {
  margin-top: 14px;
  max-width: 42ch;
  color: var(--text-secondary);
  font-size: 1rem;
}

.demo-review-features-title {
  margin-bottom: 18px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.demo-review-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.demo-review-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: var(--surface-strong);
  border: 1px solid rgba(58, 43, 24, 0.06);
  box-shadow: var(--shadow-card);
  color: var(--text-secondary);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.45;
}

.demo-review-check {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5em;
  height: 1.5em;
  margin-top: 0.1em;
  border-radius: 50%;
  background: var(--success-soft);
  color: #2d6a4a;
  font-size: 0.75em;
  font-weight: 800;
  line-height: 1;
}

@media (max-width: 900px) {
  .demo-review-inner {
    grid-template-columns: 1fr;
  }

  .demo-review-lead {
    max-width: none;
  }
}

.demo-iframe-wrapper {
  position: relative;
  width: 100%;
  height: var(--demo-viewport-height);
  margin-top: 12px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  background: #000;
}

.demo-iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.demo-iframe-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.62);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.footer {
  margin-top: 40px;
  padding: 42px 0 52px;
  border-top: 1px solid rgba(58, 43, 24, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 34px;
}

.footer-grid h4 {
  margin-bottom: 12px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-grid p,
.footer-grid li,
.footer-grid a {
  color: var(--text-secondary);
  font-size: 0.93rem;
}

.footer-grid ul {
  list-style: none;
}

.footer-grid li + li {
  margin-top: 7px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.88rem;
}

.age-box {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--danger-soft);
  color: #8f4c46;
}

::selection {
  background: rgba(198, 139, 47, 0.18);
  color: var(--text);
}

@media (max-width: 980px) {
  .hero-grid,
  .section-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr 1fr;
  }

  .steps,
  .kpi-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    max-height: 320px;
    margin-inline: auto;
  }

  .hero--mobile-app .hero-media-wrap .hero-media {
    max-height: min(520px, 62vh);
  }

  .hero--mobile-app .hero-media-wrap {
    margin-top: 28px;
  }

  .home-cta-panel {
    position: static;
  }
}

@media (max-width: 720px) {
  .container { width: 92vw; }
  .menu-toggle { display: inline-flex; }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(58, 43, 24, 0.08);
  }

  .nav.open { display: flex; }

  .topbar-inner { flex-wrap: wrap; }
  .hero { padding-top: 28px; }
  .hero h1 { font-size: 2.1rem; max-width: none; }
  .hero p { font-size: 1rem; }
  .cards { grid-template-columns: 1fr; }
  .panel, .section-block { padding: 40px 0; }
  .badge-strip { gap: 8px; }
  .badge { white-space: normal; }
  .demo-iframe-wrapper { height: min(88vh, 920px); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
