﻿/* bet119 — dist/app.css */
:root {
  --bg-deep: #06090d;
  --bg-arena: #0a1018;
  --bg-panel: #0f1722;
  --bg-line: rgba(20, 241, 197, 0.18);
  --teal: #14f1c5;
  --amber: #f5a524;
  --amber-soft: #ffc86b;
  --ink: #e8eef4;
  --muted: #8a9ba8;
  --radius: 4px;
  --max: 1120px;
  --gutter: 1rem;
  --header-h: 72px;
  --font-display: "Oxanium", "Segoe UI", sans-serif;
  --font-body: "Sora", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(20, 241, 197, 0.12), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(245, 165, 36, 0.1), transparent 50%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-arena) 40%, #05080c 100%);
  background-attachment: fixed;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

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

a {
  color: var(--teal);
  text-decoration: none;
}

a:hover {
  color: var(--amber-soft);
}

/* Shared content width = header width (centered, gutters inside) */
.wrap {
  box-sizing: border-box;
  width: 100%;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  border-bottom: 1px solid var(--bg-line);
  background: rgba(6, 9, 13, 0.82);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  color: var(--ink);
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hamburger-menu-toggle {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--bg-line);
  border-radius: var(--radius);
  background: var(--bg-panel);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.hamburger-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--teal);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}

