/* =====================================================
   JUGABET ONLINE CHILE — MASTER STYLESHEET
   Domain: juga-bet-online.cl
   Colors: Navy #0a0e1a · Gold #f5b800 · Red #e63946
   ===================================================== */

/* === 1. CSS VARIABLES === */
:root {
  --bg-primary:    #0a0e1a;
  --bg-secondary:  #0d1527;
  --bg-card:       #131e35;
  --bg-card2:      #1a2540;
  --border-color:  rgba(245,184,0,0.15);
  --border-dark:   rgba(255,255,255,0.06);

  --gold:          #f5b800;
  --gold-light:    #ffd700;
  --gold-dim:      rgba(245,184,0,0.12);
  --red:           #e63946;
  --red-dark:      #c1121f;
  --green:         #06d6a0;
  --green-dim:     rgba(6,214,160,0.12);
  --blue:          #4361ee;
  --purple:        #7b2d8b;

  --text-primary:  #ffffff;
  --text-secondary:#b0bec5;
  --text-muted:    #607080;

  --shadow-gold:   0 4px 24px rgba(245,184,0,0.18);
  --shadow-card:   0 4px 20px rgba(0,0,0,0.4);
  --shadow-deep:   0 8px 40px rgba(0,0,0,0.6);

  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     32px;

  --header-h:      70px;
  --container:     1240px;
  --font-main:     'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

/* === 2. RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-main);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-light); }
img, svg { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
table { border-collapse: collapse; width: 100%; }

/* === 3. TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(1.75rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.15rem; }
p  { color: var(--text-secondary); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { color: var(--text-primary); }

.text-gold   { color: var(--gold); }
.text-red    { color: var(--red); }
.text-green  { color: var(--green); }
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }
.text-sm     { font-size: .875rem; }
.text-xs     { font-size: .75rem; }

/* === 4. LAYOUT === */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section    { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 96px 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 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-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }

.flex     { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-gap { display: flex; align-items: center; gap: 12px; }
.flex-wrap { flex-wrap: wrap; }
.flex-col  { flex-direction: column; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }

/* === 5. SECTION HEADERS === */
.section-head { margin-bottom: 48px; }
.section-head.center { text-align: center; }
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(245,184,0,0.3);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.section-title { margin-bottom: 12px; }
.section-title span { color: var(--gold); }
.section-desc { color: var(--text-secondary); max-width: 640px; font-size: 1.05rem; }
.section-head.center .section-desc { margin: 0 auto; }

/* === 6. BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: .95rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: all .25s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-gold {
  background: linear-gradient(135deg, #f5b800, #ffd700);
  color: #0d1527;
  box-shadow: 0 4px 16px rgba(245,184,0,0.3);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #ffd700, #f5b800);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: #0d1527;
}
.btn-red {
  background: linear-gradient(135deg, #e63946, #c1121f);
  color: #fff;
  box-shadow: 0 4px 16px rgba(230,57,70,0.3);
}
.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(230,57,70,0.4);
  color: #fff;
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold-dim);
  transform: translateY(-2px);
  color: var(--gold-light);
}
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text-primary);
  border: 1px solid var(--border-dark);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: #fff; }
.btn-sm { padding: 8px 18px; font-size: .85rem; }
.btn-lg { padding: 16px 40px; font-size: 1.1rem; }
.btn-xl { padding: 20px 52px; font-size: 1.2rem; letter-spacing: .5px; }
.btn-block { width: 100%; display: flex; }
.btn-pulse {
  animation: pulse-gold 2.5s ease-in-out infinite;
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 4px 16px rgba(245,184,0,0.3); }
  50%       { box-shadow: 0 4px 32px rgba(245,184,0,0.7); }
}

/* === 7. CARDS === */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.card-body { padding: 24px; }
.card-header { padding: 20px 24px; border-bottom: 1px solid var(--border-color); }
.card-footer { padding: 16px 24px; border-top: 1px solid var(--border-color); background: rgba(255,255,255,0.02); }
.card-glass {
  background: rgba(19,30,53,0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(245,184,0,0.12);
}
.card-gold-top { border-top: 3px solid var(--gold); }
.card-highlight {
  background: linear-gradient(135deg, #1a2540, #0d1e3a);
  border: 1px solid rgba(245,184,0,0.3);
  box-shadow: 0 0 32px rgba(245,184,0,0.08);
}

/* === 8. BADGES === */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  font-size: .72rem;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.badge-gold   { background: rgba(245,184,0,0.15); color: var(--gold); border: 1px solid rgba(245,184,0,0.3); }
.badge-red    { background: rgba(230,57,70,0.15); color: var(--red); border: 1px solid rgba(230,57,70,0.3); }
.badge-green  { background: rgba(6,214,160,0.15); color: var(--green); border: 1px solid rgba(6,214,160,0.3); }
.badge-blue   { background: rgba(67,97,238,0.15); color: #748ffc; border: 1px solid rgba(67,97,238,0.3); }
.badge-pulse { position: relative; }
.badge-pulse::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  margin-right: 4px;
  animation: livePulse 1.4s ease-in-out infinite;
}
@keyframes livePulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(1.4); }
}

/* === 9. HEADER & NAVIGATION === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,14,26,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  height: var(--header-h);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}
.site-logo { display: flex; align-items: center; flex-shrink: 0; }
.site-logo img { height: 42px; width: auto; }

/* Tracker CTA in header */
.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Desktop Nav */
.nav-desktop { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.nav-desktop a {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--gold);
  background: var(--gold-dim);
}

/* Hamburger + Mobile Nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all .3s;
}
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  overflow-y: auto;
  padding: 20px;
  z-index: 999;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--border-dark);
  transition: color .2s, background .2s;
}
.nav-mobile a:hover, .nav-mobile a.active {
  color: var(--gold);
  background: var(--gold-dim);
}
.nav-mobile .mobile-cta-wrap {
  display: flex;
  gap: 12px;
  padding: 20px 0 0;
}
.nav-mobile .mobile-cta-wrap .btn { flex: 1; justify-content: center; }

/* === 10. HERO SECTIONS === */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0e1a 0%, #0d1e3a 50%, #1a0a2e 100%);
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(245,184,0,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(67,97,238,0.1) 0%, transparent 50%);
  z-index: 0;
}
.hero .container { position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.hero-title { margin-bottom: 20px; }
.hero-desc { font-size: 1.1rem; color: var(--text-secondary); max-width: 540px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-stats { display: flex; gap: 32px; margin-top: 48px; flex-wrap: wrap; }
.hero-stat-item .value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
}
.hero-stat-item .label { font-size: .8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* Hero variants */
.hero-sm { min-height: 300px; }
.hero-md { min-height: 400px; }
.hero-split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 48px; }

/* Floating cards in hero */
.hero-visual { position: relative; }
.hero-visual .float-card {
  position: absolute;
  background: rgba(19,30,53,0.9);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: .85rem;
  backdrop-filter: blur(8px);
  animation: float 3s ease-in-out infinite;
}
.hero-visual .float-card:nth-child(2) { animation-delay: -1s; }
.hero-visual .float-card:nth-child(3) { animation-delay: -2s; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* === 11. SVG ILLUSTRATIONS / IMAGES === */
.img-wrap { overflow: hidden; border-radius: var(--radius-md); }
.img-hero { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.img-card { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.img-portrait { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.img-wide { width: 100%; aspect-ratio: 21/9; object-fit: cover; }
.img-thumb { width: 100%; aspect-ratio: 16/10; object-fit: cover; }

/* === 12. STATS BAR === */
.stats-bar {
  background: linear-gradient(90deg, #0d1527 0%, #142038 50%, #0d1527 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
}
.stats-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}
.stat-item { text-align: center; flex: 1; min-width: 120px; }
.stat-item .num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-item .lbl {
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stat-divider { width: 1px; height: 40px; background: var(--border-dark); flex-shrink: 0; }

/* === 13. TABLES === */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.data-table { min-width: 600px; border-radius: var(--radius-md); overflow: hidden; }
.data-table thead tr {
  background: linear-gradient(90deg, #0d1527, #1a2540);
  border-bottom: 2px solid var(--gold);
}
.data-table th {
  padding: 14px 16px;
  text-align: left;
  font-size: .8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}
.data-table td {
  padding: 12px 16px;
  font-size: .9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-dark);
  white-space: nowrap;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tbody tr { background: var(--bg-card); transition: background .2s; }
.data-table tbody tr:nth-child(even) { background: rgba(26,37,64,0.5); }
.data-table tbody tr:hover { background: var(--bg-card2); }
.data-table .highlight-row { background: rgba(245,184,0,0.06) !important; border-left: 3px solid var(--gold); }

/* Comparison table */
.compare-table th:first-child, .compare-table td:first-child { min-width: 160px; }
.compare-table .check { color: var(--green); font-size: 1.1rem; }
.compare-table .cross { color: var(--red); font-size: 1.1rem; }
.compare-table .best-col { background: rgba(245,184,0,0.05); }

/* === 14. CHARTS === */

/* Bar Chart (CSS) */
.bar-chart { padding: 24px 0; }
.bar-chart-row { display: flex; align-items: center; margin-bottom: 14px; }
.bar-chart-label { min-width: 140px; font-size: .85rem; color: var(--text-secondary); flex-shrink: 0; }
.bar-chart-track {
  flex: 1;
  height: 28px;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.bar-chart-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--gold), #ffd700);
  position: relative;
  transition: width 1s ease;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
}
.bar-chart-fill.red   { background: linear-gradient(90deg, var(--red), #ff6b6b); }
.bar-chart-fill.green { background: linear-gradient(90deg, var(--green), #06f1b6); }
.bar-chart-fill.blue  { background: linear-gradient(90deg, var(--blue), #748ffc); }
.bar-chart-fill.purple{ background: linear-gradient(90deg, var(--purple), #c77dff); }
.bar-chart-val { font-size: .75rem; font-weight: 700; color: #0d1527; }
.bar-chart-pct { min-width: 42px; text-align: right; font-size: .82rem; color: var(--gold); font-weight: 700; margin-left: 10px; }

/* Horizontal progress bars */
.progress-bar-wrap { margin-bottom: 16px; }
.progress-bar-label { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: .85rem; }
.progress-bar-track { height: 10px; background: rgba(255,255,255,0.06); border-radius: 10px; overflow: hidden; }
.progress-bar-fill { height: 100%; border-radius: 10px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.progress-bar-fill.green { background: linear-gradient(90deg, var(--green), #00f5d4); }
.progress-bar-fill.red { background: linear-gradient(90deg, var(--red), #ff6b6b); }
.progress-bar-fill.blue { background: linear-gradient(90deg, var(--blue), #748ffc); }

/* Donut Chart (SVG-based) */
.donut-chart-wrap { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.donut-svg { width: 180px; height: 180px; flex-shrink: 0; }
.donut-legend { flex: 1; min-width: 160px; }
.donut-legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: .875rem;
}
.donut-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.donut-legend-item .pct { margin-left: auto; font-weight: 700; color: var(--text-primary); }

/* Gauge / Semi-donut */
.gauge-wrap { text-align: center; }
.gauge-svg { width: 200px; height: 110px; }
.gauge-label { margin-top: 8px; }
.gauge-value { font-size: 2rem; font-weight: 800; color: var(--gold); }
.gauge-sublabel { font-size: .75rem; color: var(--text-muted); }

/* Rating stars */
.stars { display: flex; gap: 2px; }
.star-full  { color: var(--gold); }
.star-half  { color: var(--gold); opacity: .6; }
.star-empty { color: var(--text-muted); }
.rating-score { font-size: 2.2rem; font-weight: 800; color: var(--gold); }
.rating-count { font-size: .8rem; color: var(--text-muted); }

/* === 15. TABS === */
.tabs { margin-bottom: 24px; }
.tab-nav {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-md);
  padding: 4px;
  overflow-x: auto;
  flex-wrap: wrap;
}
.tab-btn {
  flex: 1;
  min-width: max-content;
  padding: 9px 18px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: all .2s;
  white-space: nowrap;
  text-align: center;
}
.tab-btn.active, .tab-btn:hover {
  background: var(--gold);
  color: #0d1527;
}
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn .3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* === 16. ACCORDION / FAQ === */
.accordion-item {
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 8px;
}
.accordion-item + .accordion-item { margin-top: 0; }
details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-card);
  list-style: none;
  transition: background .2s;
  user-select: none;
}
details summary::-webkit-details-marker { display: none; }
details summary:hover { background: var(--bg-card2); }
details summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--gold);
  transition: transform .3s;
  flex-shrink: 0;
  margin-left: 12px;
}
details[open] summary { background: var(--bg-card2); }
details[open] summary::after { transform: rotate(45deg); }
.accordion-body {
  padding: 16px 20px;
  background: rgba(10,14,26,0.5);
  font-size: .9rem;
  color: var(--text-secondary);
  border-top: 1px solid var(--border-dark);
}

/* === 17. BREADCRUMBS === */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 0;
  font-size: .82rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--text-muted); opacity: .4; }
.breadcrumb .current { color: var(--text-secondary); }

/* === 18. GAME CARDS === */
.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  cursor: pointer;
}
.game-card:hover { transform: translateY(-6px) scale(1.01); box-shadow: var(--shadow-deep); }
.game-card-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.game-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.game-card:hover .game-card-thumb img { transform: scale(1.08); }
.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.game-card:hover .game-card-overlay { opacity: 1; }
.game-card-body { padding: 12px 14px; }
.game-card-title { font-size: .9rem; font-weight: 700; margin-bottom: 4px; }
.game-card-meta { font-size: .75rem; color: var(--text-muted); display: flex; justify-content: space-between; }
.game-card-rtp { color: var(--green); font-weight: 700; }

/* Slot machine SVG game thumbnails */
.slot-thumb {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

/* === 19. PAYMENT ICONS === */
.payment-grid { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.payment-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 48px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  font-size: .7rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-align: center;
  padding: 4px;
  transition: all .2s;
}
.payment-icon:hover {
  background: rgba(245,184,0,0.08);
  border-color: var(--gold);
  color: var(--gold);
}

/* === 20. BONUS CARDS === */
.bonus-card {
  background: linear-gradient(135deg, #131e35, #0d1e3a);
  border: 1px solid rgba(245,184,0,0.25);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform .25s;
}
.bonus-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(245,184,0,0.12), transparent 70%);
  border-radius: 50%;
}
.bonus-card:hover { transform: translateY(-4px); }
.bonus-amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.bonus-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.bonus-terms { font-size: .78rem; color: var(--text-muted); }
.bonus-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--red);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}

/* === 21. STEP GUIDE === */
.steps { counter-reset: step; }
.step-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  position: relative;
}
.step-item::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 52px;
  bottom: -32px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.step-item:last-child::after { display: none; }
.step-num {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: linear-gradient(135deg, #f5b800, #ffd700);
  color: #0d1527;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .95rem;
  counter-increment: step;
  flex-shrink: 0;
}
.step-content h4 { margin-bottom: 6px; }
.step-content p { font-size: .9rem; margin: 0; }

/* === 22. AUTHOR SECTION === */
.author-card {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.author-avatar {
  width: 120px;
  min-width: 120px;
  height: 160px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--gold);
}
.author-avatar svg, .author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-meta .name { font-size: 1.4rem; font-weight: 800; margin-bottom: 4px; }
.author-meta .title { color: var(--gold); font-size: .85rem; font-weight: 700; margin-bottom: 12px; }
.author-meta .bio { font-size: .9rem; margin-bottom: 16px; }
.author-stats { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 16px; }
.author-stat { text-align: center; }
.author-stat .val { font-size: 1.3rem; font-weight: 800; color: var(--gold); }
.author-stat .key { font-size: .72rem; color: var(--text-muted); text-transform: uppercase; }

/* === 23. NOTIFICATION / WARNING BARS === */
.responsible-bar {
  background: rgba(230,57,70,0.08);
  border-bottom: 1px solid rgba(230,57,70,0.2);
  padding: 8px 0;
  text-align: center;
  font-size: .78rem;
  color: var(--text-muted);
}
.responsible-bar strong { color: var(--red); }

.info-bar {
  background: rgba(245,184,0,0.08);
  border: 1px solid rgba(245,184,0,0.2);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: .85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* === 24. TESTIMONIALS === */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 8px; left: 16px;
  font-size: 4rem;
  color: var(--gold);
  opacity: .2;
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial-text { font-size: .9rem; color: var(--text-secondary); margin-bottom: 16px; padding-top: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--red));
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 800; color: #0d1527;
  flex-shrink: 0;
}
.testimonial-name { font-size: .88rem; font-weight: 700; }
.testimonial-city { font-size: .75rem; color: var(--text-muted); }

/* === 25. FOOTER === */
.site-footer {
  background: #060a13;
  border-top: 1px solid var(--border-color);
  padding: 64px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: .85rem; color: var(--text-muted); max-width: 260px; margin-bottom: 20px; }
.footer-heading { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .85rem; color: var(--text-muted); transition: color .2s; display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-legal { font-size: .75rem; color: var(--text-muted); }
.footer-age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 2px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-size: .7rem;
  font-weight: 800;
}
.footer-licenses { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer-license-badge {
  padding: 4px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  font-size: .7rem;
  color: var(--text-muted);
}

/* Social icons */
.social-links { display: flex; gap: 10px; margin-top: 12px; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  color: var(--text-muted);
  transition: all .2s;
}
.social-link:hover { background: var(--gold-dim); border-color: var(--gold); color: var(--gold); }

/* === 26. FORMS === */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: .85rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 6px; }
.form-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: .95rem;
  transition: border-color .2s, background .2s;
}
.form-input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(245,184,0,0.04);
}
.form-input::placeholder { color: var(--text-muted); }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23607080' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  padding-right: 36px;
}
.form-hint { font-size: .78rem; color: var(--text-muted); margin-top: 4px; }
.form-error { font-size: .78rem; color: var(--red); margin-top: 4px; }
.form-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; }
.form-divider::before, .form-divider::after { content: ''; flex: 1; height: 1px; background: var(--border-dark); }
.form-divider span { font-size: .78rem; color: var(--text-muted); }

/* === 27. FEATURE CARDS === */
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform .25s, border-color .25s;
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(245,184,0,0.3); }
.feature-icon {
  width: 56px; height: 56px;
  background: var(--gold-dim);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.feature-card h4 { margin-bottom: 8px; }
.feature-card p { font-size: .88rem; margin: 0; }

/* === 28. SEO ARTICLE SECTION === */
.article-body { max-width: 860px; }
.article-body h2 { margin: 36px 0 16px; font-size: 1.5rem; }
.article-body h3 { margin: 28px 0 12px; font-size: 1.2rem; color: var(--gold); }
.article-body p  { margin-bottom: 16px; }
.article-body ul,
.article-body ol { margin: 16px 0 16px 24px; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: 8px; color: var(--text-secondary); font-size: .95rem; }
.article-body .highlight-box {
  background: var(--gold-dim);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 24px 0;
}
.article-body .highlight-box p { margin: 0; }
.article-toc { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 24px; margin-bottom: 32px; }
.article-toc h4 { margin-bottom: 12px; font-size: 1rem; }
.article-toc ol { margin-left: 20px; list-style: decimal; }
.article-toc li { margin-bottom: 8px; font-size: .88rem; }
.article-toc a { color: var(--text-secondary); }
.article-toc a:hover { color: var(--gold); }

/* === 29. LIVE GAME ELEMENTS === */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(230,57,70,0.15);
  border: 1px solid rgba(230,57,70,0.3);
  color: var(--red);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 20px;
}
.live-dot {
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: livePulse 1s infinite;
}
.dealer-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-dark);
}
.dealer-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0d1527, #1a0a2e);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}

/* === 30. MOBILE APP SECTION === */
.phone-mockup {
  width: 260px;
  height: 520px;
  background: #131e35;
  border: 3px solid rgba(245,184,0,0.4);
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 0 6px rgba(245,184,0,0.06);
}
.phone-notch {
  width: 100px; height: 28px;
  background: #0a0e1a;
  border-radius: 0 0 20px 20px;
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.phone-screen {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* === 31. PROVIDER LOGOS === */
.provider-grid { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.provider-logo {
  padding: 10px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  font-size: .8rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all .2s;
}
.provider-logo:hover { background: rgba(245,184,0,0.06); border-color: rgba(245,184,0,0.3); color: var(--gold); }

/* === 32. PAGINATION === */
.pagination { display: flex; align-items: center; gap: 8px; justify-content: center; padding: 32px 0; }
.page-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all .2s;
}
.page-btn.active { background: var(--gold); color: #0d1527; border-color: var(--gold); }
.page-btn:hover:not(.active) { border-color: var(--gold); color: var(--gold); }

/* === 33. BLOG CARDS === */
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.blog-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.blog-thumb img, .blog-thumb svg { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 20px; }
.blog-meta { font-size: .75rem; color: var(--text-muted); margin-bottom: 8px; display: flex; gap: 12px; align-items: center; }
.blog-category { color: var(--gold); }
.blog-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; line-height: 1.35; }
.blog-title a { color: var(--text-primary); }
.blog-title a:hover { color: var(--gold); }
.blog-excerpt { font-size: .85rem; color: var(--text-muted); margin-bottom: 16px; }
.blog-readmore { font-size: .82rem; font-weight: 700; color: var(--gold); display: flex; align-items: center; gap: 4px; }

/* === 34. MISC UTILITIES === */
.divider { height: 1px; background: var(--border-dark); margin: 48px 0; }
.divider-gold { background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.icon-sm  { width: 16px; height: 16px; }
.icon-md  { width: 24px; height: 24px; }
.icon-lg  { width: 32px; height: 32px; }
.rounded  { border-radius: 50%; }
.w-full   { width: 100%; }
.hidden   { display: none !important; }
.sr-only  { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* Glow effects */
.glow-gold { text-shadow: 0 0 20px rgba(245,184,0,0.4); }
.glow-box  { box-shadow: 0 0 32px rgba(245,184,0,0.15); }

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, #f5b800, #ffd700, #ff9500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Sticky sidebar */
.sidebar-sticky { position: sticky; top: calc(var(--header-h) + 24px); }

/* Chip tags */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  font-size: .78rem;
  color: var(--text-secondary);
  transition: all .2s;
}
.chip:hover { background: var(--gold-dim); border-color: rgba(245,184,0,0.3); color: var(--gold); }

/* Number bubbles */
.num-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px; height: 24px;
  background: var(--gold);
  color: #0d1527;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 800;
  padding: 0 6px;
}

/* CTA section */
.cta-section {
  background: linear-gradient(135deg, #0d1527 0%, #1a0a2e 50%, #0d1527 100%);
  border: 1px solid rgba(245,184,0,0.2);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(245,184,0,0.06), transparent 60%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { margin-bottom: 32px; font-size: 1.05rem; }

/* === 35. ARTICLE + SIDEBAR LAYOUT === */
.article-sidebar-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

/* === 36. RESPONSIVE === */

@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid .footer-brand { grid-column: 1 / -1; }
  .hero-split { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
  .header-cta .btn-outline { display: none; }
  .header-cta .btn-ghost { display: none; }
  .site-logo img { height: 32px; width: auto; }
  .header-cta .btn-sm { padding: 6px 12px; font-size: .78rem; }
  .header-inner { justify-content: flex-start; gap: 12px; }
  .nav-toggle { margin-left: auto; }
  .header-cta { margin-left: auto; }
}

@media (max-width: 640px) {
  .site-logo img { height: 28px; }
  .header-cta { gap: 6px; }
  .header-cta .btn { padding: 5px 10px; font-size: .72rem; }
}

@media (max-width: 480px) {
  .site-logo img { height: 26px; }
  .header-inner { gap: 8px; }
  .article-sidebar-layout { grid-template-columns: 1fr; }
  .article-sidebar-layout aside { order: -1; }
  .sidebar-sticky { position: static; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .section    { padding: 48px 0; }
  .section-lg { padding: 64px 0; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-grid .footer-brand { grid-column: 1 / -1; }

  .hero { min-height: 400px; }
  .hero-sm { min-height: 240px; }
  .hero-stats { gap: 20px; }
  .hero-stat-item .value { font-size: 1.4rem; }

  .author-card { flex-direction: column; }
  .cta-section { padding: 40px 24px; }

  .stats-bar-inner { gap: 16px; }
  .stat-item .num { font-size: 1.3rem; }
  .stat-divider { display: none; }

  .bar-chart-label { min-width: 100px; font-size: .78rem; }
  .donut-svg { width: 150px; height: 150px; }

  .donut-chart-wrap { flex-direction: column; align-items: center; }

  .phone-mockup { width: 220px; height: 440px; }

  .data-table th, .data-table td { padding: 10px 12px; font-size: .82rem; }
  .table-wrap { margin-left: -20px; margin-right: -20px; border-radius: 0; }

  .bonus-card { padding: 24px; }
  .bonus-amount { font-size: 2.2rem; }

  .tabs .tab-nav { flex-wrap: nowrap; overflow-x: auto; padding: 4px; }
  .tab-btn { min-width: max-content; }

  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }

  .grid-4 { grid-template-columns: 1fr 1fr; gap: 10px; }
  .grid-5 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .btn-xl { padding: 16px 32px; font-size: 1.05rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; justify-content: center; }

  .step-item { flex-direction: column; gap: 12px; }
  .step-item::after { display: none; }

  .stats-bar-inner { justify-content: center; }
  .stat-item { min-width: 90px; }

  .bar-chart-row { flex-wrap: wrap; }
  .bar-chart-label { width: 100%; min-width: unset; margin-bottom: 4px; }
  .bar-chart-track { min-width: unset; }
}

/* === 36. ACCESSIBILITY === */

/* Skip to content link */
.skip-link {
  position: absolute;
  top: -9999px;
  left: -9999px;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--gold);
  color: #0d1527;
  font-weight: 700;
  font-size: .95rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
}
.skip-link:focus {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* Keyboard focus outline */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Remove default outline only when not keyboard-navigating */
:focus:not(:focus-visible) { outline: none; }

/* === 37. COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: #131e35;
  border-top: 1px solid var(--border-color);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
  transform: translateY(0);
  transition: transform .4s ease;
}
.cookie-banner.hidden { transform: translateY(100%); display: none; }
.cookie-banner-text { font-size: .85rem; color: var(--text-secondary); flex: 1; min-width: 240px; }
.cookie-banner-text a { color: var(--gold); }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* === 38. PREFERS-REDUCED-MOTION === */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
  .btn-pulse { animation: none; }
  .badge-pulse::before { animation: none; }
  .live-dot { animation: none; }
  .hero-visual .float-card { animation: none; }
}

/* Content visibility for off-screen sections */
.site-footer { content-visibility: auto; contain-intrinsic-size: 0 400px; }

/* === BREADCRUMB BAR === */
.breadcrumb-bar {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-dark);
  padding: 10px 0;
}
.breadcrumb-bar .breadcrumb { padding: 0; }
.breadcrumb li { display: inline-flex; align-items: center; }
.breadcrumb li + li::before {
  content: '›';
  margin: 0 8px;
  color: var(--text-muted);
  opacity: 0.5;
}
.breadcrumb li[aria-current="page"] { color: var(--text-secondary); }

/* === CONTACT LAYOUT (wider sidebar) === */
.contact-layout { grid-template-columns: 1fr 380px; }
@media (max-width: 1024px) {
  .contact-layout { grid-template-columns: 1fr; }
}

/* === HERO DECORATION — hide large decorative SVG on mobile === */
.hero-deco-svg {
  position: absolute;
  right: -50px;
  top: -30px;
  width: 55%;
  height: 130%;
  z-index: 1;
  opacity: 0.18;
  pointer-events: none;
}
@media (max-width: 768px) {
  .hero-deco-svg { display: none; }
}

/* === MOBILE STATS BAR — prevent overflow on very small screens === */
@media (max-width: 400px) {
  .stats-bar-inner { gap: 10px; }
  .stat-item { min-width: 70px; }
  .stat-item .num { font-size: 1.1rem; }
}

/* === MOBILE HERO FIXES === */
@media (max-width: 480px) {
  .hero-stats { margin-top: 28px; gap: 16px; }
  .hero-stat-item .value { font-size: 1.25rem; }
  .hero { min-height: 480px; }
  .cta-section { padding: 32px 20px; }
  .bonus-card { padding: 20px 16px; }
}

/* === GAME CARD — touch-friendly on mobile === */
@media (max-width: 768px) {
  .game-card-overlay { opacity: 1; background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 50%); }
  .casino-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 380px) {
  .casino-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; }
  .game-card-body { padding: 8px 10px; }
  .game-card-title { font-size: .8rem; }
  .game-card-meta { font-size: .68rem; }
}

/* === TABLE HORIZONTAL SCROLL HINT === */
@media (max-width: 768px) {
  .table-wrap::after {
    content: '← desliza →';
    display: block;
    text-align: center;
    font-size: .7rem;
    color: var(--text-muted);
    padding: 6px 0 0;
  }
}

/* === FOOTER RESPONSIVE FIX === */
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  .footer-licenses { justify-content: center; }
}

/* === BLOG LAYOUT RESPONSIVE === */
@media (max-width: 1024px) {
  .blog-layout { grid-template-columns: 1fr !important; }
}

/* === REGISTER FORM GRID === */
@media (max-width: 480px) {
  .register-name-row { grid-template-columns: 1fr !important; }
}
