@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@600;700;800&display=swap");

/* Australian Dream Ticket — cyberpunk skin over TZ palette */
:root {
  --dream-sky-blue: #1b6ca8;
  --wheat-gold: #e89c00;
  --victoria-green: #00723a;
  --outback-red: #c0102a;
  --sunset-orange: #e86020;
  --dream-purple: #5c2d8e;
  --wheat-cream: #fdf5e4;
  --night-sky: #0d182a;
  --wimmera-stone: #6a6252;
  --harbour-teal: #007a87;
  --neon-cyan: #00f0ff;
  --neon-magenta: #ff00aa;
  --glass: rgba(13, 24, 42, 0.72);
  --radius: 8px;
  --font-display: "Poppins", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --font-ui: "Inter", system-ui, sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;
  --font-heading: "Orbitron", "Poppins", system-ui, sans-serif;
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.55;
  color: var(--wheat-cream);
  background:
    radial-gradient(
      1200px 600px at 10% -10%,
      rgba(0, 240, 255, 0.12),
      transparent 55%
    ),
    radial-gradient(
      900px 500px at 90% 0%,
      rgba(255, 0, 170, 0.1),
      transparent 50%
    ),
    linear-gradient(180deg, #0a101c 0%, var(--night-sky) 38%, #070b12 100%);
}

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

a {
  color: var(--neon-cyan);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--wheat-gold);
}

:focus-visible {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--night-sky);
  color: var(--wheat-cream);
  padding: 0.75rem 1rem;
  z-index: 9999;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(13, 24, 42, 0.82);
  border-bottom: 1px solid rgba(0, 240, 255, 0.22);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.65rem clamp(12px, 3vw, 24px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}

.brand img {
  width: clamp(160px, 28vw, 240px);
  height: auto;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(0, 240, 255, 0.35);
  border-radius: var(--radius);
  padding: 0.45rem 0.55rem;
  cursor: pointer;
}

.nav-toggle svg {
  width: 28px;
  height: 28px;
  display: block;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  align-items: center;
}

.site-nav a {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--wheat-cream);
  padding: 0.35rem 0.2rem;
  border-radius: 4px;
}

.site-nav a[aria-current="page"] {
  color: var(--neon-cyan);
}

.site-nav a:hover {
  color: var(--wheat-gold);
}

.coins-pill {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(232, 156, 0, 0.2),
    rgba(0, 240, 255, 0.15)
  );
  border: 1px solid rgba(232, 156, 0, 0.45);
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.15s ease,
    filter 0.15s ease;
}

.btn:hover {
  filter: brightness(1.08);
  transform: scale(1.02);
}

.btn:active {
  transform: scale(0.97);
}

.btn-sky {
  background: var(--dream-sky-blue);
  color: #fff;
}

.btn-gold {
  background: var(--wheat-gold);
  color: var(--night-sky);
}

.btn-ghost {
  background: transparent;
  color: var(--wimmera-stone);
  border: 1px solid rgba(106, 98, 82, 0.5);
}

.btn-red {
  background: var(--outback-red);
  color: #fff;
}

.btn-green {
  background: var(--victoria-green);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--neon-cyan);
  border: 2px solid var(--dream-sky-blue);
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(16px, 3vw, 32px);
}

.hero {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
  padding-block: clamp(1.5rem, 4vw, 3rem);
}

@container (min-width: 720px) {
  .hero {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.hero-wrap {
  container-type: inline-size;
  container-name: hero;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0 0 0.75rem;
  text-shadow: 0 0 24px rgba(0, 240, 255, 0.25);
}

.hero-tag {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin-bottom: 0.5rem;
}

.lead {
  color: rgba(253, 245, 228, 0.88);
  /* max-width: 52ch; */
}

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

.hero-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 240, 255, 0.25);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(255, 0, 170, 0.12);
}

.hero-visual canvas#adt-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.4;
  mix-blend-mode: screen;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-block: 2rem;
}

.stat-card {
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-card strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  display: block;
  color: var(--wheat-gold);
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin: 0 0 1rem;
  color: #5cf5ff;
  text-shadow: 0 0 22px rgba(92, 245, 255, 0.35);
  letter-spacing: 0.04em;
}

.section-title--gold {
  color: #ffc14d;
  text-shadow: 0 0 26px rgba(232, 156, 0, 0.45);
}

h1 {
  font-family: var(--font-heading);
  letter-spacing: 0.03em;
}

.hero-copy h1 {
  color: #e8fbff;
  text-shadow: 0 0 32px rgba(0, 240, 255, 0.35);
}

.games-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.game-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(13, 24, 42, 0.65);
  border: 1px solid rgba(0, 240, 255, 0.18);
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.game-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.game-card-body {
  padding: 1rem 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.game-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 0;
  font-size: 1.1rem;
  color: #9aebff;
}