.hamburger-menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* —— Nav —— */
.hamburger-nav {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  z-index: 99;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  border-bottom: 1px solid var(--bg-line);
  background: linear-gradient(180deg, #0b121b 0%, #081018 100%);
  transition: max-height 0.45s var(--ease), opacity 0.3s;
}

.hamburger-nav.active {
  max-height: 70vh;
  opacity: 1;
  pointer-events: auto;
  overflow-y: auto;
  scrollbar-width: none;
}

.hamburger-nav.active::-webkit-scrollbar {
  display: none;
}

.mobile-nav-content {
  box-sizing: border-box;
  width: 100%;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding: 1.25rem var(--gutter) 1.75rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.mobile-nav-section {
  display: contents;
}

.mobile-nav-section a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.65rem 0.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid rgba(20, 241, 197, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(20, 241, 197, 0.08), transparent 55%),
    var(--bg-panel);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.mobile-nav-section a:hover {
  border-color: var(--amber);
  color: var(--amber-soft);
  transform: translateY(-1px);
}

@media (min-width: 720px) {
  .mobile-nav-content {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.15rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}

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

.btn-ghost {
  color: var(--ink);
  border-color: rgba(232, 238, 244, 0.25);
  background: transparent;
}

.btn-ghost:hover {
  color: var(--teal);
  border-color: var(--teal);
}

.btn-teal {
  color: #041310;
  background: linear-gradient(135deg, var(--teal), #0fc9a5);
}

.btn-teal:hover {
  color: #041310;
  box-shadow: 0 8px 28px rgba(20, 241, 197, 0.25);
}

.btn-amber {
  color: #1a1205;
  background: linear-gradient(135deg, var(--amber), #e08f14);
}

.btn-amber:hover {
  color: #1a1205;
  box-shadow: 0 8px 28px rgba(245, 165, 36, 0.28);
}

.btn-lg {
  padding: 0.95rem 1.5rem;
  font-size: 0.95rem;
}

/* —— Hero —— */
.arena-hero {
  position: relative;
  padding: 2.5rem 0 0;
  isolation: isolate;
  animation: rise-in 0.8s var(--ease) both;
}

.arena-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 55%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(700px 280px at 15% 0%, rgba(20, 241, 197, 0.14), transparent 70%),
    radial-gradient(500px 240px at 90% 10%, rgba(245, 165, 36, 0.1), transparent 65%);
}

.arena-hero__top {
  padding-bottom: 2rem;
}

.arena-hero__brand {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 9vw, 4.8rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(120deg, #fff 20%, var(--teal) 55%, var(--amber) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.arena-hero h1 {
  margin: 0 0 1.15rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.8vw, 1.7rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.arena-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.arena-hero__grid {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

@media (min-width: 900px) {
  .arena-hero__grid {
    grid-template-columns: 1.35fr 0.85fr;
    gap: 2.5rem;
  }
}

.arena-hero__copy {
  display: grid;
  gap: 1rem;
}

.arena-hero__copy p {
  margin: 0;
  padding: 1rem 1.1rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
  border-left: 2px solid var(--teal);
  background: linear-gradient(90deg, rgba(20, 241, 197, 0.06), transparent 80%);
}

.arena-hero__aside {
  margin: 0;
  padding: 1.1rem 1.15rem;
  list-style: none;
  display: grid;
  gap: 0.65rem;
  border: 1px solid rgba(20, 241, 197, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(20, 241, 197, 0.08), transparent 50%),
    var(--bg-panel);
}

.arena-hero__aside li {
  position: relative;
  padding-left: 1.15rem;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: var(--ink);
}

.arena-hero__aside li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 1px;
  background: var(--amber);
}

.arena-hero__media {
  margin: 0;
  padding: 0 0 0.5rem;
  border-top: 1px solid var(--bg-line);
  background: #05080c;
  display: flex;
  justify-content: center;
}

.arena-hero__media a {
  display: block;
  box-sizing: border-box;
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
  line-height: 0;
}

.arena-hero__media img {
  width: 100%;
  height: auto;
  margin-inline: auto;
}

@media (min-width: 900px) {
  .arena-hero__media a {
    width: auto;
    max-width: var(--max);
  }

  .arena-hero__media img {
    width: auto;
    max-width: min(100%, calc(var(--max) - var(--gutter) * 2));
  }
}

/* —— Content sections —— */
.block {
  padding: 4.5rem 0;
  border-top: 1px solid rgba(138, 155, 168, 0.12);
}

.block > .wrap,
.block > article.wrap {
  display: block;
  box-sizing: border-box;
  width: 100%;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.block h2,
.spotlight h2,
.legal h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.block h2,
.spotlight h2 {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.block h3,
.spotlight h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--amber-soft);
}

.block p,
.spotlight p,
.legal p,
.prose p {
  margin: 0 0 1rem;
  color: var(--muted);
  width: 100%;
  max-width: none;
}

.block p:last-child,
.spotlight p:last-child,
.legal p:last-child,
.prose p:last-child {
  margin-bottom: 0;
}

.prose {
  width: 100%;
  max-width: none;
}

.split {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }

  .split--flip {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .split--flip .split__media {
    order: -1;
  }
}

.split__media {
  width: 100%;
}

.split__media a {
  display: block;
  width: 100%;
  line-height: 0;
  border: 1px solid rgba(20, 241, 197, 0.2);
  border-radius: var(--radius);
  background: var(--bg-panel);
}

.split__media img {
  width: 100%;
  height: auto;
}

.split__media a:hover img {
  opacity: 0.94;
}

.media-band {
  margin-top: 2rem;
}

.media-band__frame {
  width: 100%;
  line-height: 0;
  border: 1px solid rgba(20, 241, 197, 0.2);
  border-radius: var(--radius);
  background: #05080c;
}

.media-band a {
  display: block;
  width: 100%;
  line-height: 0;
}

.media-band img {
  width: 100%;
  height: auto;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.actions--center {
  justify-content: center;
  margin-top: 0;
}

/* Spotlight */
.spotlight {
  padding: 3.5rem 0;
  border-block: 1px solid var(--bg-line);
  background:
    linear-gradient(135deg, rgba(20, 241, 197, 0.08), transparent 40%),
    linear-gradient(315deg, rgba(245, 165, 36, 0.08), transparent 35%),
    var(--bg-panel);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 40px) 100%, 0 100%);
}

/* Access / footer / legal */
.access-bar {
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid var(--bg-line);
  background:
    radial-gradient(500px 180px at 50% 100%, rgba(20, 241, 197, 0.12), transparent 70%),
    #070c12;
}

.access-bar__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.access-bar img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.access-bar h4 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}

.site-footer {
  padding: 1.5rem 0 2.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--muted);
  margin: 0 0.75rem;
}

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

.legal {
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(138, 155, 168, 0.12);
}

.legal h2 {
  font-size: 1.2rem;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .arena-hero {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* —— Inner pages (shared, simple) —— */
.crumb {
  padding: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.crumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.crumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.4rem;
  color: var(--muted);
}

.crumb a {
  color: var(--muted);
}

.crumb a:hover,
.crumb [aria-current="page"] {
  color: var(--teal);
}

.page-hero {
  padding: 2rem 0 2.5rem;
  border-bottom: 1px solid rgba(138, 155, 168, 0.12);
}

.page-hero__grid {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

.page-hero__media {
  margin: 0;
  border: 1px solid rgba(20, 241, 197, 0.2);
  border-radius: var(--radius);
  background: var(--bg-panel);
  line-height: 0;
}

.page-hero__media img {
  width: 100%;
  height: auto;
}

.page-hero__copy h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}

.page-hero__copy p {
  margin: 0 0 0.9rem;
  color: var(--muted);
}

.page-hero__list {
  margin: 1.1rem 0 0;
  padding: 1rem 1.1rem;
  list-style: none;
  display: grid;
  gap: 0.55rem;
  border: 1px solid rgba(20, 241, 197, 0.22);
  border-radius: var(--radius);
  background: var(--bg-panel);
}

.page-hero__list li {
  position: relative;
  padding-left: 1.1rem;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
}

.page-hero__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--amber);
}

/* Hero layouts */
@media (min-width: 900px) {
  .page-hero--media-start .page-hero__grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
  }

  .page-hero--media-end .page-hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }

  .page-hero--media-end .page-hero__media {
    order: 2;
  }
}

.page-hero--stack-copy .page-hero__grid,
.page-hero--stack-media .page-hero__grid {
  grid-template-columns: 1fr;
}

.page-hero--stack-copy .page-hero__media {
  order: 2;
}

.page-article {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.page-article h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 700;
  color: var(--ink);
  max-width: 100%;
}

.page-article h3 {
  margin: 1.5rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--amber-soft);
  max-width: 100%;
}

