/* ═══ CasinoAIBots — Dark B2B Landing Page ═══ */
/* Follows gamble.services pattern: dark theme, Bootstrap 5, Inter font, CSS variables */

:root {
  --bg-0: #0a0a0f;
  --bg-1: #0f1117;
  --bg-2: #161b22;
  --bg-3: #1c2128;
  --bg-4: #21262d;
  --border: #30363d;
  --text: #e1e4e8;
  --text-muted: #8b949e;
  --text-light: #b1b8c3;
  --accent: #58a6ff;
  --accent-glow: rgba(88, 166, 255, 0.15);
  --green: #3fb950;
  --red: #da3633;
  --gold: #d29922;
  --purple: #a371f7;
  --pink: #db61a2;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 16px;
}

* { box-sizing: border-box; }
body { font-family: var(--font); background: var(--bg-0); color: var(--text); }
a { color: var(--accent); }
a:hover { color: #79c0ff; }
.text-light-muted { color: var(--text-light) !important; }

/* ═══ Navbar ═══ */
.navbar { background: rgba(10, 10, 15, 0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); padding: 12px 0; z-index: 1000; }
.navbar-brand { font-size: 18px; color: var(--accent) !important; letter-spacing: -0.3px; }
.nav-link { font-size: 14px; color: var(--text-light) !important; font-weight: 500; }
.nav-link:hover { color: var(--text) !important; }

/* ═══ Buttons ═══ */
.btn-accent { background: var(--accent); color: #000; border: none; font-weight: 600; }
.btn-accent:hover { background: #79c0ff; color: #000; }
.btn-outline-light { border-color: var(--border); color: var(--text); font-weight: 500; }
.btn-outline-light:hover { background: var(--bg-3); border-color: var(--text-light); color: var(--text); }

/* ═══ Hero ═══ */
.fw-900 { font-weight: 900; }
.text-gradient { background: linear-gradient(135deg, var(--accent), var(--green)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.badge-pill { display: inline-block; background: var(--accent-glow); color: var(--accent); padding: 6px 14px; border-radius: 20px; font-size: 13px; font-weight: 600; border: 1px solid rgba(88,166,255,0.2); }

.stat-value { font-size: 24px; font-weight: 800; color: var(--text); }
.stat-label { font-size: 12px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; }

/* Hero cards */
.hero-visual { position: relative; height: 400px; }
.hero-card { position: absolute; background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; width: 220px; transition: transform 0.3s; }
.hero-card:hover { transform: translateY(-4px); }
.card-1 { top: 20px; left: 40px; }
.card-2 { top: 140px; left: 100px; }
.card-3 { top: 260px; left: 20px; }
.hc-icon { font-size: 28px; margin-bottom: 8px; }
.hc-title { font-weight: 700; font-size: 16px; }
.hc-desc { font-size: 13px; color: var(--text-light); }

/* ═══ Section styles ═══ */
.section-dark { background: var(--bg-1); }
.section-cta { background: linear-gradient(135deg, #1a1208 0%, #0d1525 50%, #0a1a0a 100%); padding: 80px 0; }

/* ═══ Pain cards ═══ */
.pain-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; height: 100%; }
.pain-icon { font-size: 28px; margin-bottom: 12px; }

/* ═══ Step cards ═══ */
.step-card { text-align: center; padding: 24px; }
.step-number { display: inline-flex; width: 48px; height: 48px; border-radius: 50%; background: var(--accent); color: #000; font-weight: 800; font-size: 20px; align-items: center; justify-content: center; margin-bottom: 16px; }

/* ═══ Code snippets ═══ */
.code-snippet { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px 24px; color: var(--text-light); font-size: 13px; display: inline-block; text-align: left; max-width: 100%; overflow-x: auto; }
.code-block { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; font-size: 14px; line-height: 1.6; overflow-x: auto; }
.code-block code { color: var(--text); }
.code-comment { color: var(--text-light); }

/* ═══ Game cards ═══ */
.game-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; text-align: center; height: 100%; position: relative; transition: border-color 0.2s; }
.game-card:hover { border-color: var(--accent); }
.game-icon { font-size: 36px; margin-bottom: 12px; }
.game-tag { position: absolute; top: 12px; right: 12px; background: var(--green); color: #000; padding: 2px 8px; border-radius: 10px; font-size: 11px; font-weight: 700; }
.tag-soon { background: var(--gold); }

/* ═══ Persona badges ═══ */
.persona-badge { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 12px 20px; font-weight: 600; font-size: 15px; display: flex; align-items: center; gap: 8px; }
.persona-badge .small { color: var(--text-light); font-weight: 400; font-size: 12px; }
.persona-shark { border-color: var(--red); color: var(--red); }
.persona-fish { border-color: var(--accent); color: var(--accent); }
.persona-rock { border-color: var(--text-light); }
.persona-maniac { border-color: var(--pink); color: var(--pink); }
.persona-beginner { border-color: var(--green); color: var(--green); }
.text-accent { color: var(--accent) !important; }
.feature-mini { padding: 12px; font-size: 14px; }

/* ═══ Pricing ═══ */
.price-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; height: 100%; position: relative; }
.price-popular { border-color: var(--accent); box-shadow: 0 0 30px var(--accent-glow); }
.popular-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #000; padding: 4px 16px; border-radius: 12px; font-size: 12px; font-weight: 700; white-space: nowrap; }
.price-tier { font-size: 14px; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 8px; }
.price-amount { font-size: 48px; font-weight: 900; margin-bottom: 24px; }
.price-period { font-size: 16px; font-weight: 400; color: var(--text-light); }
.price-features { list-style: none; padding: 0; margin-bottom: 24px; text-align: left; }
.price-features li { padding: 6px 0; font-size: 14px; }
.price-features i { margin-right: 8px; }
.price-features .bi-check2 { color: var(--green); }
.price-features .bi-x { color: var(--text-light); }

/* ═══ Why cards ═══ */
.why-card { text-align: center; padding: 24px; }
.why-icon { font-size: 32px; color: var(--accent); margin-bottom: 12px; }

/* ═══ Tech badges ═══ */
.tech-badge { display: inline-block; background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 8px 14px; margin: 4px; font-size: 13px; font-weight: 500; }

/* ═══ Compliance ═══ */
.compliance-item { font-size: 14px; padding: 8px 0; }
.compliance-item code { background: var(--bg-3); padding: 2px 6px; border-radius: 4px; font-size: 13px; }

/* ═══ FAQ ═══ */
.accordion-item { background: var(--bg-2); border: 1px solid var(--border) !important; margin-bottom: 8px; border-radius: var(--radius-sm) !important; }
.accordion-button { background: var(--bg-2); color: var(--text); font-weight: 600; font-size: 15px; box-shadow: none !important; }
.accordion-button:not(.collapsed) { background: var(--bg-3); color: var(--accent); }
.accordion-button::after { filter: invert(1); }
.accordion-body { font-size: 14px; line-height: 1.7; }

/* ═══ Footer ═══ */
footer { background: var(--bg-1); border-top: 1px solid var(--border); }

/* ═══ Responsive ═══ */
/* ═══ Cookie Consent Banner ═══ */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: var(--bg-2); border-top: 1px solid var(--border); padding: 16px 0; box-shadow: 0 -4px 20px rgba(0,0,0,0.4); }
.cookie-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cookie-text { flex: 1; font-size: 13px; color: var(--text-light); min-width: 280px; }
.cookie-text a { color: var(--accent); }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-btn { padding: 8px 16px; border-radius: 6px; font-size: 13px; font-weight: 600; border: none; cursor: pointer; white-space: nowrap; }
.cookie-accept { background: var(--accent); color: #000; }
.cookie-accept:hover { background: #79c0ff; }
.cookie-reject { background: var(--bg-4); color: var(--text-light); }
.cookie-reject:hover { background: #30363d; }
.cookie-customize { background: transparent; border: 1px solid var(--border); color: var(--text-light); }
.cookie-customize:hover { border-color: var(--text-light); }
.cookie-details { max-width: 1200px; margin: 12px auto 0; padding: 0 24px; }
.cookie-cat { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 13px; color: var(--text-light); }
.cookie-cat small { color: var(--text-light); opacity: 0.7; }
.cookie-toggle-wrap { display: flex; align-items: center; gap: 8px; }
.cookie-always { font-size: 11px; color: var(--text-light); opacity: 0.6; }

/* ═══ Responsive ═══ */
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .price-amount { font-size: 36px; }
  .stat-value { font-size: 20px; }
  .cookie-inner { flex-direction: column; text-align: center; }
  .cookie-actions { justify-content: center; }
}
