﻿/* ==========================================================
   AWINTURA ARGENTINA â€” Master Stylesheet
   Brand colors: Deep Space Purple + Gold
   ========================================================== */

/* --- CSS Variables --- */
:root {
  --aw-dark:        #080718;
  --aw-dark-2:      #0F0D29;
  --aw-dark-3:      #161344;
  --aw-card:        #1C1940;
  --aw-card-2:      #231F50;
  --aw-card-hover:  #2A265D;
  --aw-border:      #2F2B5E;
  --aw-border-2:    #3D3875;

  --aw-purple:      #5E3AEA;
  --aw-purple-2:    #7B5CF0;
  --aw-purple-light:#9D82F8;
  --aw-gold:        #F4C842;
  --aw-gold-2:      #E8A020;
  --aw-gold-dark:   #B87512;
  --aw-orange:      #FF6B35;
  --aw-green:       #22C55E;
  --aw-red:         #EF4444;
  --aw-cyan:        #06B6D4;

  --aw-text:        #FFFFFF;
  --aw-text-muted:  #A09CC5;
  --aw-text-dim:    #6360A0;

  --header-h:       72px;
  --radius:         10px;
  --radius-lg:      18px;
  --radius-xl:      28px;
  --shadow:         0 4px 32px rgba(0,0,0,.5);
  --shadow-gold:    0 0 20px rgba(244,200,66,.2);
  --shadow-card:    0 8px 32px rgba(0,0,0,.4);

  --transition:     .25s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 16px;
}
body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--aw-dark);
  color: var(--aw-text);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--aw-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--aw-gold-2); }
ul, ol { list-style: none; }