.page-article p {
  margin: 0 0 1rem;
  color: var(--muted);
  width: 100%;
  max-width: 100%;
}

.page-article p:last-child {
  margin-bottom: 0;
}

/* APK page: numbered install steps */
.step-list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.step-list li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(20, 241, 197, 0.2);
  border-radius: var(--radius);
  background: var(--bg-panel);
}

.step-list .step-n {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--teal);
  line-height: 1.2;
}

.step-list strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--font-display);
  color: var(--ink);
}

.step-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.block-lead {
  margin: 0 0 0.75rem;
  color: var(--muted);
}

/* Bet page: market tiles (distinct from APK step-list) */
.market-tiles {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 720px) {
  .market-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.market-tiles article {
  padding: 1.1rem 1.15rem;
  border-top: 2px solid var(--teal);
  border-right: 1px solid rgba(20, 241, 197, 0.18);
  border-bottom: 1px solid rgba(20, 241, 197, 0.18);
  border-left: 1px solid rgba(20, 241, 197, 0.18);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--bg-panel);
}

.market-tiles h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}

.market-tiles p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Login page: paired auth panels */
.auth-pair {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 720px) {
  .auth-pair {
    grid-template-columns: 1fr 1fr;
  }
}

.auth-pair article {
  padding: 1.25rem 1.2rem;
  border: 1px solid rgba(245, 165, 36, 0.35);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(245, 165, 36, 0.06), transparent 55%),
    var(--bg-panel);
}

.auth-pair h3 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--amber-soft);
}

.auth-pair ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.auth-pair li {
  padding-left: 0.9rem;
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
}

.auth-pair li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--teal);
}

/* Slot page: genre chips + feature strip */
.genre-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.25rem;
}