.game-card p {
  margin: 0;
  color: rgba(253, 245, 228, 0.82);
  flex: 1;
}

.ticket-notch {
  clip-path: polygon(
    0 0,
    100% 0,
    100% 100%,
    0 100%,
    0 92%,
    3% 88%,
    0 84%,
    0 76%,
    3% 72%,
    0 68%,
    0 60%,
    3% 56%,
    0 52%,
    0 44%,
    3% 40%,
    0 36%,
    0 28%,
    3% 24%,
    0 20%,
    0 12%,
    3% 8%,
    0 4%
  );
}

.site-footer {
  margin-top: 3rem;
  padding: 2rem clamp(16px, 3vw, 32px) 4rem;
  border-top: 1px solid rgba(0, 240, 255, 0.15);
  background: rgba(5, 8, 14, 0.9);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer-grid h2 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0 0 0.5rem;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-grid a {
  color: rgba(253, 245, 228, 0.85);
  text-decoration: none;
  font-size: 0.92rem;
}

.footer-grid a:hover {
  color: var(--neon-cyan);
}

.disclaimer-sticky {
  position: sticky;
  bottom: 0;
  z-index: 90;
  padding: 0.55rem 0.75rem;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.04em;
  line-height: 1.35;
  color: #fff;
  background: rgba(13, 24, 42, 0.92);
  border-top: 1px solid rgba(27, 108, 168, 0.85);
}

.play-shell {
  padding-bottom: 4rem;
}

.panel {
  border-radius: 16px;
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid #ffc14d;
  background: rgba(255, 193, 77, 0.3);
}

.account-dashboard .panel {
  background: none;
}

#adt-board-mount .panel {
  background: none;
}

.matilda {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 600;
  color: rgba(0, 240, 255, 0.9);
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

.form-grid {
  display: grid;
  gap: 0.85rem;
}

label span {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
  color: rgba(253, 245, 228, 0.85);
}

input,
select {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 240, 255, 0.25);
  background: rgba(5, 8, 14, 0.85);
  color: var(--wheat-cream);
  font-family: var(--font-ui);
}

.checkbox {
  --adt-check-size: 1.25rem;
  position: relative;
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.9rem;
}

