/* =============================================================
   BPLAY CASINO ARGENTINA — Global Stylesheet
   bplay-argentina-casino.com
   Brand: bplay Argentina | Colors: #00C41C green / #080D09 dark
   ============================================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Inter:wght@400;500;600;700;800&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --primary:        #00C41C;
  --primary-dark:   #009615;
  --primary-light:  #00FF41;
  --accent:         #FFD700;
  --accent-2:       #FF6B35;
  --bg-dark:        #080D09;
  --bg-darker:      #040804;
  --bg-card:        #0F1810;
  --bg-card-2:      #142016;
  --bg-card-3:      #192B1C;
  --border:         #1A2E1C;
  --border-2:       #243826;
  --text:           #E4EFE6;
  --text-muted:     #6B8070;
  --text-dim:       #3D5042;
  --white:          #FFFFFF;
  --red:            #FF3B3B;
  --radius:         12px;
  --radius-lg:      20px;
  --radius-sm:      8px;
  --shadow:         0 8px 32px rgba(0,196,28,0.12);
  --shadow-card:    0 4px 20px rgba(0,0,0,0.5);
  --transition:     0.3s ease;
  --max-width:      1280px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; font-size: 16px; }
body {
  background-color: var(--bg-dark);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-light); }
ul, ol { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Rajdhani', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.75rem); }
h4 { font-size: 1.2rem; }
p  { margin-bottom: 1rem; }

/* ===== UTILITIES ===== */
.container   { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 80px 0; }
.section-sm  { padding: 50px 0; }
.text-center { text-align: center; }
.text-green  { color: var(--primary); }
.text-gold   { color: var(--accent); }
.text-muted  { color: var(--text-muted); }
.text-white  { color: var(--white); }

/* ===== BADGE ===== */
.badge {
  display: inline-block; padding: 4px 12px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
}
.badge-green  { background:rgba(0,196,28,0.18); color:var(--primary); border:1px solid rgba(0,196,28,0.3); }
.badge-gold   { background:rgba(255,215,0,0.15); color:var(--accent); border:1px solid rgba(255,215,0,0.25); }
.badge-red    { background:rgba(255,59,59,0.15); color:var(--red); border:1px solid rgba(255,59,59,0.25); }
.badge-new    { background:var(--primary); color:var(--bg-darker); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-weight: 700; font-size: 1rem; cursor: pointer; border: none;
  transition: all var(--transition); text-decoration: none; white-space: nowrap;
  font-family: 'Inter', system-ui, sans-serif;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--bg-darker);
  box-shadow: 0 4px 20px rgba(0,196,28,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,196,28,0.55);
  color: var(--bg-darker);
}
.btn-secondary {
  background: transparent; color: var(--primary); border: 2px solid var(--primary);
}
.btn-secondary:hover { background: var(--primary); color: var(--bg-darker); }
.btn-gold {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #1a1200; font-weight: 800;
  box-shadow: 0 4px 20px rgba(255,215,0,0.35);
}
.btn-gold:hover {
  transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,215,0,0.55); color: #1a1200;
}
.btn-dark { background: var(--bg-card); color: var(--text); border: 1px solid var(--border); }
.btn-dark:hover { border-color: var(--primary); color: var(--primary); }
.btn-lg   { padding: 18px 42px; font-size: 1.1rem; border-radius: var(--radius-lg); }
.btn-sm   { padding: 9px 20px; font-size: 0.875rem; }
.btn-full { width: 100%; justify-content: center; }

/* TRACKER BUTTON */
.btn-tracker {
  background: linear-gradient(135deg, #00FF41 0%, #00C41C 50%, #009615 100%);
  color: #050A05; font-weight: 800; font-size: 0.9rem;
  padding: 12px 24px; border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(0,255,65,0.4);
  animation: pulse-green 2.5s infinite;
  letter-spacing: 0.02em;
}
.btn-tracker:hover {
  transform: translateY(-2px); box-shadow: 0 8px 35px rgba(0,255,65,0.65); color: #050A05;
}
@keyframes pulse-green {
  0%,100% { box-shadow: 0 4px 24px rgba(0,255,65,0.4); }
  50%      { box-shadow: 0 4px 36px rgba(0,255,65,0.72); }
}

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(8,13,9,0.97);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; height: 70px;
}
.header-logo a { display:flex; align-items:center; gap:8px; }
.header-logo img { height: 40px; width: auto; }