.genre-chips span {
  display: inline-block;
  padding: 0.4rem 0.7rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid rgba(20, 241, 197, 0.28);
  border-radius: var(--radius);
  background: rgba(20, 241, 197, 0.06);
}

.slot-strip {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 900px) {
  .slot-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.slot-strip article {
  padding: 0;
  border: 1px solid rgba(20, 241, 197, 0.2);
  border-radius: var(--radius);
  background: var(--bg-panel);
  overflow: hidden;
}

.slot-strip a {
  display: block;
  line-height: 0;
}

.slot-strip img {
  width: 100%;
  height: auto;
}

.slot-strip .slot-body {
  padding: 0.9rem 1rem 1.05rem;
}

.slot-strip h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.slot-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Cassino page: live table rows */
.live-rows {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.65rem;
}

.live-rows article {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--amber);
  background: var(--bg-panel);
  border-radius: 0 var(--radius) var(--radius) 0;
}

@media (min-width: 720px) {
  .live-rows article {
    grid-template-columns: 9rem 1fr;
    align-items: baseline;
    gap: 1rem;
  }
}

.live-rows h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal);
}

.live-rows p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Jogos page: instant game grid */
.pulse-grid {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 900px) {
  .pulse-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.pulse-grid article {
  padding: 1.1rem 1rem;
  text-align: center;
  border: 1px dashed rgba(20, 241, 197, 0.35);
  border-radius: var(--radius);
  background: rgba(15, 23, 34, 0.9);
}

.pulse-grid h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.pulse-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

/* Cadastro: signup flow rail */
.signup-flow {
  margin-top: 1.25rem;
  display: grid;
  gap: 0;
  border: 1px solid rgba(20, 241, 197, 0.22);
  border-radius: var(--radius);
  overflow: hidden;
}

.signup-flow article {
  padding: 1.1rem 1.15rem;
  background: var(--bg-panel);
  border-bottom: 1px solid rgba(20, 241, 197, 0.15);
}

.signup-flow article:last-child {
  border-bottom: 0;
}

@media (min-width: 900px) {
  .signup-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .signup-flow article {
    border-bottom: 0;
    border-right: 1px solid rgba(20, 241, 197, 0.15);
  }

  .signup-flow article:last-child {
    border-right: 0;
  }
}

.signup-flow .flow-n {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}

.signup-flow h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
}

.signup-flow p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Bonus: offer stack */
.offer-stack {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.75rem;
}

.offer-stack article {
  display: grid;
  gap: 0.35rem;
  padding: 1.15rem 1.2rem;
  border: 1px solid rgba(245, 165, 36, 0.4);
  background:
    linear-gradient(90deg, rgba(245, 165, 36, 0.1), transparent 40%),
    var(--bg-panel);
  border-radius: var(--radius);
}

.offer-stack h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--amber-soft);
}

.offer-stack p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* APP page: device checklist */
.device-check {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.65rem;
}

.device-check li {
  list-style: none;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(20, 241, 197, 0.2);
  border-radius: var(--radius);
  background: var(--bg-panel);
  color: var(--muted);
}

.device-check {
  margin: 1.25rem 0 0;
  padding: 0;
}

.device-check strong {
  color: var(--ink);
  font-family: var(--font-display);
}

/* VIP: tier ladder */
.tier-ladder {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.55rem;
}

.tier-ladder article {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.95rem 1.1rem;
  background: var(--bg-panel);
  border-radius: var(--radius);
  border: 1px solid rgba(20, 241, 197, 0.18);
}

.tier-ladder .tier {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
}

.tier-ladder h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--ink);
}

.tier-ladder p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.nav-current {
  border-color: var(--amber) !important;
  color: var(--amber-soft) !important;
}

/* —— Fixed bottom CTA —— */
body {
  padding-bottom: 96px;
}