/* --- Typography --- */
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; line-height: 1.2; }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); font-weight: 800; line-height: 1.25; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }
h5 { font-size: .95rem; font-weight: 600; }
p { color: var(--aw-text-muted); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { color: var(--aw-text); }

.text-gold  { color: var(--aw-gold); }
.text-green { color: var(--aw-green); }
.text-purple{ color: var(--aw-purple-light); }
.text-muted { color: var(--aw-text-muted); }

/* --- Layout --- */
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: 72px 0;
}
.section-sm {
  padding: 48px 0;
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.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 > *,
.grid-3 > *,
.grid-4 > * { min-width: 0; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* --- Stars Background --- */
.stars-bg {
  position: relative;
  overflow: hidden;
}
.stars-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 15%, #fff 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 60%, rgba(255,255,255,.7) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 55% 25%, #fff 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 80%, rgba(255,255,255,.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 65% 50%, rgba(255,255,255,.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 20% 85%, rgba(255,255,255,.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 10%, rgba(255,255,255,.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 45% 75%, rgba(255,255,255,.4) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* =============================================
   HEADER
   ============================================= */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(8,7,24,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--aw-border);
  display: flex;
  align-items: center;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 16px;
}
.header-logo img {
  height: 44px;
  width: auto;
}
.header-logo {display:flex;align-items:center;}

/* Main Nav */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  color: var(--aw-text-muted);
  font-size: .88rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: all var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--aw-gold);
  background: rgba(244,200,66,.08);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-tracker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--aw-gold) 0%, var(--aw-gold-2) 100%);
  color: #1a0a00;
  font-weight: 800;
  font-size: .85rem;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .8px;
  box-shadow: 0 4px 20px rgba(244,200,66,.35);
  transition: all var(--transition);
  white-space: nowrap;
  animation: pulse-gold 2.5s ease-in-out infinite;
}
.btn-tracker:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(244,200,66,.5);
  color: #1a0a00;
}
@keyframes pulse-gold {
  0%,100%  { box-shadow: 0 4px 20px rgba(244,200,66,.35); }
  50%      { box-shadow: 0 4px 32px rgba(244,200,66,.6); }
}
.btn-login {
  color: var(--aw-text-muted);
  font-size: .85rem;
  font-weight: 600;
  padding: 9px 18px;
  border: 1px solid var(--aw-border-2);
  border-radius: 50px;
  transition: all var(--transition);
}
.btn-login:hover {
  color: var(--aw-text);
  border-color: var(--aw-purple-2);
  background: rgba(94,58,234,.15);
}
.btn-register {
  background: linear-gradient(135deg, var(--aw-purple) 0%, var(--aw-purple-2) 100%);
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 50px;
  transition: all var(--transition);
}
.btn-register:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(94,58,234,.45);
  color: #fff;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  border: none;
  background: transparent;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--aw-text);
  border-radius: 2px;
  transition: all var(--transition);
}
/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: rgba(8,7,24,.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  padding: 24px 20px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .3s ease;
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav a {
  display: block;
  color: var(--aw-text);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 20px;
  border-radius: var(--radius);
  border-left: 3px solid transparent;
  transition: all var(--transition);
}
.mobile-nav a:hover {
  background: rgba(94,58,234,.2);
  border-color: var(--aw-gold);
  color: var(--aw-gold);
}
.mobile-nav-tracker {
  margin: 20px 0 0;
}
.mobile-nav-tracker .btn-tracker {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 14px 24px;
}

/* =============================================
   FOOTER
   ============================================= */
#site-footer {
  background: #050414;
  border-top: 1px solid var(--aw-border);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: .88rem;
  line-height: 1.7;
  margin: 16px 0 20px;
}
.footer-brand img {
  height: 40px;
  width: auto;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--aw-border);
  display: flex; align-items:center; justify-content:center;
  color: var(--aw-text-muted);
  font-size: .9rem;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--aw-purple);
  border-color: var(--aw-purple);
  color: #fff;
  transform: translateY(-2px);
}
.footer-col h5 {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--aw-gold);
  margin-bottom: 18px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: var(--aw-text-muted);
  font-size: .88rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover {
  color: var(--aw-text);
}
.footer-bottom {
  border-top: 1px solid var(--aw-border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: .8rem;
  color: var(--aw-text-dim);
  margin: 0;
}
.footer-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.badge-item {
  background: var(--aw-card);
  border: 1px solid var(--aw-border);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .72rem;
  color: var(--aw-text-muted);
  font-weight: 600;
}
.age-badge {
  background: var(--aw-red);
  color: #fff;
  font-weight: 800;
  border-color: var(--aw-red);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .5px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--aw-gold) 0%, var(--aw-orange) 100%);
  color: #1a0500;
  box-shadow: 0 4px 20px rgba(244,107,53,.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(244,107,53,.5);
  color: #1a0500;
}
.btn-secondary {
  background: linear-gradient(135deg, var(--aw-purple) 0%, var(--aw-purple-2) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(94,58,234,.3);
}
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(94,58,234,.5);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--aw-gold);
  border: 2px solid var(--aw-gold);
}
.btn-outline:hover {
  background: rgba(244,200,66,.1);
  color: var(--aw-gold);
}
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: .82rem; }

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header {
  margin-bottom: 44px;
}
.section-header.center {
  text-align: center;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(244,200,66,.1);
  border: 1px solid rgba(244,200,66,.25);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--aw-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.section-header h2 .accent { color: var(--aw-gold); }
.section-header p {
  font-size: 1rem;
  max-width: 620px;
}
.section-header.center p { margin: 10px auto 0; }
.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--aw-gold), var(--aw-purple));
  border-radius: 3px;
  margin: 12px 0 0;
}
.divider.center { margin: 12px auto 0; }

/* =============================================
   CARDS
   ============================================= */