.header-nav { display: flex; align-items: center; gap: 2px; }
.header-nav a {
  color: var(--text); padding: 8px 13px; border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 600; transition: var(--transition); white-space: nowrap;
}
.header-nav a:hover, .header-nav a.active {
  color: var(--primary); background: rgba(0,196,28,0.1);
}
.header-cta { display:flex; align-items:center; gap: 10px; }

/* Mobile button */
.mobile-menu-btn {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 8px;
}
.mobile-menu-btn span {
  display: block; width: 25px; height: 2px; background: var(--white);
  transition: var(--transition); border-radius: 2px;
}
.mobile-menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile CTA bar */
.mobile-cta-bar {
  display: none;
  background: rgba(0,196,28,0.08); border-top: 1px solid var(--border); padding: 10px 16px;
}
.mobile-cta-bar .btn-tracker { width: 100%; justify-content: center; font-size: 0.95rem; }

/* Mobile nav drawer */
.mobile-nav {
  display: none; position: fixed; top: 70px; left: 0; right: 0; bottom: 0;
  background: rgba(8,13,9,0.99); backdrop-filter: blur(24px);
  padding: 20px; z-index: 999; overflow-y: auto;
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: flex; align-items: center; gap: 12px;
  color: var(--text); padding: 15px 16px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 1rem; border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--primary); background: rgba(0,196,28,0.08); }
.mobile-nav-cta { padding-top: 16px !important; border-top: 1px solid var(--border); margin-top: 8px; }

/* ===== FOOTER ===== */
.site-footer { background: var(--bg-darker); border-top: 1px solid var(--border); padding: 60px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid var(--border);
}
.footer-brand .footer-logo img { height: 36px; margin-bottom: 16px; }
.footer-desc { color: var(--text-muted); font-size: 0.875rem; line-height: 1.75; margin-bottom: 18px; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.footer-badge {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 5px 12px; font-size: 0.73rem; color: var(--text-muted); font-weight: 600;
}
.footer-col h4 {
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-dim); margin-bottom: 18px; font-family: 'Inter', sans-serif;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.875rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--primary); }
.footer-bottom {
  padding: 20px 0; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: var(--text-dim); font-size: 0.78rem; margin: 0; }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { color: var(--text-dim); font-size: 0.78rem; transition: var(--transition); }
.footer-legal a:hover { color: var(--primary); }
.footer-18 {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%;
  border: 1.5px solid var(--text-dim); color: var(--text-dim); font-size: 0.65rem; font-weight: 700;
  margin-left: 6px;
}
.footer-disclaimer {
  padding: 16px 0; border-top: 1px solid var(--border);
  color: var(--text-dim); font-size: 0.73rem; line-height: 1.6; text-align: center;
}

/* ===== BREADCRUMB ===== */
.breadcrumb { padding: 14px 0; border-bottom: 1px solid var(--border); }
.breadcrumb ol { display:flex; align-items:center; gap:6px; flex-wrap:wrap; }
.breadcrumb ol li { display:flex; align-items:center; gap:6px; color:var(--text-muted); font-size:0.82rem; }
.breadcrumb ol li:not(:last-child)::after { content:'›'; color:var(--text-dim); }
.breadcrumb ol li a { color: var(--text-muted); }
.breadcrumb ol li a:hover { color: var(--primary); }
.breadcrumb ol li:last-child { color: var(--text); }

/* ===== SECTION HEADER ===== */
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-divider { margin: 12px auto; }
.section-label {
  display: inline-block; color: var(--primary); font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 10px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; max-width: 620px; }
.section-header.centered p { margin: 0 auto; }
.section-divider {
  width: 50px; height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
  border-radius: 3px; margin-bottom: 16px;
}

/* ===== CARDS ===== */
.card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; transition: var(--transition);
}
.card:hover { border-color: rgba(0,196,28,0.3); box-shadow: var(--shadow); }
.card-glass {
  background: rgba(15,24,16,0.72); backdrop-filter: blur(20px);
  border: 1px solid rgba(0,196,28,0.14);
}

