/* BABE88 — production stylesheet (desktop)
   Brand tokens + desktop layout, merged from brand.css + desktop.css */

/* ============ Brand Tokens ============ */
:root {
  /* Backgrounds */
  --bg-0: #07060d;
  --bg-1: #0d0b1a;
  --bg-2: #15122a;
  --bg-3: #1d1939;
  --bg-4: #2a234d;
  --line:  rgba(255,255,255,0.08);
  --line-2: rgba(255,255,255,0.14);

  /* Pinks */
  --pink-50:  #ffe6f3;
  --pink-200: #ff86c5;
  --pink-400: #ff3aa0;
  --pink-500: #ec1f8c;
  --pink-600: #c41277;
  --pink-700: #8e0a59;
  --magenta-500: #a01b6e;
  --magenta-700: #5e0e44;

  /* Gold */
  --gold-100: #fff3c4;
  --gold-300: #ffd96a;
  --gold-400: #f5b945;
  --gold-500: #d99520;
  --gold-600: #a36b10;

  /* Status */
  --green: #1fd47a;
  --red:   #ff4d6d;
  --blue:  #36a3ff;

  /* Text */
  --text-1: #ffffff;
  --text-2: #cfc8e6;
  --text-3: #877fa3;
  --text-4: #5a5470;

  /* Gradients */
  --grad-pink: linear-gradient(180deg, #ff6ab8 0%, #ec1f8c 55%, #8e0a59 100%);
  --grad-pink-h: linear-gradient(90deg, #ff6ab8 0%, #ec1f8c 50%, #a01b6e 100%);
  --grad-gold: linear-gradient(180deg, #fff3c4 0%, #f5b945 45%, #a36b10 100%);
  --grad-gold-h: linear-gradient(90deg, #ffd96a 0%, #f5b945 55%, #a36b10 100%);
  --grad-hero: radial-gradient(140% 90% at 80% 10%, rgba(236,31,140,0.55) 0%, rgba(236,31,140,0) 55%),
               radial-gradient(120% 80% at 10% 90%, rgba(245,185,69,0.35) 0%, rgba(245,185,69,0) 55%),
               linear-gradient(180deg, #1a0e2c 0%, #0d0b1a 100%);
  --grad-card: linear-gradient(180deg, #1d1939 0%, #15122a 100%);

  /* Radii */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-card: 0 8px 24px rgba(0,0,0,0.45), 0 1px 0 rgba(255,255,255,0.04) inset;
  --glow-pink: 0 0 0 1px rgba(255,106,184,0.35), 0 12px 32px rgba(236,31,140,0.35);
  --glow-gold: 0 0 0 1px rgba(255,217,106,0.35), 0 12px 32px rgba(245,185,69,0.35);

  --font-sans: "Poppins", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Poppins", "Inter", sans-serif;
}

/* ============ Reset ============ */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  color: var(--text-1);
  background: var(--bg-1);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-sans); font-weight: 600; font-size: 14px;
  border: 0; cursor: pointer; white-space: nowrap;
  border-radius: var(--r-pill); padding: 10px 18px;
  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
  letter-spacing: 0.01em;
  color: #fff;
}
.btn:hover { filter: brightness(1.06); }
.btn:active { transform: translateY(1px); }
.btn-pink {
  background: var(--grad-pink-h);
  box-shadow: 0 6px 16px rgba(236,31,140,0.45), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-gold {
  color: #2a1700;
  background: var(--grad-gold-h);
  box-shadow: 0 6px 16px rgba(245,185,69,0.45), inset 0 1px 0 rgba(255,255,255,0.45);
  text-shadow: 0 1px 0 rgba(255,255,255,0.25);
}
.btn-ghost {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover { background: rgba(255,255,255,0.10); }
.btn-outline-pink {
  color: var(--pink-200);
  background: transparent;
  border: 1px solid rgba(255,106,184,0.45);
}
.btn-lg { padding: 14px 24px; font-size: 15px; }
.btn-xl { padding: 16px 28px; font-size: 16px; }

/* ============ Chips ============ */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  height: 28px; padding: 0 12px;
  border-radius: var(--r-pill);
  font-size: 12px; font-weight: 600;
  background: rgba(255,255,255,0.06);
  color: var(--text-2);
  border: 1px solid var(--line);
}
.chip-pink { background: rgba(236,31,140,0.16); color: #ff86c5; border-color: rgba(236,31,140,0.35); }
.chip-gold { background: rgba(245,185,69,0.14); color: #ffd96a; border-color: rgba(245,185,69,0.35); }
.chip-live { background: rgba(31,212,122,0.14); color: var(--green); border-color: rgba(31,212,122,0.35); }
.chip-live::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 8px var(--green);
}

/* ============ Layout helpers ============ */
.row { display: flex; align-items: center; }
.gap-6 { gap: 6px; } .gap-8 { gap: 8px; } .gap-12 { gap: 12px; } .gap-16 { gap: 16px; } .gap-24 { gap: 24px; } .gap-32 { gap: 32px; }
.muted { color: var(--text-3); }
.small { font-size: 12px; }

.t-pink {
  background: linear-gradient(180deg,#ffb1d8 0%, #ff3aa0 55%, #8e0a59 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.t-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* sparkles */
.spark {
  width: 6px; height: 6px; border-radius: 50%;
  background: #fff; opacity: 0.7;
  box-shadow: 0 0 12px 2px rgba(255,255,255,0.5);
  pointer-events: none;
}

/* ============ Page chrome ============ */
.b88-page { min-height: 100%; background: var(--bg-1); position: relative; overflow-x: hidden; }
.b88-header {
  position: sticky; top: 0; z-index: 50;
  background: linear-gradient(180deg, rgba(7,6,13,0.92), rgba(13,11,26,0.88));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.b88-header-inner {
  max-width: 1320px; margin: 0 auto; padding: 14px 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.b88-logo { height: 88px; display: block; }
.b88-nav { display: flex; gap: 22px; }
.b88-nav a {
  color: var(--text-2); font-size: 16px; font-weight: 500;
  padding: 6px 2px; position: relative;
  transition: color .15s;
}
.b88-nav a:hover { color: var(--text-1); }
.b88-nav a.active { color: var(--pink-200); }
.b88-nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -18px; height: 2px;
  background: var(--grad-pink-h); border-radius: 2px;
}
.b88-search {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 8px 14px;
  width: 220px; color: var(--text-3);
}
.b88-search input {
  background: transparent; border: 0; outline: 0;
  color: var(--text-1); font-size: 13px; width: 100%;
  font-family: var(--font-sans);
}
.b88-search input::placeholder { color: var(--text-4); }

/* ============ Main ============ */
.b88-main {
  max-width: 1320px; margin: 0 auto; padding: 32px 28px 64px;
}
.b88-section { margin-top: 56px; }
.b88-section:first-child { margin-top: 0; }

.section-title {
  display: flex; align-items: center; justify-content: space-between;
  margin: 0 0 18px 0;
}
.section-title h2 {
  margin: 0; font-size: 22px; font-weight: 700; letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 12px;
}
.section-title h2::before {
  content: ""; width: 4px; height: 22px; border-radius: 4px;
  background: var(--grad-pink);
}
.section-more {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--pink-200); font-size: 13px; font-weight: 600;
  cursor: pointer;
}
.section-more:hover { color: var(--text-1); }

/* ============ Hero carousel ============ */
.b88-hero-carousel { position: relative; }
.hero-track {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 460px;
}
.hero-slide {
  inset: 0;
  background: var(--grad-hero);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 56px 64px;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  transition: opacity .5s ease;
}
.hero-slide.active { opacity: 1; visibility: visible; }
.hero-slide.hero-accent-pink {
  background:
    radial-gradient(140% 90% at 80% 30%, rgba(236,31,140,0.55) 0%, rgba(236,31,140,0) 55%),
    radial-gradient(120% 80% at 10% 90%, rgba(245,185,69,0.25) 0%, rgba(245,185,69,0) 55%),
    linear-gradient(180deg, #1a0e2c 0%, #0d0b1a 100%);
}
.hero-slide.hero-accent-gold {
  background:
    radial-gradient(140% 90% at 75% 30%, rgba(245,185,69,0.45) 0%, rgba(245,185,69,0) 55%),
    radial-gradient(120% 80% at 15% 80%, rgba(236,31,140,0.30) 0%, rgba(236,31,140,0) 55%),
    linear-gradient(180deg, #1d1535 0%, #0d0b1a 100%);
}
.hero-slide::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(900px 400px at 75% 25%, rgba(236,31,140,0.18), transparent 60%);
}
.hero-slide-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center; position: relative; z-index: 1;
  min-height: 420px;
}
.hero-slide-copy { max-width: 520px; }
.hero-headline {
  font-size: 78px; line-height: 0.95; font-weight: 900;
  letter-spacing: -0.03em; margin: 16px 0 8px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
.hero-subheadline {
  font-size: 26px; font-weight: 700; color: var(--text-1);
  letter-spacing: -0.01em; margin-bottom: 18px;
}
.hero-body {
  color: var(--text-2); font-size: 15px; line-height: 1.6;
  margin: 0; max-width: 460px;
}
.hero-slide-art {
  position: relative; width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.hero-slide-art svg { width: 100%; height: 100%; display: block; }

/* Hero controls */
.hero-controls {
  position: absolute; bottom: 120px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 16px;
  z-index: 5;
}
.hero-arrow {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.10);
  border: 1px solid var(--line-2);
  color: var(--text-1);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .15s;
}
.hero-arrow:hover { background: rgba(255,255,255,0.20); }
.hero-dots { display: flex; align-items: center; gap: 8px; }
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: 0; cursor: pointer; padding: 0;
  transition: background .15s, width .25s;
}
.hero-dot.active {
  background: var(--grad-pink-h);
  width: 28px; border-radius: 6px;
  box-shadow: 0 0 12px rgba(236,31,140,0.6);
}

/* Stats strip */
.hero-stats-strip {
  margin-top: 16px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  background: var(--grad-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px 32px;
}
.hero-stat { position: relative; padding: 0 24px; }
.hero-stat:first-child { padding-left: 0; }
.hero-stat:not(:last-child)::after {
  content: ""; position: absolute; right: 0; top: 50%;
  width: 1px; height: 36px; background: var(--line);
  transform: translateY(-50%);
}
.stat-num {
  font-size: 28px; font-weight: 900; letter-spacing: -0.02em;
  margin-bottom: 4px;
}

/* ============ Slot cards ============ */
.slot-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.slot-card {
  background: var(--grad-card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
  cursor: pointer;
  display: block;
}
.slot-card:hover {
  transform: translateY(-4px);
  border-color: rgba(236,31,140,0.5);
  box-shadow: 0 16px 36px rgba(236,31,140,0.25);
}
.slot-art {
  position: relative; aspect-ratio: 1 / 1; overflow: hidden;
  background: #07060d;
}
.slot-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.slot-badge {
  position: absolute; top: 10px; left: 10px;
  padding: 5px 10px; border-radius: var(--r-pill);
  font-size: 10px; font-weight: 800; letter-spacing: 0.06em;
  z-index: 2;
}
.slot-badge-pink { background: var(--grad-pink-h); color: #fff; box-shadow: 0 4px 12px rgba(236,31,140,0.5); }
.slot-badge-gold { background: var(--grad-gold-h); color: #2a1700; box-shadow: 0 4px 12px rgba(245,185,69,0.5); }
.slot-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px; padding: 10px 12px;
}
.slot-name-block { flex: 1; min-width: 0; }
.slot-name {
  font-size: 13px; font-weight: 700; color: var(--text-1);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.slot-provider { font-size: 11px; color: var(--text-3); margin-top: 2px; }
.slot-rtp {
  font-size: 11px; font-weight: 800;
  color: var(--gold-300);
  padding: 4px 8px;
  background: rgba(245,185,69,0.12);
  border: 1px solid rgba(245,185,69,0.3);
  border-radius: var(--r-pill);
  flex-shrink: 0;
}

/* ============ Provider strip ============ */
.provider-strip { display: grid; grid-template-columns: repeat(8, 1fr); gap: 10px; }
.provider-pill {
  text-align: center; padding: 18px 10px;
  background: var(--grad-card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: 12px; font-weight: 700; color: var(--text-2);
  letter-spacing: 0.04em;
  transition: border-color .15s, color .15s;
  cursor: pointer;
}
.provider-pill:hover { border-color: rgba(245,185,69,0.4); color: var(--gold-300); }

/* ============ SEO ============ */
.seo-section .seo-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px;
  background: var(--grad-card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 40px 44px;
}
.h2 { font-size: 26px; font-weight: 700; letter-spacing: -0.01em; margin: 6px 0 14px; }
.seo-lead {
  font-size: 16px; line-height: 1.6; font-weight: 500;
  color: var(--text-1);
  padding: 16px 18px;
  background: rgba(236,31,140,0.10);
  border-left: 3px solid var(--pink-500);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin: 18px 0;
}
.seo-points { display: flex; flex-direction: column; gap: 14px; }
.seo-point {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.seo-point-num { font-size: 28px; font-weight: 900; line-height: 1; }
.seo-point-title { font-weight: 700; font-size: 14px; }

/* ============ Footer ============ */
.b88-footer {
  background: var(--bg-0);
  border-top: 1px solid var(--line);
  margin-top: 64px;
}
.b88-footer-inner {
  max-width: 1320px; margin: 0 auto; padding: 48px 28px 24px;
}
.b88-footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: 40px;
}
.footer-h {
  font-size: 12px; font-weight: 800; letter-spacing: 0.12em;
  color: var(--gold-300); text-transform: uppercase;
  margin-bottom: 14px;
}
.b88-footer-grid ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.b88-footer-grid li {
  color: var(--text-2); font-size: 13px;
  cursor: pointer; transition: color .15s;
}
.b88-footer-grid li:hover { color: var(--pink-200); }
.bank-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.bank-pill {
  text-align: center; padding: 8px 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 11px; font-weight: 700; color: var(--text-2);
}
.license-pill {
  padding: 6px 12px;
  background: rgba(245,185,69,0.10);
  border: 1px solid rgba(245,185,69,0.3);
  border-radius: var(--r-sm);
  font-size: 11px; font-weight: 700; color: var(--gold-300);
}
.social-icon {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800; color: var(--text-2);
  cursor: pointer; transition: background .15s, color .15s;
}
.social-icon:hover { background: var(--grad-pink-h); color: #fff; border-color: transparent; }
.b88-footer-base {
  margin-top: 36px; padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .slot-grid { grid-template-columns: repeat(3, 1fr); }
  .provider-strip { grid-template-columns: repeat(4, 1fr); }
  .seo-section .seo-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 56px; }
  .b88-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .b88-nav, .b88-search { display: none; }
  .b88-logo { height: 56px; }
  .b88-main { padding: 20px 16px 40px; }
  .hero-slide { padding: 32px 22px; min-height: 480px; }
  .hero-slide-grid { grid-template-columns: 1fr; gap: 16px; }
  .hero-headline { font-size: 44px; }
  .hero-subheadline { font-size: 18px; }
  .hero-stats-strip { grid-template-columns: repeat(2, 1fr); padding: 16px; gap: 16px; }
  .hero-stat { padding: 0; }
  .hero-stat::after { display: none !important; }
  .slot-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .provider-strip { grid-template-columns: repeat(2, 1fr); }
  .seo-section .seo-grid { padding: 24px 20px; }
  .b88-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .b88-footer-base { flex-direction: column; gap: 12px; text-align: center; }
}
