/* ========================================
   SpinCity Casino — Main Stylesheet
   Brand: Navy #0a1628, Gold #f5c518, Yellow #ffd700
   Last updated: 2026-04-16
   ======================================== */

:root {
  --navy: #0a1628;
  --navy2: #0d1f3c;
  --navy3: #122550;
  --gold: #f5c518;
  --yellow: #ffd700;
  --orange: #ff8c00;
  --white: #ffffff;
  --light: #e8eaf6;
  --gray: #8892a4;
  --dark: #060e1c;
  --red: #e53935;
  --green: #4caf50;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  --trans: .25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Respect user motion preference */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: 'Segoe UI', system-ui, Arial, sans-serif;
  background: var(--dark);
  color: var(--white);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── SKIP NAVIGATION ── */
.skip-nav {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  z-index: 9999;
  text-decoration: none;
}

.skip-nav:focus {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: auto;
  height: auto;
  overflow: visible;
  outline: 3px solid var(--navy);
}

/* ── GLOBAL FOCUS STYLES ── */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Remove focus ring for mouse users */
:focus:not(:focus-visible) {
  outline: none;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--trans);
}

a:hover {
  color: var(--yellow);
}

a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
}

h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
}

p {
  margin-bottom: 1rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 2px 16px rgba(0, 0, 0, .7);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  color: var(--light);
  font-size: .9rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: background var(--trans), color var(--trans);
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--gold);
  color: var(--navy);
}

.header-cta {
  display: flex;
  gap: 8px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  transition: all var(--trans);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--yellow);
  color: var(--navy);
  border-color: var(--yellow);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
}

.btn-red {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.btn-red:hover {
  background: #c62828;
}

.tracker-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  color: var(--navy);
  font-weight: 800;
  font-size: .95rem;
  padding: 10px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: 0 0 14px rgba(245, 197, 24, .5);
  transition: transform var(--trans), box-shadow var(--trans);
  border: none;
  cursor: pointer;
}

.tracker-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(245, 197, 24, .8);
  color: var(--navy);
}

.tracker-btn .pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1.2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(1.5);
  }
}

/* Hamburger */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--trans);
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6, 14, 28, .97);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  /* safe-area for notch phones */
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-size: 1.4rem;
  color: var(--light);
  font-weight: 700;
  padding: 10px 24px;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.mobile-nav a:hover {
  color: var(--gold);
}

.mobile-nav .close-nav {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: var(--gold);
  cursor: pointer;
  background: none;
  border: none;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav .tracker-btn {
  margin-top: 10px;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy3) 50%, #1a0a40 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(245, 197, 24, .12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(26, 10, 64, .8) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero-badge {
  display: inline-block;
  background: rgba(245, 197, 24, .15);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: .8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 16px;
}

.hero h1 span {
  color: var(--gold);
}

.hero p {
  font-size: 1.05rem;
  color: var(--light);
  margin-bottom: 28px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-img {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
  opacity: .5;
  z-index: 1;
}

/* ── SECTIONS ── */
.section {
  padding: 70px 0;
}

.section-dark {
  background: var(--navy);
}

.section-darker {
  background: var(--dark);
}

.section-mid {
  background: var(--navy2);
}

.section-tag {
  display: inline-block;
  background: rgba(245, 197, 24, .12);
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-title {
  margin-bottom: 8px;
}

.section-subtitle {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 40px;
  max-width: 560px;
}

.section-header {
  margin-bottom: 40px;
}

/* ── GRID LAYOUTS ── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* ── CARDS ── */
.card {
  background: var(--navy2);
  border: 1px solid rgba(245, 197, 24, .15);
  border-radius: 14px;
  padding: 24px;
  transition: transform var(--trans), border-color var(--trans), box-shadow var(--trans);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(245, 197, 24, .15);
}

.card-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.card-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gold);
}

.card-text {
  color: var(--gray);
  font-size: .9rem;
  line-height: 1.6;
}

/* ── STATS BAR ── */
.stats-bar {
  display: flex;
  gap: 0;
  border: 1px solid rgba(245, 197, 24, .2);
  border-radius: 14px;
  overflow: hidden;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid rgba(245, 197, 24, .15);
  background: var(--navy2);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
}

.stat-label {
  font-size: .8rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── TABLES ── */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  margin-bottom: 32px;
}

.sc-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
}

.sc-table th {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: 13px 16px;
  text-align: left;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  white-space: nowrap;
}

.sc-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  font-size: .9rem;
  white-space: nowrap;
}

.sc-table tr {
  background: var(--navy2);
}

.sc-table tr:nth-child(even) {
  background: var(--navy3);
}