.card {
  background: var(--aw-card);
  border: 1px solid var(--aw-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.card:hover {
  border-color: var(--aw-border-2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items:center; justify-content:center;
  margin-bottom: 16px;
  font-size: 1.4rem;
}
.card-icon.gold   { background: rgba(244,200,66,.15); }
.card-icon.purple { background: rgba(94,58,234,.2); }
.card-icon.green  { background: rgba(34,197,94,.15); }
.card-icon.orange { background: rgba(255,107,53,.15); }
.card-icon.cyan   { background: rgba(6,182,212,.15); }

/* Stat cards */
.stat-card {
  background: var(--aw-card);
  border: 1px solid var(--aw-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.stat-card .stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--aw-gold);
  line-height: 1;
}
.stat-card .stat-label {
  font-size: .82rem;
  color: var(--aw-text-muted);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: .8px;
}

/* =============================================
   TABLES
   ============================================= */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid var(--aw-border);
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
}
thead th {
  background: var(--aw-card-2);
  color: var(--aw-gold);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 18px;
  text-align: left;
  white-space: nowrap;
  border-bottom: 2px solid var(--aw-border);
}
tbody tr {
  border-bottom: 1px solid var(--aw-border);
  transition: background var(--transition);
}
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: rgba(94,58,234,.07); }
tbody td {
  padding: 13px 18px;
  font-size: .88rem;
  color: var(--aw-text-muted);
  vertical-align: middle;
  white-space: nowrap;
}
td strong { color: var(--aw-text); }
.td-good  { color: var(--aw-green); font-weight: 700; }
.td-warn  { color: var(--aw-gold);  font-weight: 700; }
.td-bad   { color: var(--aw-red);   font-weight: 700; }
.tag-pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
}
.tag-pill.green  { background: rgba(34,197,94,.15);  color: var(--aw-green); }
.tag-pill.gold   { background: rgba(244,200,66,.15);  color: var(--aw-gold); }
.tag-pill.purple { background: rgba(94,58,234,.2);    color: var(--aw-purple-light); }
.tag-pill.cyan   { background: rgba(6,182,212,.15);   color: var(--aw-cyan); }

/* =============================================
   DIAGRAMS & CHARTS
   ============================================= */

