/* Pinup AZ — Neon Sportbook Fintech, 2026 */

:root {
  --void: #05070d;
  --panel: #0d121c;
  --panel-2: #121925;
  --line: rgba(140, 255, 190, 0.14);
  --text: #e8eef8;
  --muted: #9aa8bf;
  --lime: #39ff8c;
  --lime-dim: rgba(57, 255, 140, 0.12);
  --hot: #ff3b6b;
  --gold: #f0c14b;
  --radius: 18px;
  --max: 1140px;
  --bar: 68px;
  --font-ui: "Space Grotesk", system-ui, sans-serif;
  --font-display: "Syne", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  color: var(--text);
  background:
    radial-gradient(ellipse 70% 45% at 85% -5%, rgba(255, 59, 107, 0.18), transparent 55%),
    radial-gradient(ellipse 55% 40% at 0% 20%, rgba(57, 255, 140, 0.1), transparent 50%),
    linear-gradient(180deg, #070b14 0%, var(--void) 40%, #080c14 100%);
  line-height: 1.65;
  min-height: 100vh;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: var(--lime);
  text-underline-offset: 3px;
}

a:hover {
  color: #7dffb2;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 0.8rem;
  color: var(--text);
}

h1 {
  font-size: clamp(2.05rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.45rem, 3vw, 2.15rem);
}

h3 {
  font-size: 1.12rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

ul,
ol {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
  color: var(--muted);
}

li {
  margin-bottom: 0.4rem;
}

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

th,
td {
  text-align: left;
  padding: 0.8rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: top;
}

th {
  color: var(--lime);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.frame {
  width: min(100% - 1.75rem, var(--max));
  margin-inline: auto;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--lime-dim);
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.surface {
  background: linear-gradient(160deg, rgba(18, 25, 37, 0.95), rgba(10, 14, 22, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.3rem;
  border-radius: 12px;
  border: none;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cta-lime {
  background: var(--lime);
  color: #04140a;
  box-shadow: 0 0 28px rgba(57, 255, 140, 0.28);
}

.cta-lime:hover {
  transform: translateY(-2px);
  color: #04140a;
}

.cta-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.cta-ghost:hover {
  border-color: var(--lime);
  color: var(--lime);
}

/* Shell bar */
.shell-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--bar);
  transition: background 0.2s ease, border-color 0.2s ease;
  border-bottom: 1px solid transparent;
}

.shell-bar.is-stuck {
  background: rgba(5, 7, 13, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.shell-row {
  height: var(--bar);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mark {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text);
}

.mark img {
  height: 36px;
  width: auto;
}

.mark span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}

.rail {
  display: none;
  gap: 1.1rem;
  align-items: center;
}

.rail a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.rail a:hover {
  color: var(--lime);
}

.burger {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--panel);
  display: grid;
  place-items: center;
  gap: 5px;
  cursor: pointer;
}

.burger i {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.drawer {
  display: none;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1rem 1.25rem 1.5rem;
  background: rgba(8, 12, 20, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.drawer.is-open {
  display: flex;
}

.drawer a {
  text-decoration: none;
  color: var(--text);
  font-weight: 650;
}

@media (min-width: 920px) {
  .rail {
    display: flex;
  }

  .burger {
    display: none;
  }
}

/* Kickoff hero */
.kickoff {
  padding: 2.25rem 0 3rem;
}

.kickoff-grid {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

@media (min-width: 960px) {
  .kickoff-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.kickoff-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.25rem 0;
}

.warn-line {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border-left: 3px solid var(--gold);
  background: rgba(240, 193, 75, 0.08);
  color: var(--muted);
  font-size: 0.9rem;
}

.shot figure {
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(57, 255, 140, 0.2);
  background: #000;
}

.shot img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.shot figcaption {
  padding: 0.8rem 1rem;
  font-size: 0.84rem;
  color: var(--muted);
  background: var(--panel);
}

/* Route steps — registration first */
.route {
  padding: 1rem 0 3.25rem;
}

.route-head {
  max-width: 40rem;
  margin-bottom: 1.4rem;
}

.route-list {
  display: grid;
  gap: 0.65rem;
  counter-reset: route;
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.route-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 0.95rem 1.1rem;
  border-radius: 14px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin: 0;
  transition: border-color 0.2s ease;
}

.route-list li:hover {
  border-color: rgba(57, 255, 140, 0.35);
}

.route-list li::before {
  counter-increment: route;
  content: counter(route);
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--lime-dim);
  color: var(--lime);
  font-weight: 700;
  font-size: 0.85rem;
}

.route-shot {
  margin-top: 1.5rem;
}

.route-shot figure {
  margin: 0;
  display: grid;
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--panel);
}

@media (min-width: 800px) {
  .route-shot figure {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}

.route-shot img {
  width: 100%;
  aspect-ratio: 16 / 12;
  object-fit: cover;
}

.route-shot figcaption {
  padding: 1.2rem 1.35rem;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Cash tabs */
.cash {
  padding: 0 0 3.25rem;
}

.cash-box {
  padding: 1.5rem;
}

.tab-row {
  display: flex;
  gap: 0.5rem;
  margin: 1.25rem 0 1rem;
  flex-wrap: wrap;
}

.tab-row button {
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: var(--muted);
  font-family: var(--font-ui);
  font-weight: 700;
  cursor: pointer;
}

.tab-row button.is-active {
  background: var(--lime);
  color: #04140a;
  border-color: var(--lime);
}

.cash-pane {
  display: none;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.cash-pane.is-active {
  display: block;
}

.cash-shot {
  margin-top: 1.35rem;
}

.cash-shot figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #000;
}

.cash-shot img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
}

.cash-shot figcaption {
  padding: 0.8rem 1rem;
  font-size: 0.84rem;
  color: var(--muted);
  background: var(--panel);
}

/* Facts matrix */
.facts {
  padding: 0 0 3.25rem;
}

.facts-box {
  padding: 1.4rem;
  overflow-x: auto;
}

.facts-box td:first-child {
  color: var(--text);
  font-weight: 700;
  white-space: nowrap;
}

/* Bonus pulse */
.pulse {
  padding: 0 0 3.25rem;
}

.pulse-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .pulse-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
  }
}

.pulse-copy .twin {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .pulse-copy .twin {
    grid-template-columns: 1fr 1fr;
  }
}

.chip-box {
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.tip {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: rgba(255, 59, 107, 0.1);
  border: 1px solid rgba(255, 59, 107, 0.25);
  color: var(--text);
  font-size: 0.92rem;
}

.pulse-shot figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 59, 107, 0.25);
  background: #000;
}

.pulse-shot img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.pulse-shot figcaption {
  padding: 0.8rem 1rem;
  font-size: 0.84rem;
  color: var(--muted);
  background: var(--panel);
}

/* Catalog */
.catalog {
  padding: 0 0 3.25rem;
}

.catalog-box {
  padding: 1.5rem;
}

.badge-list {
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 0;
  display: grid;
  gap: 0.55rem;
}

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

.badge-list li {
  margin: 0;
  padding: 0.75rem 0.95rem;
  border-radius: 12px;
  background: var(--lime-dim);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Handheld */
.handheld {
  padding: 2.75rem 0;
  background:
    linear-gradient(180deg, rgba(255, 59, 107, 0.08), transparent 40%),
    #080a10;
  border-block: 1px solid rgba(255, 255, 255, 0.05);
}

.handheld-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .handheld-grid {
    grid-template-columns: 0.95fr 1.05fr;
  }
}

.handheld figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(57, 255, 140, 0.18);
  background: #000;
}

.handheld img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.handheld figcaption {
  padding: 0.8rem 1rem;
  font-size: 0.84rem;
  color: var(--muted);
  background: var(--panel);
}

/* Live + secure duo */
.duo {
  padding: 3.25rem 0;
}

.duo-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .duo-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.duo-card {
  padding: 1.4rem 1.5rem;
}

/* Meters */
.meters {
  padding: 0 0 3.25rem;
}

.meters-box {
  padding: 1.5rem;
}

.meter-row {
  display: grid;
  gap: 0.35rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.meter-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
}

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

.meter-top span {
  font-family: var(--font-display);
  color: var(--lime);
  font-size: 1.25rem;
  font-weight: 700;
}

.meter-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.meter-track i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--hot), var(--lime));
  transition: width 0.8s ease;
}