/* Game Card */
.game-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
}
.game-card:hover {
  transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.55);
  border-color: rgba(0,196,28,0.3);
}
.game-card-img {
  width: 100%; aspect-ratio: 16/9; overflow: hidden; position: relative;
  background: var(--bg-card-3);
}
.game-card-img svg { width: 100%; height: 100%; }
.game-card-body { padding: 14px 16px; }
.game-card-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; color: var(--white); }
.game-card-meta { font-size: 0.78rem; color: var(--text-muted); }
.game-card-badge { position: absolute; top: 8px; right: 8px; }

/* Bonus Card */
.bonus-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px 28px; position: relative; overflow: hidden; transition: var(--transition);
}
.bonus-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
}
.bonus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(0,196,28,0.25); }
.bonus-card.featured { background: var(--bg-card-2); border-color: rgba(0,196,28,0.2); }
.bonus-amount { font-size: 2.4rem; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 4px; }
.bonus-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.bonus-desc { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.6; }
.bonus-terms { font-size: 0.72rem; color: var(--text-dim); margin-top: 12px; }

/* ===== STATS ===== */
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 20px; text-align: center; transition: var(--transition);
}
.stat-card:hover { border-color: rgba(0,196,28,0.3); transform: translateY(-3px); }
.stat-icon { font-size: 2rem; margin-bottom: 12px; }
.stat-number {
  font-size: 2.6rem; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 6px;
  font-family: 'Rajdhani', sans-serif;
}
.stat-label { font-size: 0.85rem; color: var(--text-muted); }

/* ===== FEATURE CARDS ===== */
.feature-icon {
  width: 54px; height: 54px; background: rgba(0,196,28,0.1); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 16px; border: 1px solid rgba(0,196,28,0.2);
}
.feature-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.feature-card p  { color: var(--text-muted); font-size: 0.88rem; margin: 0; line-height: 1.65; }

/* ===== TABLES ===== */
.table-wrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  border-radius: var(--radius); border: 1px solid var(--border);
}
.styled-table {
  width: 100%; min-width: 580px; border-collapse: collapse; font-size: 0.88rem;
}
.styled-table thead { background: var(--bg-card-2); }
.styled-table thead th {
  padding: 13px 18px; text-align: left; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-muted);
  border-bottom: 1px solid var(--border); white-space: nowrap; font-weight: 700;
}
.styled-table tbody tr { border-bottom: 1px solid var(--border); transition: background var(--transition); }
.styled-table tbody tr:last-child { border-bottom: none; }
.styled-table tbody tr:hover { background: rgba(0,196,28,0.04); }
.styled-table tbody td { padding: 13px 18px; color: var(--text); white-space: nowrap; }
.styled-table .highlight { background: rgba(0,196,28,0.07); }
.styled-table .best { color: var(--primary); font-weight: 700; }
.td-check { color: var(--primary); font-size: 1rem; }
.td-cross { color: var(--red); font-size: 1rem; }