/* Bar chart */
.chart-container {
  background: var(--aw-card);
  border: 1px solid var(--aw-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.chart-title {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--aw-text);
}
.bar-chart { display: flex; flex-direction: column; gap: 14px; }
.bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height:32px;
  min-width: 0;
}
.bar-label {
  font-size: .82rem;
  color: var(--aw-text-muted);
  width: 130px;
  flex-shrink: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bar-track {
  flex: 1;
  height: 10px;
  background: rgba(255,255,255,.06);
  border-radius: 6px;
  overflow: hidden;
  min-width: 60px;
}
.bar-fill {
  height: 100%;
  border-radius: 6px;
  transition: width 1.4s cubic-bezier(.4,0,.2,1);
}
.bar-fill.gold   { background: linear-gradient(90deg, var(--aw-gold-dark), var(--aw-gold)); }
.bar-fill.purple { background: linear-gradient(90deg, var(--aw-purple), var(--aw-purple-2)); }
.bar-fill.green  { background: linear-gradient(90deg, #16a34a, var(--aw-green)); }
.bar-fill.cyan   { background: linear-gradient(90deg, #0891b2, var(--aw-cyan)); }
.bar-fill.orange { background: linear-gradient(90deg, #c2410c, var(--aw-orange)); }
.bar-value {
  font-size: .82rem;
  font-weight: 700;
  color: var(--aw-text);
  width: 50px;
  text-align: right;
  flex-shrink: 0;
}

/* Donut chart (CSS) */
.donut-wrapper {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.donut-chart {
  position: relative;
  width: 160px;
  height: 160px;
  flex-shrink: 0;
}
.donut-chart svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.donut-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.donut-center .dc-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--aw-gold);
  line-height: 1;
}
.donut-center .dc-label {
  font-size: .65rem;
  color: var(--aw-text-muted);
  text-transform: uppercase;
  letter-spacing: .8px;
}
.donut-legend { flex: 1; }
.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: .84rem;
}
.legend-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.legend-lbl { color: var(--aw-text-muted); flex: 1; }
.legend-val { font-weight: 700; color: var(--aw-text); }

/* Progress/gauge bars */
.progress-row {
  margin-bottom: 18px;
}
.progress-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: .84rem;
}
.progress-track {
  height: 8px;
  background: rgba(255,255,255,.07);
  border-radius: 6px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  border-radius: 6px;
  transition: width 1.4s cubic-bezier(.4,0,.2,1);
}

/* Comparison donut set */
.donut-set {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.donut-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.donut-item .donut-chart { width: 110px; height: 110px; }
.donut-item .dc-num { font-size: 1.1rem; }
.donut-item-label {
  font-size: .78rem;
  color: var(--aw-text-muted);
  text-align: center;
  max-width: 90px;
}

/* Horizontal bar group (sport coverage) */
.hbar-group { display: flex; flex-direction: column; gap: 12px; }
.hbar-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hbar-icon { font-size: 1.3rem; width: 28px; flex-shrink: 0; }
.hbar-label { width: 160px; font-size: .84rem; color: var(--aw-text-muted); flex-shrink: 0; }
.hbar-track { flex: 1; height: 14px; background: rgba(255,255,255,.06); border-radius: 8px; overflow:hidden; min-width: 80px; }
.hbar-fill { height: 100%; border-radius: 8px; }
.hbar-val { font-size: .84rem; font-weight: 700; width: 48px; text-align: right; }

/* Timeline */
.timeline { position: relative; padding-left: 36px; }
.timeline::before {
  content: '';
  position: absolute; left: 10px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--aw-gold), var(--aw-purple), transparent);
}
.timeline-item {
  position: relative;
  margin-bottom: 28px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -30px; top: 4px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--aw-gold);
  border: 3px solid var(--aw-dark);
  box-shadow: 0 0 8px rgba(244,200,66,.5);
}
.timeline-date {
  font-size: .75rem;
  font-weight: 700;
  color: var(--aw-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.timeline-title { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.timeline-desc { font-size: .85rem; color: var(--aw-text-muted); }

/* Gauge semi-circle */
.gauge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gauge-svg { overflow: visible; }
.gauge-value {
  font-size: 2rem;
  font-weight: 900;
  fill: var(--aw-gold);
}
.gauge-sub {
  font-size: .72rem;
  fill: var(--aw-text-muted);
}

/* =============================================
   HERO SECTIONS
   ============================================= */
.hero {
  min-height: 560px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(244,200,66,.12);
  border: 1px solid rgba(244,200,66,.3);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--aw-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.hero h1 .line2 { color: var(--aw-gold); display: block; }
.hero-desc {
  font-size: 1.05rem;
  color: var(--aw-text-muted);
  max-width: 560px;
  margin: 16px 0 32px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--aw-gold);
}
.hero-stat span {
  font-size: .78rem;
  color: var(--aw-text-muted);
  text-transform: uppercase;
  letter-spacing: .8px;
}

/* =============================================
   GAME CARDS
   ============================================= */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.game-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--aw-card);
  border: 1px solid var(--aw-border);
  cursor: pointer;
  transition: all var(--transition);
  aspect-ratio: 3/2;
  width: 100%;
  min-width: 0;
}
.game-card:hover { transform: scale(1.04); border-color: var(--aw-gold); }
.game-card:hover .game-overlay { opacity: 1; }
.game-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.game-overlay {
  position: absolute; inset: 0;
  background: rgba(8,7,24,.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity var(--transition);
}

/* SVG game thumbnails */
.game-thumb-svg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
}

/* =============================================
   BONUS CARDS
   ============================================= */
.bonus-card {
  background: var(--aw-card);
  border: 1px solid var(--aw-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}
.bonus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.bonus-card-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--aw-gold);
  color: #1a0a00;
  font-size: .7rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}
.bonus-card-header {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}
.bonus-card-body { padding: 20px; }
.bonus-amount {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--aw-gold);
  line-height: 1;
}
.bonus-desc {
  font-size: .83rem;
  color: var(--aw-text-muted);
  margin: 8px 0 14px;
}

/* =============================================
   PAYMENT METHOD CARDS
   ============================================= */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
}
.payment-card {
  background: var(--aw-card);
  border: 1px solid var(--aw-border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
}
.payment-card:hover {
  border-color: var(--aw-purple-2);
  background: var(--aw-card-hover);
  transform: translateY(-2px);
}
.payment-icon { font-size: 2rem; margin-bottom: 8px; }
.payment-name { font-size: .78rem; font-weight: 700; color: var(--aw-text-muted); }

/* =============================================
   AUTHOR BLOCK
   ============================================= */
.author-block {
  background: var(--aw-card);
  border: 1px solid var(--aw-border);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.author-avatar {
  width: 100px;
  height: 120px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--aw-gold);
}
.author-avatar svg { width: 100%; height: 100%; }
.author-info h4 { font-size: 1.15rem; margin-bottom: 4px; }
.author-role {
  font-size: .78rem;
  color: var(--aw-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 12px;
}
.author-bio { font-size: .88rem; color: var(--aw-text-muted); line-height: 1.7; }

/* =============================================
   FAQ
   ============================================= */
.faq-item {
  border: 1px solid var(--aw-border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: var(--aw-card);
  padding: 18px 22px;
  text-align: left;
  font-size: .92rem;
  font-weight: 600;
  color: var(--aw-text);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--aw-card-hover); }
.faq-arrow {
  font-size: .75rem;
  color: var(--aw-gold);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  background: var(--aw-card-2);
  padding: 0 22px;
  font-size: .88rem;
  color: var(--aw-text-muted);
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 16px 22px 20px;
}

/* =============================================
   RESPONSIBLE GAMING BANNER
   ============================================= */
.rg-banner {
  background: linear-gradient(135deg, var(--aw-dark-3) 0%, var(--aw-card) 100%);
  border: 1px solid var(--aw-border);
  border-left: 4px solid var(--aw-gold);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.rg-banner-icon { font-size: 2rem; flex-shrink: 0; }
.rg-banner-text strong { display: block; font-size: .9rem; margin-bottom: 3px; }
.rg-banner-text p { font-size: .82rem; color: var(--aw-text-muted); margin: 0; }

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--aw-text-dim);
  padding: 14px 0;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--aw-text-muted); }