.meter-note {
  font-size: 0.84rem;
  color: var(--muted);
}

/* Split pros */
.split {
  padding: 0 0 3.25rem;
}

.split-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .split-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.plus-card,
.minus-card {
  padding: 1.4rem;
}

.plus-card {
  border-top: 3px solid var(--lime);
}

.minus-card {
  border-top: 3px solid var(--hot);
}

/* Fit */
.fit {
  padding: 0 0 3.25rem;
}

.fit-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .fit-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.fit-card {
  padding: 1.4rem;
}

/* Care */
.care {
  padding: 0 0 3.25rem;
}

.care-box {
  padding: 1.4rem 1.5rem;
  border-left: 3px solid var(--gold);
}

/* Close */
.closeout {
  padding: 0 0 3.25rem;
}

.close-box {
  padding: 1.75rem;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(57, 255, 140, 0.12), transparent 55%),
    var(--panel);
}

.close-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

/* FAQ */
.ask {
  padding: 0 0 3.5rem;
}

.ask-list {
  display: grid;
  gap: 0.55rem;
}

.ask-row {
  border-radius: 14px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.ask-row button {
  width: 100%;
  text-align: left;
  padding: 1rem 1.15rem;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.ask-row button::after {
  content: "+";
  color: var(--lime);
  font-size: 1.2rem;
}

.ask-row.is-open button::after {
  content: "–";
}

.ask-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.ask-body-inner {
  padding: 0 1.15rem 1.1rem;
}

.ask-body-inner p {
  margin: 0;
}

/* Foot */
.endcap {
  padding: 2.25rem 0 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #04060a;
}

.end-grid {
  display: grid;
  gap: 1.25rem;
}

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

.end-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
  margin-bottom: 0.65rem;
}

.end-brand img {
  height: 34px;
}

.end-meta {
  font-size: 0.86rem;
  color: var(--muted);
}

.end-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
}

.end-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 650;
  font-size: 0.88rem;
}

.end-links a:hover {
  color: var(--lime);
}

.age {
  display: inline-flex;
  margin-top: 0.9rem;
  padding: 0.3rem 0.65rem;
  border-radius: 8px;
  background: var(--lime);
  color: #04140a;
  font-weight: 800;
  font-size: 0.78rem;
}

/* Cookie */
.toast-cookie {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 120;
  max-width: 380px;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: #0e1420;
  border: 1px solid rgba(57, 255, 140, 0.25);
  display: none;
  flex-direction: column;
  gap: 0.75rem;
}

.toast-cookie.is-show {
  display: flex;
}

.toast-cookie p {
  margin: 0;
  font-size: 0.86rem;
}

/* Rise */
[data-rise] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-rise].is-up {
  opacity: 1;
  transform: none;
}