/* Rank badge */
.rank { display:inline-flex; align-items:center; justify-content:center; width:28px; height:28px; border-radius:50%; font-weight:800; font-size:0.82rem; }
.rank-1 { background:var(--accent); color:#1a1200; }
.rank-2 { background:#B8C8C0; color:#1a1a1a; }
.rank-3 { background:#A08060; color:#1a1a1a; }
.rank-n { background:var(--bg-card-3); color:var(--text-muted); }

/* Star rating */
.stars { color: var(--accent); letter-spacing: 2px; }

/* ===== PROGRESS BAR ===== */
.progress-wrap { background:var(--bg-card-3); border-radius:50px; height:8px; overflow:hidden; }
.progress-bar  { height:100%; border-radius:50px; background:linear-gradient(90deg,var(--primary),var(--primary-light)); transition:width 1.2s ease; }

/* ===== CSS BAR CHART ===== */
.bar-chart { display:flex; flex-direction:column; gap:14px; }
.bar-item   { display:flex; align-items:center; gap:14px; }
.bar-label  { width:140px; flex-shrink:0; font-size:0.85rem; color:var(--text-muted); text-align:right; }
.bar-track  { flex:1; background:var(--bg-card-3); border-radius:50px; height:34px; overflow:hidden; position:relative; }
.bar-fill   {
  height:100%; border-radius:50px; display:flex; align-items:center; padding-left:14px;
  font-size:0.8rem; font-weight:700; color:var(--bg-darker); min-width:42px;
  transition:width 1.8s cubic-bezier(.4,0,.2,1);
}
.bar-fill-green  { background:linear-gradient(90deg, var(--primary), var(--primary-light)); }
.bar-fill-gold   { background:linear-gradient(90deg, #d97700, #FFD700); color:#1a1200; }
.bar-fill-blue   { background:linear-gradient(90deg, #0066CC, #00AAFF); }
.bar-fill-purple { background:linear-gradient(90deg, #6600CC, #9B59FF); }
.bar-fill-red    { background:linear-gradient(90deg, #CC2200, #FF5533); }
.bar-fill-teal   { background:linear-gradient(90deg, #007A70, #00C4B8); }

/* ===== DONUT CHART ===== */
.donut-wrap   { display:flex; align-items:center; gap:32px; flex-wrap:wrap; }
.donut-svg    { flex-shrink:0; position:relative; }
.donut-svg svg{ display:block; }
.donut-center { position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; }
.donut-center strong { font-size:1.9rem; font-weight:800; color:var(--white); line-height:1; }
.donut-center span   { font-size:0.72rem; color:var(--text-muted); }
.legend { flex:1; min-width:160px; }
.legend-item { display:flex; align-items:center; gap:10px; margin-bottom:10px; }
.legend-dot  { width:10px; height:10px; border-radius:50%; flex-shrink:0; }
.legend-name { font-size:0.85rem; color:var(--text-muted); flex:1; }
.legend-val  { font-size:0.85rem; font-weight:700; color:var(--white); }

/* ===== FAQ ===== */
.faq-item    { border:1px solid var(--border); border-radius:var(--radius); margin-bottom:10px; overflow:hidden; }
.faq-q {
  width:100%; background:var(--bg-card); border:none; padding:18px 22px; text-align:left;
  color:var(--white); font-size:0.95rem; font-weight:600; cursor:pointer;
  display:flex; justify-content:space-between; align-items:center; transition:background var(--transition);
  font-family:'Inter',sans-serif;
}
.faq-q:hover { background:var(--bg-card-2); }
.faq-icon { color:var(--primary); font-size:1.4rem; transition:transform var(--transition); flex-shrink:0; margin-left:12px; line-height:1; }
.faq-item.open .faq-icon { transform:rotate(45deg); }
.faq-a { max-height:0; overflow:hidden; transition:max-height 0.45s ease; background:var(--bg-card); }
.faq-item.open .faq-a { max-height:600px; }
.faq-a-inner { padding:0 22px 18px; color:var(--text-muted); font-size:0.88rem; line-height:1.8; }

/* ===== INFO BOX ===== */
.info-box {
  padding:16px 20px; border-radius:0 var(--radius-sm) var(--radius-sm) 0;
  border-left: 4px solid var(--primary); background:rgba(0,196,28,0.07);
  border-top:1px solid rgba(0,196,28,0.2); border-right:1px solid rgba(0,196,28,0.2);
  border-bottom:1px solid rgba(0,196,28,0.2); margin:20px 0;
}
.info-box.warning { border-left-color:var(--accent); background:rgba(255,215,0,0.07); border-color:rgba(255,215,0,0.2); border-left-color:var(--accent); }
.info-box.danger  { border-left-color:var(--red); background:rgba(255,59,59,0.07); border-color:rgba(255,59,59,0.2); border-left-color:var(--red); }
.info-box p { margin:0; font-size:0.88rem; color:var(--text-muted); }
.info-box strong { color:var(--white); }

/* ===== SEO SECTION ===== */
.seo-section { background:var(--bg-card); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.seo-content   { max-width:860px; }
.seo-content h2 { font-size:1.7rem; margin:40px 0 14px; color:var(--white); }
.seo-content h2:first-child { margin-top:0; }
.seo-content h3 { font-size:1.25rem; margin:26px 0 10px; color:var(--primary); }
.seo-content p  { color:var(--text-muted); font-size:0.92rem; line-height:1.88; }
.seo-content ul, .seo-content ol {
  padding-left:1.6em; margin-bottom:1rem; color:var(--text-muted); font-size:0.92rem; line-height:1.9;
}
.seo-content ul { list-style:disc; }
.seo-content ol { list-style:decimal; }
.seo-content li { margin-bottom:6px; }
.seo-content a  { color:var(--primary); text-decoration:underline; text-underline-offset:3px; }
.seo-content a:hover { color:var(--primary-light); }
.seo-content strong { color:var(--white); font-weight:700; }

/* ===== AUTHOR BOX ===== */
.author-box {
  background:var(--bg-card-2); border:1px solid var(--border); border-radius:var(--radius);
  padding:22px; display:flex; gap:18px; align-items:flex-start; margin:32px 0 8px;
}
.author-avatar { width:68px; height:68px; border-radius:50%; overflow:hidden; flex-shrink:0; border:3px solid var(--primary); }
.author-avatar img { width:100%; height:100%; object-fit:cover; }
.author-info h4 { font-size:0.98rem; margin-bottom:3px; }
.author-info p  { font-size:0.8rem; color:var(--text-muted); margin:0; line-height:1.5; }
.author-meta    { display:flex; gap:12px; flex-wrap:wrap; margin-top:8px; }
.author-meta span { font-size:0.72rem; color:var(--text-dim); }

/* ===== GRID LAYOUTS ===== */
.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; }
.games-grid  { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.features-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.col-70-30 { display:grid; grid-template-columns:1fr 420px; gap:40px; align-items:start; }
.col-30-70 { display:grid; grid-template-columns:380px 1fr; gap:40px; align-items:start; }

/* ===== HERO PAGE ===== */
.page-hero {
  position:relative; background:var(--bg-darker); padding:80px 0; overflow:hidden;
}
.page-hero::before {
  content:''; position:absolute; top:-40%; left:-5%; width:550px; height:550px;
  background:radial-gradient(circle, rgba(0,196,28,0.1) 0%, transparent 65%);
  pointer-events:none;
}
.page-hero::after {
  content:''; position:absolute; bottom:-35%; right:-8%; width:420px; height:420px;
  background:radial-gradient(circle, rgba(0,196,28,0.07) 0%, transparent 65%);
  pointer-events:none;
}

/* ===== STEP LIST ===== */
.steps { display:flex; flex-direction:column; gap:0; }
.step  { display:flex; gap:20px; align-items:flex-start; padding-bottom:32px; position:relative; }
.step:not(:last-child)::after {
  content:''; position:absolute; left:19px; top:46px; bottom:0; width:2px;
  background:var(--border);
}
.step-num {
  width:40px; height:40px; border-radius:50%; background:var(--primary); color:var(--bg-darker);
  display:flex; align-items:center; justify-content:center; font-weight:800; font-size:1.1rem;
  flex-shrink:0; border:2px solid rgba(0,196,28,0.4); position:relative; z-index:1;
}
.step-body h4 { font-size:1.05rem; margin-bottom:6px; }
.step-body p  { color:var(--text-muted); font-size:0.88rem; margin:0; line-height:1.65; }

/* ===== PROVIDERS ===== */
.providers-row { display:flex; flex-wrap:wrap; gap:10px; }
.provider-chip {
  background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius-sm);
  padding:8px 16px; font-size:0.82rem; font-weight:600; color:var(--text-muted);
  transition:var(--transition);
}
.provider-chip:hover { border-color:var(--primary); color:var(--primary); }

/* ===== FORM STYLES (login/register) ===== */
.form-wrap {
  background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius-lg);
  padding:40px; max-width:480px; margin:0 auto;
}
.form-group { margin-bottom:20px; }
.form-group label { display:block; font-size:0.85rem; font-weight:600; margin-bottom:8px; color:var(--text-muted); }
.form-input {
  width:100%; background:var(--bg-card-2); border:1px solid var(--border); border-radius:var(--radius-sm);
  padding:13px 16px; color:var(--white); font-size:0.95rem; font-family:'Inter',sans-serif;
  transition:border-color var(--transition);
}
.form-input:focus { outline:none; border-color:var(--primary); box-shadow:0 0 0 3px rgba(0,196,28,0.12); }
.form-input::placeholder { color:var(--text-dim); }
.form-select {
  width:100%; background:var(--bg-card-2); border:1px solid var(--border); border-radius:var(--radius-sm);
  padding:13px 16px; color:var(--white); font-size:0.95rem; font-family:'Inter',sans-serif;
  appearance:none; cursor:pointer;
}
.form-select:focus { outline:none; border-color:var(--primary); }
.form-check { display:flex; gap:10px; align-items:flex-start; margin-bottom:18px; }
.form-check input[type=checkbox] { margin-top:3px; accent-color:var(--primary); width:16px; height:16px; flex-shrink:0; cursor:pointer; }
.form-check label { font-size:0.82rem; color:var(--text-muted); cursor:pointer; }
.form-divider { text-align:center; position:relative; margin:20px 0; }
.form-divider::before { content:''; position:absolute; top:50%; left:0; right:0; height:1px; background:var(--border); }
.form-divider span { background:var(--bg-card); padding:0 14px; color:var(--text-dim); font-size:0.8rem; position:relative; z-index:1; }
.form-footer { text-align:center; margin-top:20px; font-size:0.85rem; color:var(--text-muted); }
.form-footer a { color:var(--primary); font-weight:600; }

/* ===== RESPONSIVE — 1024px ===== */
@media (max-width: 1024px) {
  .games-grid    { grid-template-columns:repeat(3,1fr); }
  .features-grid { grid-template-columns:repeat(2,1fr); }
  .stats-grid    { grid-template-columns:repeat(2,1fr); }
  .grid-4        { grid-template-columns:repeat(2,1fr); }
  .footer-grid   { grid-template-columns:1fr 1fr; gap:28px; }
  .col-70-30, .col-30-70 { grid-template-columns:1fr; }
  .bar-label     { width:110px; font-size:0.8rem; }
  .donut-svg     { width:150px !important; height:150px !important; }
}

/* ===== RESPONSIVE — 768px ===== */
@media (max-width: 768px) {
  html, body { overflow-x: hidden; }
  .section-pad  { padding:50px 0; }
  .header-nav   { display:none; }
  .header-cta .btn:not(.btn-tracker) { display:none; }
  .mobile-menu-btn  { display:flex; }
  .mobile-cta-bar   { display:block; }

  .games-grid    { grid-template-columns:repeat(2,1fr); gap:12px; }
  .features-grid { grid-template-columns:1fr; }
  .stats-grid    { grid-template-columns:repeat(2,1fr); }
  .grid-2        { grid-template-columns:1fr; }
  .grid-3        { grid-template-columns:1fr; }
  .grid-4        { grid-template-columns:repeat(2,1fr); }
  .col-70-30, .col-30-70 { grid-template-columns:1fr; }
  .footer-grid   { grid-template-columns:1fr; gap:22px; }
  .footer-bottom { flex-direction:column; text-align:center; }

  /* Bar chart mobile stacked */
  .bar-item  { flex-wrap:wrap; }
  .bar-label { width:100%; text-align:left; margin-bottom:4px; }

  /* Donut mobile */
  .donut-wrap { flex-direction:column; }
  .donut-center strong { font-size:1.5rem; }

  /* Table */
  .table-wrap { margin-left:-20px; margin-right:-20px; border-radius:0; border-left:none; border-right:none; }
  .styled-table { min-width:520px; }
  .styled-table thead th, .styled-table tbody td { padding:10px 14px; font-size:0.82rem; }

  .form-wrap { padding:28px 20px; }
  .steps .step { flex-direction:column; }
  .step:not(:last-child)::after { display:none; }
}

/* ===== RESPONSIVE — 480px ===== */
@media (max-width: 480px) {
  h1 { font-size:1.85rem; }
  h2 { font-size:1.45rem; }
  .btn-lg    { padding:15px 24px; font-size:1rem; }
  .games-grid { grid-template-columns:repeat(2,1fr); gap:10px; }
  .stat-number { font-size:2rem; }
  .game-card-img { min-height:120px; }
  .stats-grid { grid-template-columns:repeat(2,1fr); gap:12px; }
  .stat-card  { padding:18px 12px; }
}


/* MOBILE GRID OVERRIDES FOR INLINE STYLES */
@media (max-width: 992px) {
  div[style*="grid-template-columns:1fr 440px"],
  div[style*="grid-template-columns: 1fr 440px"],
  div[style*="grid-template-columns:580px 1fr"],
  div[style*="grid-template-columns: 580px 1fr"],
  div[style*="grid-template-columns:1fr 360px"],
  div[style*="grid-template-columns: 1fr 360px"],
  div[style*="grid-template-columns:560px 1fr"],
  div[style*="grid-template-columns: 560px 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}

@media (max-width: 992px) {
  div[style*="1fr 320px"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}