.breadcrumb a:hover { color: var(--aw-gold); }
.breadcrumb-sep { opacity: .5; }

/* =============================================
   PHONE MOCKUP (App page)
   ============================================= */
.phone-mockup {
  width: 260px;
  height: 520px;
  background: var(--aw-card);
  border: 3px solid var(--aw-border-2);
  border-radius: 36px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 20px 60px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.05);
}
.phone-notch {
  width: 80px; height: 20px;
  background: var(--aw-dark);
  border-radius: 0 0 14px 14px;
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.phone-screen {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 34px;
}
.phone-screen-content {
  padding: 36px 16px 16px;
  height: 100%;
  background: linear-gradient(160deg, var(--aw-dark-3) 0%, var(--aw-card-2) 100%);
}

/* =============================================
   HIGHLIGHT BOXES
   ============================================= */
.highlight-box {
  background: rgba(244,200,66,.05);
  border: 1px solid rgba(244,200,66,.2);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
}
.info-box {
  background: rgba(94,58,234,.08);
  border: 1px solid rgba(94,58,234,.2);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: .88rem;
  color: var(--aw-text-muted);
}
.info-box strong { color: var(--aw-purple-light); }

/* =============================================
   TOOLTIPS / STAR RATINGS
   ============================================= */
.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--aw-gold);
  font-size: .9rem;
}
.rating-num {
  font-weight: 700;
  font-size: .88rem;
  color: var(--aw-text);
  margin-left: 4px;
}

/* =============================================
   PAGE INNER HERO (non-home)
   ============================================= */
.page-hero {
  padding: 52px 0 48px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--aw-dark-2) 0%, var(--aw-dark-3) 100%);
}
.page-hero > .container { position: relative; z-index: 2; }
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { font-size: 1rem; max-width: 700px; }

/* =============================================
   FORM STYLES (Login / Register)
   ============================================= */
.auth-page {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: radial-gradient(ellipse at top, var(--aw-dark-3) 0%, var(--aw-dark) 70%);
}
.auth-box {
  background: var(--aw-card);
  border: 1px solid var(--aw-border);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  width: 100%;
  max-width: 460px;
  box-shadow: var(--shadow);
}
.auth-box h2 { margin-bottom: 6px; }
.auth-box .auth-sub { font-size: .88rem; color: var(--aw-text-muted); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--aw-text-muted);
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 7px;
}
.form-input {
  width: 100%;
  background: var(--aw-dark-3);
  border: 1.5px solid var(--aw-border);
  border-radius: var(--radius);
  color: var(--aw-text);
  font-size: .92rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  font-family: inherit;
}
.form-input:focus {
  border-color: var(--aw-purple-2);
  box-shadow: 0 0 0 3px rgba(94,58,234,.2);
}
.form-input::placeholder { color: var(--aw-text-dim); }
.form-submit {
  width: 100%;
  margin-top: 8px;
}
.form-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 20px 0;
}
.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--aw-border);
}
.form-divider span { font-size: .8rem; color: var(--aw-text-dim); white-space: nowrap; }
.auth-link {
  text-align: center;
  font-size: .85rem;
  color: var(--aw-text-muted);
  margin-top: 20px;
}
.auth-link a { color: var(--aw-gold); font-weight: 700; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .83rem;
  color: var(--aw-text-muted);
  cursor: pointer;
}
.form-check input { margin-top: 2px; accent-color: var(--aw-purple-2); }