.checkbox-input {
  position: absolute;
  left: 0;
  top: 0.12rem;
  width: var(--adt-check-size);
  height: var(--adt-check-size);
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.checkbox-box {
  flex-shrink: 0;
  width: var(--adt-check-size);
  height: var(--adt-check-size);
  margin-top: 0.12rem;
  border-radius: 4px;
  border: 1px solid rgba(0, 240, 255, 0.42);
  background:
    linear-gradient(145deg, rgba(5, 8, 14, 0.95), rgba(13, 24, 42, 0.75)),
    radial-gradient(circle at 30% 20%, rgba(0, 240, 255, 0.12), transparent 55%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 14px rgba(0, 240, 255, 0.08);
  display: grid;
  place-items: center;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  pointer-events: none;
}

.checkbox-box::after {
  content: "";
  width: 0.28rem;
  height: 0.55rem;
  margin-top: -0.08rem;
  border: solid var(--wheat-gold);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.15s ease;
  filter: drop-shadow(0 0 4px rgba(232, 156, 0, 0.45));
}

.checkbox-input:hover + .checkbox-box {
  border-color: rgba(0, 240, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 18px rgba(0, 240, 255, 0.18);
}

.checkbox-input:checked + .checkbox-box {
  border-color: var(--neon-cyan);
  background:
    linear-gradient(145deg, rgba(0, 240, 255, 0.18), rgba(92, 45, 142, 0.22)),
    rgba(5, 8, 14, 0.6);
  box-shadow:
    inset 0 0 14px rgba(0, 240, 255, 0.2),
    0 0 16px rgba(0, 240, 255, 0.28),
    0 0 1px rgba(255, 0, 170, 0.25);
}

.checkbox-input:checked + .checkbox-box::after {
  opacity: 1;
}

.checkbox-input:focus-visible + .checkbox-box {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 3px;
}

.checkbox-input:focus:not(:focus-visible) + .checkbox-box {
  outline: none;
}

label.checkbox .checkbox-box {
  margin-bottom: 0;
}

label.checkbox .checkbox-text {
  display: block;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.5;
  color: rgba(253, 245, 228, 0.92);
  margin-bottom: 0;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  max-width: 360px;
}

.board-cell {
  aspect-ratio: 1;
  border-radius: 8px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  position: relative;
}

.board-cell.filled {
  border-style: solid;
  border-color: rgba(232, 156, 0, 0.55);
  box-shadow: inset 0 0 18px rgba(0, 240, 255, 0.15);
}

.board-cell .frag {
  position: absolute;
  inset: 0;
  background-size: 400% 300%;
  opacity: 0.95;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    right: clamp(12px, 3vw, 24px);
    top: calc(100% + 6px);
    width: min(420px, calc(100vw - 24px));
    background: rgba(10, 16, 28, 0.96);
    border: 1px solid rgba(0, 240, 255, 0.22);
    border-radius: 14px;
    padding: 0.75rem;
    display: none;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
  }
}

.swiper {
  padding-bottom: 2rem !important;
}

.swiper-pagination-bullet-active {
  background: var(--neon-cyan) !important;
}

[data-tilt] {
  transform-style: preserve-3d;
}

.legal h2 {
  font-family: var(--font-heading);
  margin-top: 2rem;
  color: #5cf5ff;
}

.legal h2:first-child {
  margin-top: 0;
}

.hero-legal-line {
  margin-top: 1rem;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0, 240, 255, 0.88);
  max-width: 52ch;
}

.adt-game-deck {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

@media (min-width: 900px) {
  .adt-game-deck {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.adt-matilda-block,
.adt-getaway-block,
.adt-why-tz,
.adt-final-cta {
  margin-top: clamp(2rem, 5vw, 3.5rem);
}

.adt-matilda-block .panel,
.adt-getaway-block .panel,
.adt-why-tz .panel,
.adt-final-cta .panel {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.adt-matilda-quote {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(253, 245, 228, 0.92);
  margin: 0;
}

.adt-getaway-count {
  font-family: var(--font-mono);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--wheat-gold);
  margin: 0.5rem 0 1rem;
}

.adt-sod-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.adt-sod-row {
  display: grid;
  grid-template-columns: 2rem 3.5rem 1fr auto;
  gap: 0.5rem;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  background: rgba(5, 8, 14, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: auto;
}

.adt-sod-score {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--neon-cyan);
}

.adt-why-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 880px) {
  .adt-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.adt-why-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem 1.15rem;
  border-radius: 14px;
  background: var(--glass);
  border: 1px solid rgba(0, 240, 255, 0.15);
}

.adt-why-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.adt-why-card h3 {
  font-family: var(--font-heading);
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  color: #7efcff;
}

.adt-why-card p {
  margin: 0;
  color: rgba(253, 245, 228, 0.88);
  font-size: 0.95rem;
}

.adt-final-sub {
  font-family: var(--font-body);
  font-style: italic;
  color: rgba(253, 245, 228, 0.92);
  margin: 0.75rem 0 0;
  font-size: 1.05rem;
}

.adt-final-cta .btn-gold {
  font-size: 1.05rem;
  padding: 16px 36px;
}

.footer-brand {
  max-width: 1200px;
  margin: 0 auto 1.25rem;
}

.footer-logo-link img {
  max-width: min(280px, 72vw);
  height: auto;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffc14d;
}

.footer-legal-block {
  max-width: 960px;
  margin: 2rem auto 0;
  padding: 0 clamp(12px, 3vw, 24px) 2rem;
  font-size: 0.72rem;
  line-height: 1.55;
  color: rgba(253, 245, 228, 0.72);
  text-align: center;
}

.adt-playbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 0.55rem 0.75rem;
  border-radius: 12px;
  background: rgba(5, 8, 14, 0.88);
  border: 1px solid rgba(0, 240, 255, 0.22);
}

.adt-backlobby {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--neon-cyan);
  text-decoration: none;
}

.adt-backlobby:hover {
  color: var(--wheat-gold);
}

.adt-playbar-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.82rem;
}

.adt-dc-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 156, 0, 0.45);
  background: rgba(232, 156, 0, 0.12);
}

.adt-dc-label {
  font-size: 0.72rem;
  opacity: 0.85;
}

.adt-meta {
  opacity: 0.85;
}

.adt-playbar-tag {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: rgba(253, 245, 228, 0.78);
  flex: 1 1 200px;
  text-align: right;
}