.sc-table tr:hover td {
  background: rgba(245, 197, 24, .06);
}

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
}

.badge-green {
  background: rgba(76, 175, 80, .2);
  color: var(--green);
  border: 1px solid rgba(76, 175, 80, .4);
}

.badge-gold {
  background: rgba(245, 197, 24, .2);
  color: var(--gold);
  border: 1px solid rgba(245, 197, 24, .4);
}

.badge-red {
  background: rgba(229, 57, 53, .2);
  color: var(--red);
  border: 1px solid rgba(229, 57, 53, .4);
}

.badge-blue {
  background: rgba(33, 150, 243, .2);
  color: #64b5f6;
  border: 1px solid rgba(33, 150, 243, .4);
}

/* ── CHARTS ── */
.chart-container {
  background: var(--navy2);
  border: 1px solid rgba(245, 197, 24, .15);
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 28px;
}

.chart-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
}

/* Bar chart */
.bar-chart {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bar-label {
  width: 140px;
  font-size: .85rem;
  color: var(--light);
  flex-shrink: 0;
  text-align: right;
}

.bar-track {
  flex: 1;
  background: rgba(255, 255, 255, .06);
  border-radius: 6px;
  height: 28px;
  overflow: hidden;
  min-width: 60px;
}

.bar-fill {
  height: 100%;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding-left: 10px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--navy);
  transition: width 1s ease;
}

.bar-val {
  width: 46px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

/* Donut chart */
.donut-wrap {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.donut {
  position: relative;
  width: 180px;
  height: 180px;
  flex-shrink: 0;
}

.donut svg {
  transform: rotate(-90deg);
}

.donut-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.donut-pct {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
}

.donut-sub {
  font-size: .72rem;
  color: var(--gray);
}

.donut-legend {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  flex-shrink: 0;
}

/* Line chart (CSS) */
.line-chart-wrap {
  overflow-x: auto;
}

.line-chart-svg {
  min-width: 400px;
  width: 100%;
  height: 200px;
}

/* Gauge */
.gauge-wrap {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.gauge {
  text-align: center;
}

.gauge svg {
  width: 140px;
  height: 90px;
}

.gauge-label {
  font-size: .82rem;
  color: var(--gray);
  margin-top: 6px;
}

/* Radial progress */
.radial-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.radial-item {
  text-align: center;
}

.radial-item svg {
  width: 90px;
  height: 90px;
}

.radial-item .r-label {
  font-size: .78rem;
  color: var(--gray);
  margin-top: 4px;
}

.radial-item .r-val {
  font-size: .95rem;
  font-weight: 700;
  color: var(--gold);
}

/* ── RTP METER ── */
.rtp-meter {
  background: var(--navy3);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.rtp-name {
  width: 160px;
  font-size: .88rem;
  color: var(--light);
  flex-shrink: 0;
}

.rtp-bar {
  flex: 1;
  background: rgba(255, 255, 255, .07);
  border-radius: 20px;
  height: 10px;
  min-width: 40px;
}

.rtp-fill {
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
}

.rtp-pct {
  width: 52px;
  text-align: right;
  font-size: .88rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

/* ── BONUS CARDS ── */
.bonus-card {
  background: linear-gradient(135deg, var(--navy2) 0%, var(--navy3) 100%);
  border: 1px solid rgba(245, 197, 24, .2);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform var(--trans);
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(245, 197, 24, .12) 0%, transparent 70%);
  border-radius: 50%;
}

.bonus-card:hover {
  transform: translateY(-5px);
}

.bonus-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 6px;
}

.bonus-type {
  font-size: .8rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.bonus-list {
  list-style: none;
}

.bonus-list li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  font-size: .88rem;
  color: var(--light);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.bonus-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── SLOT CARD ── */
.slot-card {
  border-radius: 14px;
  overflow: hidden;
  background: var(--navy2);
  border: 1px solid rgba(245, 197, 24, .1);
  transition: transform var(--trans), box-shadow var(--trans);
}

.slot-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
}

.slot-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.slot-info {
  padding: 14px 16px;
}

.slot-name {
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: 4px;
}

.slot-provider {
  font-size: .78rem;
  color: var(--gray);
  margin-bottom: 8px;
}

.slot-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.slot-rtp {
  font-size: .82rem;
  color: var(--green);
  font-weight: 700;
}

/* ── PAYMENT CARD ── */
.pay-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--navy2);
  border: 1px solid rgba(245, 197, 24, .12);
  border-radius: 14px;
  padding: 22px 16px;
  transition: transform var(--trans);
}

.pay-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.pay-icon {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.pay-name {
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: 6px;
}

.pay-time {
  font-size: .78rem;
  color: var(--gray);
}

/* ── AUTHOR BLOCK ── */
.author-block {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: var(--navy2);
  border: 1px solid rgba(245, 197, 24, .15);
  border-radius: 16px;
  padding: 28px;
}

.author-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  flex-shrink: 0;
}

.author-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

.author-title {
  font-size: .82rem;
  color: var(--gray);
  margin-bottom: 10px;
}

.author-bio {
  font-size: .9rem;
  color: var(--light);
}

/* ── BREADCRUMBS ── */
.breadcrumbs {
  padding: 12px 0;
  font-size: .82rem;
  color: var(--gray);
}

.breadcrumbs a {
  color: var(--gray);
}

.breadcrumbs a:hover {
  color: var(--gold);
}

.breadcrumbs span {
  color: var(--gold);
}

/* ── FAQ ── */
.faq-item {
  border: 1px solid rgba(245, 197, 24, .12);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-q {
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: .95rem;
  background: var(--navy2);
  transition: background var(--trans);
}

.faq-q:hover {
  background: var(--navy3);
}

.faq-q .arrow {
  color: var(--gold);
  font-size: 1.2rem;
  transition: transform var(--trans);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  background: var(--navy3);
  font-size: .9rem;
  color: var(--light);
}

.faq-a.open {
  max-height: 200px;
  padding: 16px 20px;
}

.faq-q.active .arrow {
  transform: rotate(180deg);
}

/* ── REVIEW STARS ── */
.stars {
  color: var(--gold);
  letter-spacing: 2px;
}

.review-card {
  background: var(--navy3);
  border-radius: 12px;
  padding: 20px;
  border-left: 3px solid var(--gold);
}

.review-user {
  font-weight: 700;
  margin-bottom: 4px;
}

.review-text {
  font-size: .88rem;
  color: var(--light);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  border-top: 2px solid rgba(245, 197, 24, .25);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--gray);
  font-size: .88rem;
  margin-top: 14px;
  max-width: 280px;
}

.footer-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer-col h4 {
  color: var(--gold);
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 9px;
}

.footer-col ul li a {
  color: var(--gray);
  font-size: .88rem;
  transition: color var(--trans);
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: var(--gray);
  font-size: .8rem;
}

.footer-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-badge {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: .72rem;
  color: var(--gray);
}

.age-badge {
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: .82rem;
  padding: 5px 10px;
  border-radius: 6px;
}

/* ── APP SCREENS ── */
.app-screen {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .6);
  border: 2px solid rgba(245, 197, 24, .2);
}