/* =============================================
   MISC
   ============================================= */
.notice-bar {
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.3);
  border-radius: var(--radius);
  padding: 10px 18px;
  font-size: .84rem;
  color: var(--aw-green);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.step-list { counter-reset: step; }
.step-item {
  counter-increment: step;
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aw-purple), var(--aw-purple-2));
  color: #fff;
  font-weight: 800;
  font-size: .9rem;
  display: flex; align-items:center; justify-content:center;
  flex-shrink: 0;
}
.step-content h5 { margin-bottom: 4px; }
.step-content p  { font-size: .85rem; margin: 0; }

/* =============================================
   MOBILE RESPONSIVE
   ============================================= */
@media (max-width: 1080px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .header-actions .btn-login,
  .header-actions .btn-register { display: none; }
  .hero { min-height: auto; }
  .hero-right { display: none; }
  .app-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .app-hero-grid .phone-mockup {
    margin: 0 auto;
  }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .author-block { flex-direction: column; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .section { padding: 50px 0; }
  .chart-container { padding: 18px; }
  .bar-label { width: 100px; }
  .hbar-label { width: 100px; }
  .table-wrap { margin-left: -20px; margin-right: -20px; border-radius: 0; border-left: none; border-right: none; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .donut-wrapper { flex-direction: column; }
  .auth-box { padding: 28px 20px; }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.4rem; }
  .donut-chart { width: 130px; height: 130px; }
  .phone-mockup { width: 220px; height: 430px; }
  .page-hero { padding: 36px 0 32px; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .section { padding: 36px 0; }
  .card { padding: 18px; }
  .game-grid { grid-template-columns: 1fr 1fr; }
  .payment-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 18px; }
  .bar-label { width: 80px; font-size: .75rem; }
  .btn-lg { padding: 13px 24px; font-size: .9rem; }
  .donut-set { gap: 14px; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .stat-card .stat-num { font-size: 1.7rem; }
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .6s ease both; }
.fade-up-2 { animation: fadeUp .6s .15s ease both; }
.fade-up-3 { animation: fadeUp .6s .3s ease both; }

@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.float { animation: float 4s ease-in-out infinite; }

/* ============================================================
   AUTH PAGES (login / registro)
   ============================================================ */
body.auth-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--aw-dark);
  padding: 24px 16px;
}
.auth-bg {
  position: fixed; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(94,58,234,.3) 0%, transparent 55%),
              radial-gradient(ellipse at 75% 80%, rgba(244,200,66,.12) 0%, transparent 50%);
  pointer-events: none;
}
.auth-wrapper {
  position: relative; z-index: 1;
  width: 100%; max-width: 440px;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.auth-wide { max-width: 560px; }
.auth-logo img { display: block; }
.auth-box {
  width: 100%;
  background: var(--aw-card);
  border: 1px solid var(--aw-border);
  border-radius: 16px;
  padding: 36px 32px;
}
.auth-header { text-align: center; margin-bottom: 24px; }
.auth-header h1 { font-size: 1.5rem; margin-bottom: 6px; }
.auth-header p { color: var(--aw-text-muted); font-size: .9rem; }
.auth-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--aw-text-muted); }
.form-group input,
.form-group select {
  background: var(--aw-dark-3);
  border: 1px solid var(--aw-border);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--aw-text);
  font-size: .9rem;
  transition: border-color .2s;
  width: 100%;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--aw-purple-2);
  box-shadow: 0 0 0 3px rgba(94,58,234,.2);
}
.form-link {
  font-size: .78rem; color: var(--aw-purple-2);
  text-decoration: none; align-self: flex-end; margin-top: 2px;
}
.form-check {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .82rem; color: var(--aw-text-muted);
}
.form-check input[type="checkbox"] {
  width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px;
  accent-color: var(--aw-purple);
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-full { width: 100%; justify-content: center; }
.auth-divider {
  text-align: center; position: relative; margin: 20px 0;
  color: var(--aw-text-dim); font-size: .78rem;
}
.auth-divider::before {
  content: ''; position: absolute; top: 50%; left: 0; right: 0;
  height: 1px; background: var(--aw-border);
}
.auth-divider span {
  position: relative; background: var(--aw-card); padding: 0 12px;
}
.auth-social { display: flex; flex-direction: column; gap: 10px; }
.btn-social {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 11px 16px; border-radius: 8px;
  font-size: .88rem; font-weight: 600; text-decoration: none;
  border: 1px solid var(--aw-border);
  background: var(--aw-dark-3); color: var(--aw-text);
  transition: border-color .2s, background .2s;
}
.btn-social:hover { background: var(--aw-card-2); border-color: var(--aw-purple); }
.auth-switch {
  text-align: center; font-size: .84rem; color: var(--aw-text-muted);
  margin: 18px 0 0;
}
.auth-switch a { color: var(--aw-purple-2); text-decoration: none; font-weight: 600; }
.auth-disclaimer {
  font-size: .72rem; color: var(--aw-text-dim); text-align: center;
  max-width: 380px; line-height: 1.5;
}
.auth-disclaimer a { color: var(--aw-text-muted); }

/* Registration multi-step */
.reg-steps {
  display: flex; align-items: center; margin-bottom: 28px;
  gap: 0;
}
.reg-step {
  display: flex; align-items: center; gap: 6px;
  font-size: .75rem; color: var(--aw-text-dim); flex: 1;
  white-space: nowrap;
}
.reg-step span {
  width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 700;
  background: var(--aw-border); color: var(--aw-text-muted);
  flex-shrink: 0;
}
.reg-step.active { color: var(--aw-text); }
.reg-step.active span { background: var(--aw-purple); color: #fff; }
.reg-step.done span { background: var(--aw-green); color: #fff; }
.reg-step-sep { flex: 1; height: 1px; background: var(--aw-border); margin: 0 6px; }
.reg-step-pane { display: none; }
.reg-step-pane.active { display: block; }

/* ============================================================
   LEGAL CONTENT PAGES
   ============================================================ */
.legal-content h2 {
  font-size: 1.15rem;
  color: var(--aw-purple-2);
  margin: 36px 0 12px;
  padding-top: 8px;
  border-top: 1px solid var(--aw-border);
}
.legal-content h3 {
  font-size: .95rem;
  color: var(--aw-text);
  margin: 20px 0 8px;
}
.legal-content p { margin-bottom: 14px; line-height: 1.75; color: var(--aw-text-muted); }
.legal-content ul { padding-left: 20px; margin-bottom: 16px; }
.legal-content li { margin-bottom: 6px; color: var(--aw-text-muted); line-height: 1.6; }
.legal-content a { color: var(--aw-purple-2); }
.legal-content .table-wrap { margin: 16px 0 24px; }

/* ============================================================
   SITEMAP PAGE
   ============================================================ */
.sitemap-section .sitemap-item {
  display: flex; flex-direction: column; gap: 3px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.sitemap-link {
  color: var(--aw-text);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 600;
  transition: color .2s;
}
.sitemap-link:hover { color: var(--aw-purple-2); }
.sitemap-desc { font-size: .78rem; color: var(--aw-text-dim); line-height: 1.4; }
.sitemap-item.root .sitemap-link { font-size: 1rem; color: var(--aw-gold); }

/* ============================================================
   MOBILE RESPONSIVE â€” auth + legal + sitemap
   ============================================================ */
@media (max-width: 640px) {
  .auth-box { padding: 24px 18px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .reg-step { font-size: .68rem; }
  .reg-step-sep { margin: 0 3px; }
}
@media (max-width: 480px) {
  .auth-wrapper { padding: 0; }
}
/* -- Skip navigation (accessibility) -- */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--aw-purple);
  color: #fff;
  padding: 12px 20px;
  z-index: 10000;
  font-weight: 700;
  border-radius: 0 0 8px 0;
  transition: top .2s;
  text-decoration: none;
}
.skip-nav:focus { top: 0; color: #fff; outline: 2px solid var(--aw-gold); outline-offset: 2px; }

/* -- Jackpot counter -- */
.jackpot-counter { font-variant-numeric: tabular-nums; }

/* -- Hidden utility -- */
.hidden { display: none !important; }