.adt-slot-hero {
  display: grid;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

@media (min-width: 720px) {
  .adt-slot-hero {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.adt-slot-title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  margin: 0 0 0.35rem;
  color: #7efcff;
  text-shadow: 0 0 20px rgba(0, 240, 255, 0.35);
}

.adt-slot-tagline {
  margin: 0 0 0.5rem;
  color: rgba(253, 245, 228, 0.88);
  font-size: 0.95rem;
}

.adt-slot-sub {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(0, 240, 255, 0.75);
  font-family: var(--font-ui);
}

.adt-slot-hero-art img {
  width: min(220px, 100%);
  border-radius: 14px;
  border: 1px solid rgba(0, 240, 255, 0.25);
  margin-left: auto;
}

.adt-slot-machine {
  padding: 1.25rem 1rem 1.5rem;
}

.adt-slot-machine--cabinet {
  position: relative;
  --slot-cell: 92px;
  overflow: visible;
}

.adt-slot-machine-label {
  text-align: center;
  margin: 0 0 0.65rem;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(253, 245, 228, 0.45);
}

.adt-slot-cabinet-bezel {
  position: relative;
  padding: 12px;
  margin: 0 auto 1rem;
  max-width: 438px;
  border-radius: 18px;
  background: linear-gradient(
    155deg,
    rgba(253, 245, 228, 0.12),
    rgba(0, 240, 255, 0.08),
    rgba(255, 0, 170, 0.06)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 0 0 1px rgba(0, 240, 255, 0.18),
    0 14px 40px rgba(0, 0, 0, 0.55);
}

.adt-reels-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
}

.adt-reels-row--cabinet {
  gap: 8px;
  max-width: none;
}

.adt-reel-column {
  min-width: 0;
}

.adt-reel-window {
  position: relative;
  height: var(--slot-cell);
  overflow: hidden;
  border-radius: 10px;
  background: radial-gradient(circle at 50% 0%, rgba(0, 240, 255, 0.08), transparent 55%), #05080e;
  box-shadow:
    inset 0 0 28px rgba(0, 0, 0, 0.75),
    inset 0 -4px 12px color-mix(in srgb, var(--reel-accent, #00f0ff) 22%, transparent),
    inset 0 2px 0 rgba(255, 255, 255, 0.04),
    0 0 0 1px rgba(0, 240, 255, 0.16);
}

.adt-reel-glass {
  pointer-events: none;
  position: absolute;
  inset: 0;
  border-radius: 10px;
  z-index: 2;
  background: linear-gradient(
    175deg,
    rgba(255, 255, 255, 0.08),
    transparent 42%,
    rgba(5, 8, 14, 0.35)
  );
  opacity: 0.6;
}

.adt-reel-strip {
  will-change: transform;
  transform: translateZ(0);
  position: relative;
  z-index: 1;
}

.adt-reel-strip--spin img {
  filter: blur(1.1px) saturate(1.06);
}

.adt-reel-tile {
  height: var(--slot-cell);
  display: grid;
  place-items: center;
  border-bottom: 1px solid rgba(0, 240, 255, 0.07);
}

.adt-reel-tile:last-child {
  border-bottom: none;
}

.adt-reel-tile img {
  display: block;
  width: min(74px, 78%);
  height: auto;
}

.adt-slot-payline {
  height: 2px;
  max-width: 320px;
  margin: -0.5rem auto 1rem;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(232, 156, 0, 0.55),
    rgba(0, 240, 255, 0.45),
    rgba(232, 156, 0, 0.55),
    transparent
  );
  opacity: 0.65;
}

.adt-spin-mega:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.adt-slot-payrules {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: rgba(253, 245, 228, 0.8);
  margin: 0 0 1rem;
}

.adt-slot-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.adt-bet-label {
  font-family: var(--font-ui);
  font-size: 0.85rem;
}

.adt-bet-select {
  margin-left: 0.35rem;
  padding: 0.4rem 0.5rem;
  border-radius: 8px;
  background: rgba(5, 8, 14, 0.9);
  color: var(--wheat-cream);
  border: 1px solid rgba(0, 240, 255, 0.25);
}

.adt-spin-mega {
  min-width: 180px;
  font-family: var(--font-heading) !important;
  letter-spacing: 0.16em;
  font-size: 1rem !important;
}

.adt-slot-status {
  text-align: center;
  font-family: var(--font-mono);
  min-height: 1.5rem;
  margin: 0.75rem 0 0;
  color: rgba(253, 245, 228, 0.9);
}

.adt-symbol-legend {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(253, 245, 228, 0.75);
}

.adt-sym-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 240, 255, 0.15);
  background: rgba(5, 8, 14, 0.45);
}

.adt-sym-legend-thumb {
  display: block;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.adt-sym-name {
  font-family: var(--font-ui);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(253, 245, 228, 0.82);
}

.account-dashboard {
  display: grid;
  gap: 1rem;
}

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

.account-hero-balance {
  font-family: var(--font-mono);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--wheat-gold);
  margin: 0.25rem 0 0;
}

.account-quicklinks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.adt-faq-section + .adt-faq-section {
  margin-top: 1rem;
}

.adt-faq-question {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.65rem;
  color: #9aebff;
  letter-spacing: 0.02em;
}

.adt-faq-answer {
  margin: 0;
  color: rgba(253, 245, 228, 0.9);
  line-height: 1.6;
}