.fixed-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  display: grid;
  grid-template-columns: 1fr 1.22fr;
  gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(20, 241, 197, 0.28);
  background:
    linear-gradient(180deg, rgba(6, 9, 13, 0.55) 0%, rgba(6, 9, 13, 0.96) 40%),
    rgba(6, 9, 13, 0.98);
  backdrop-filter: blur(14px);
  box-shadow: 0 -10px 32px rgba(0, 0, 0, 0.45);
}

.fixed-cta-btn {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 10px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-family: var(--font-display);
  transition: transform 0.18s var(--ease), box-shadow 0.18s, filter 0.18s;
  -webkit-tap-highlight-color: transparent;
}

.fixed-cta-ico {
  display: inline-flex;
  flex-shrink: 0;
}

.fixed-cta-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
  min-width: 0;
}

.fixed-cta-copy strong {
  font-size: 0.98em;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.fixed-cta-copy small {
  margin-top: 2px;
  font-size: 0.68em;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0.9;
  white-space: nowrap;
}

.fixed-cta-entrar {
  color: var(--teal);
  border: 1.5px solid rgba(20, 241, 197, 0.75);
  background: linear-gradient(180deg, rgba(20, 241, 197, 0.14), rgba(20, 241, 197, 0.04));
  box-shadow: inset 0 1px 0 rgba(20, 241, 197, 0.2);
}

.fixed-cta-entrar:hover {
  color: var(--teal);
}

.fixed-cta-cadastrar {
  color: #1a1205;
  border: 1.5px solid rgba(255, 220, 140, 0.9);
  background: linear-gradient(135deg, #ffd56a 0%, var(--amber) 45%, #e08f14 100%);
  box-shadow:
    0 8px 24px rgba(245, 165, 36, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.fixed-cta-cadastrar:hover {
  color: #1a1205;
}

.fixed-cta-cadastrar .fixed-cta-copy small {
  color: #4a3208;
  opacity: 1;
  font-weight: 700;
}

.fixed-cta-pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    110deg,
    transparent 0%,
    transparent 40%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 60%,
    transparent 100%
  );
  transform: translateX(-120%);
  animation: fixedCtaShine 2.5s ease-in-out infinite;
}

.fixed-cta-cadastrar::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 8px;
  border: 2px solid rgba(245, 165, 36, 0.55);
  opacity: 0;
  pointer-events: none;
  animation: fixedCtaRing 2.5s ease-out infinite;
}

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

.fixed-cta-btn:active {
  transform: scale(0.98);
  filter: brightness(0.96);
}

@keyframes fixedCtaShine {
  0%,
  55% {
    transform: translateX(-120%);
  }
  80%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes fixedCtaRing {
  0%,
  55% {
    opacity: 0;
    transform: scale(0.96);
  }
  70% {
    opacity: 0.75;
  }
  100% {
    opacity: 0;
    transform: scale(1.04);
  }
}

@media (min-width: 769px) {
  body {
    padding-bottom: 104px;
  }

  .fixed-cta-bar {
    grid-template-columns: minmax(0, 400px) minmax(0, 480px);
    justify-content: center;
    gap: 14px;
    padding: 12px 20px calc(12px + env(safe-area-inset-bottom, 0px));
  }

  .fixed-cta-btn {
    min-height: 64px;
  }

  .fixed-cta-copy strong {
    font-size: 1.05em;
  }

  .fixed-cta-copy small {
    font-size: 0.74em;
  }
}

@media (max-width: 380px) {
  .fixed-cta-bar {
    gap: 8px;
    padding-left: 8px;
    padding-right: 8px;
  }

  .fixed-cta-btn {
    gap: 7px;
    padding: 9px 10px;
  }

  .fixed-cta-copy strong {
    font-size: 0.86em;
  }

  .fixed-cta-copy small {
    font-size: 0.6em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fixed-cta-pulse,
  .fixed-cta-cadastrar::after {
    animation: none;
  }
}

@media (max-width: 640px) {
  .header-actions .btn-ghost {
    display: none;
  }

  .arena-hero {
    padding-top: 1.75rem;
  }

  .block {
    padding: 3rem 0;
  }
}