.app-screen img {
  width: 100%;
  object-fit: cover;
}

/* ── FEATURE LIST ── */
.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list .fi {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-list .ft {
  font-size: .9rem;
  color: var(--light);
}

.feature-list .fh {
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

/* ── FORM STYLES ── */
.form-wrap {
  max-width: 460px;
  margin: 0 auto;
  background: var(--navy2);
  border: 1px solid rgba(245, 197, 24, .2);
  border-radius: 18px;
  padding: 40px;
}

.form-title {
  text-align: center;
  margin-bottom: 6px;
}

.form-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: .9rem;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: .85rem;
  color: var(--light);
  margin-bottom: 7px;
  font-weight: 600;
}

.form-group input,
.form-group select {
  width: 100%;
  background: var(--navy3);
  border: 1px solid rgba(245, 197, 24, .2);
  border-radius: 8px;
  color: var(--white);
  padding: 12px 14px;
  font-size: .95rem;
  outline: none;
  transition: border-color var(--trans);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group input::placeholder {
  color: var(--gray);
}

.form-divider {
  text-align: center;
  color: var(--gray);
  font-size: .85rem;
  margin: 16px 0;
}

.social-login {
  display: flex;
  gap: 10px;
}

.social-btn {
  flex: 1;
  padding: 11px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .88rem;
  border: 1px solid rgba(255, 255, 255, .15);
  background: var(--navy3);
  color: var(--white);
  cursor: pointer;
  transition: all var(--trans);
  text-align: center;
}

.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.form-footer {
  text-align: center;
  margin-top: 18px;
  font-size: .85rem;
  color: var(--gray);
}

.password-wrap {
  position: relative;
}

.password-wrap input {
  padding-right: 44px;
}

.toggle-pw {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 1.1rem;
  background: none;
  border: none;
  color: var(--gray);
}

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: linear-gradient(135deg, rgba(245, 197, 24, .1), rgba(255, 140, 0, .07));
  border: 1px solid rgba(245, 197, 24, .3);
  border-radius: 12px;
  padding: 22px 24px;
  margin: 24px 0;
}

.highlight-box p {
  margin: 0;
}

/* ── STEP LIST ── */
.steps {
  counter-reset: step;
  list-style: none;
}

.steps li {
  counter-increment: step;
  padding: 18px 0 18px 60px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  position: relative;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 18px;
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  font-weight: 800;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps li:last-child {
  border-bottom: none;
}

.step-title {
  font-weight: 700;
  margin-bottom: 4px;
}

.step-text {
  font-size: .9rem;
  color: var(--gray);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .hero-img {
    width: 360px;
    height: 320px;
  }
}

@media (max-width: 768px) {

  .main-nav,
  .header-cta .btn-outline {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header-cta .tracker-btn {
    font-size: .8rem;
    padding: 8px 14px;
  }

  .hero {
    min-height: auto;
    flex-direction: column;
    padding-top: 100px;
    padding-bottom: 40px;
    justify-content: center;
    text-align: center;
  }

  .hero-img {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    display: block;
    width: 100%;
    max-width: 280px;
    height: 200px;
    margin: 0 auto 30px auto;
    border-radius: 20px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-bar {
    flex-wrap: wrap;
  }

  .stat-item {
    flex: 1 1 45%;
    border-right: none;
    border-bottom: 1px solid rgba(245, 197, 24, .15);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .author-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .donut {
    width: 150px;
    height: 150px;
  }

  .chart-container {
    padding: 18px;
  }

  .bar-label {
    width: 100px;
    font-size: .78rem;
  }

  .table-wrap {
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 0;
  }

  .gauge-wrap {
    justify-content: center;
  }

  .gauge svg {
    width: 110px;
    height: 72px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .section {
    padding: 44px 0;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .stats-bar {
    flex-direction: column;
  }

  .stat-item {
    flex: 1 1 100%;
  }

  .donut {
    width: 130px;
    height: 130px;
  }

  .donut-pct {
    font-size: 1.4rem;
  }

  .form-wrap {
    padding: 24px 16px;
  }

  .social-login {
    flex-direction: column;
  }

  .bar-label {
    width: 80px;
    font-size: .72rem;
  }

  .rtp-name {
    width: 110px;
    font-size: .8rem;
  }

  .bonus-amount {
    font-size: 1.6rem;
  }

  .tracker-btn {
    font-size: .78rem;
    padding: 8px 12px;
  }
}

/* ── SAFE AREA INSETS (notch phones) ── */
.site-header {
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}

.site-footer {
  padding-bottom: calc(30px + env(safe-area-inset-bottom, 0px));
}

/* ── COOKIE CONSENT BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: env(safe-area-inset-bottom, 0px);
  left: 0;
  right: 0;
  z-index: 8000;
  background: var(--navy2);
  border-top: 2px solid var(--gold);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, .6);
  transform: translateY(0);
  transition: transform .3s ease;
}

.cookie-banner.hidden {
  transform: translateY(120%);
}

.cookie-banner p {
  flex: 1;
  font-size: .88rem;
  color: var(--light);
  margin: 0;
  min-width: 220px;
}

.cookie-banner p a {
  color: var(--gold);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-accept {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  cursor: pointer;
  font-size: .88rem;
  min-height: 44px;
}

.cookie-accept:hover {
  background: var(--yellow);
}

.cookie-reject {
  background: transparent;
  color: var(--gray);
  border: 1px solid rgba(255, 255, 255, .2);
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: .88rem;
  min-height: 44px;
}

.cookie-reject:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, .4);
}

@media (max-width: 480px) {
  .cookie-banner {
    padding: 14px 16px;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-accept,
  .cookie-reject {
    flex: 1;
    text-align: center;
  }
}

/* ── BUTTON TOUCH TARGETS ── */
.btn,
.tracker-btn,
.hamburger {
  min-height: 44px;
  min-width: 44px;
}

/* ── HIGH CONTRAST SUPPORT ── */
@media (prefers-contrast: high) {
  :root {
    --gold: #ffdd00;
    --gray: #cccccc;
  }

  .card,
  .bonus-card,
  .chart-container {
    border-width: 2px;
  }
}

/* ── PRINT STYLES ── */
@media print {

  .site-header,
  .mobile-nav,
  .cookie-banner,
  .tracker-btn,
  .hamburger {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  .sc-table th {
    background: #333;
  }

  .footer-bottom {
    border-top: 1px solid #ccc;
  }
}

/* ── FORM INPUT IOS ZOOM FIX ── */
@media (max-width: 768px) {

  .form-group input,
  .form-group select,
  .filter-input,
  .filter-select {
    font-size: 16px !important;
    /* Prevents iOS auto-zoom */
  }
}