/* frontend.merged.v2.css (core + LP add-on tuned) */

/* === START: original file content (kept) === */
/* ======================= BASE CARD ======================= */
#sportpesa-multiplier-display {
    background-color: #1e1f2f;
    border-radius: 10px;
    padding: 20px;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
    max-height: 600px;
    overflow-y: auto;
}

#sportpesa-multiplier-display .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.2em;
    margin-bottom: 15px;
}

#sportpesa-multiplier-display .header .title {
    display: flex;
    align-items: center;
}

#sportpesa-multiplier-display .header .dot {
    height: 10px;
    width: 10px;
    background-color: #ff4c4c;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
}

#sportpesa-multiplier-display .grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    gap: 10px;
}

.multiplier-cell {
    background-color: #2b2c3c;
    border: 1px solid #3c3d4f;
    border-radius: 6px;
    padding: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

/* Color scale */
.multiplier-cell[data-value] {
    color: #00d4ff;
}
.multiplier-cell[data-value^="1"] { color: #00c2b2; }
.multiplier-cell[data-value^="2"] { color: #8e5eff; }
.multiplier-cell[data-value^="3"] { color: #9eff00; }
.multiplier-cell[data-value^="4"] { color: #ff00cc; }
.multiplier-cell[data-value^="5"] { color: #ffa500; }
.multiplier-cell[data-value^="6"],
.multiplier-cell[data-value^="7"] { color: #ff00aa; }
.multiplier-cell[data-value^="8"],
.multiplier-cell[data-value^="9"] { color: #ff6600; }
.multiplier-cell[data-value^="1.0"] { color: #5c5c5c; } /* for exact 1x */
.multiplier-cell[data-value^="1.1"] { color: #28c76f; }

.multiplier-cell.high {
    color: #ff5c5c !important;
}

#sportpesa-multiplier-display .footer {
    margin-top: 15px;
    font-size: 0.9em;
    color: #aaa;
    display: flex;
    justify-content: space-between;
}



    /* === Transparent Pricing (scoped) === */
    .ap-pricing{ --ap-bg:#0f1a24; --ap-card:#102231; --ap-ink:#e8f3ff; --ap-sub:#9fb5c7; --ap-accent:#19c37d; --ap-accent-2:#1ad686; --ap-muted:#7893a6; --ap-ring:#1f3343; --ap-shadow:0 8px 30px rgba(0,0,0,.25); padding:48px 16px; background:var(--ap-bg); color:var(--ap-ink); }
    .ap-pricing .ap-wrap{ max-width:1100px; margin:0 auto; }
    .ap-pricing h2{ font-size:clamp(28px,3.5vw,40px); margin:0 0 8px; letter-spacing:.3px; }
    .ap-pricing p.ap-subtitle{ margin:0 0 24px; color:var(--ap-sub); }
    .ap-grid{ display:grid; gap:18px; grid-template-columns: 1fr; }
    @media (min-width:900px){ .ap-grid{ grid-template-columns:1fr 1fr; } }
    .ap-card{ background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.0) 60%), var(--ap-card); border:1px solid var(--ap-ring); box-shadow:var(--ap-shadow); border-radius:16px; padding:22px; }
    .ap-card h3{ font-size:18px; margin:0 0 10px; color:var(--ap-sub); font-weight:600; }
    .ap-price{ font-size:42px; font-weight:800; margin:2px 0 2px; letter-spacing:.4px; }
    .ap-cadence{ color:var(--ap-muted); margin:0 0 14px; }
    .ap-list{ list-style:none; padding:0; margin:10px 0 18px; }
    .ap-list li{ display:flex; align-items:flex-start; gap:10px; margin:10px 0; line-height:1.35; }
    .ap-list .ap-check{ width:18px; height:18px; border-radius:999px; display:inline-flex; align-items:center; justify-content:center; background:rgba(26,214,134,.18); border:1px solid rgba(26,214,134,.55); flex:none; margin-top:1px; }
    .ap-list .ap-check svg{ width:12px; height:12px; }
    .ap-actions{ display:flex; gap:12px; flex-wrap:wrap; align-items:center; }
    .ap-btn{ appearance:none; border:0; outline:0; cursor:pointer; border-radius:999px; padding:12px 18px; font-weight:700; box-shadow:var(--ap-shadow); }
    .ap-btn--primary{ background:linear-gradient(135deg, var(--ap-accent), var(--ap-accent-2)); color:#001b10; }
    .ap-btn--ghost{ background:transparent; color:var(--ap-sub); border:1px solid var(--ap-ring); }
    .ap-foot{ color:var(--ap-muted); font-size:14px; margin-left:auto; }
    .ap-note{ margin-top:14px; color:var(--ap-muted); font-size:14px; }
    .ap-payments{ margin-top:18px; }
    .ap-payments h4{ margin:0 0 10px; font-size:16px; color:var(--ap-sub); }
    .ap-payments .ap-card{ padding:16px; }
    .ap-badge{ display:inline-block; background:rgba(26,214,134,.12); border:1px solid rgba(26,214,134,.45); color:#b5ffdf; padding:2px 8px; border-radius:999px; font-size:12px; vertical-align:middle; margin-left:8px; }


/* =================== SCROLL LIMIT STYLING =================== */

#multiplier-scroll-container {
    max-height: calc(6 * 48px + 20px); /* 6 rows of ~48px + padding */
    overflow-y: auto;
    margin-bottom: 20px;
}

#multiplier-grid-section {
    background-color: #1e1f2f;
    padding: 20px;
    border-radius: 10px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    gap: 10px;
}

.multiplier-cell {
    background-color: #2b2c3c;
    border: 1px solid #3c3d4f;
    border-radius: 6px;
    padding: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 1em;
}

/* =================== TABLE (Complete Set Analysis) =================== */
.sp-sync-table-card {
    background: #1f2030;
    border: 1px solid #303247;
    border-radius: 8px;
    padding: 12px;
    margin-top: 12px;
}
.sp-sync-table-title {
    font-weight: 700;
    margin-bottom: 8px;
    color: #e5e7eb;
}
.sp-sync-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}
.sp-sync-table thead th {
    background: #2b2c3c;
    color: #e5e7eb;
    padding: 10px;
    font-weight: 600;
    border-right: 1px solid #3c3d4f;
}
.sp-sync-table thead th:first-child { border-top-left-radius: 8px; }
.sp-sync-table thead th:last-child { border-top-right-radius: 8px; border-right: none; }
.sp-sync-table tbody td {
    padding: 10px;
    border-bottom: 1px solid #2c2e42;
    color: #d1d5db;
    text-align: center;
}
.sp-sync-table tbody tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.sp-sync-table tbody td:first-child { text-align: left; }

/* Category cells (Complete Set Analysis) */
.cs-cell{
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  padding:12px 8px; border-radius:8px; font-weight:600;
}
.cs-ico{font-size:18px; line-height:1.2; margin-bottom:4px;}
.cs-title{font-size:14px; margin-bottom:2px;}
.cs-sub{font-size:12px; opacity:0.9;}

.cell-crash{ background:#f8d7da; color:#842029; }
.cell-money{ background:#d1e7dd; color:#0f5132; }
.cell-normal{ background:#fff3cd; color:#664d03; }

/* ------------------ Values Modal ------------------ */
.sp-modal{position:fixed;inset:0;display:none;align-items:center;justify-content:center;z-index:9999;}
.sp-modal .sp-modal-backdrop{position:absolute;inset:0;background:rgba(0,0,0,.6);}
.sp-modal .sp-modal-card{position:relative;background:#1f2937;color:#e5e7eb;border:1px solid rgba(255,255,255,.08);border-radius:12px;box-shadow:0 10px 30px rgba(0,0,0,.4);width:min(920px,92vw);max-height:80vh;display:flex;flex-direction:column;}
.sp-modal .sp-modal-header{display:flex;align-items:center;justify-content:space-between;padding:10px 14px;border-bottom:1px solid rgba(255,255,255,.08);font-weight:600;}
.sp-modal .sp-modal-header #sp-modal-close{background:transparent;border:0;color:#e5e7eb;font-size:20px;cursor:pointer;line-height:1;padding:0 6px;}
.sp-modal .sp-modal-body{padding:12px 14px;}
.sp-modal .sp-modal-body pre{white-space:pre-wrap;word-wrap:break-word;max-height:60vh;overflow:auto;margin:0;font-family:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;font-size:12px;}
.sp-range-cell{cursor:pointer;}

/* Pending state hint for live window cells */
.sp-cell.cell-pending .label { font-style: italic; opacity: .9; }
.sp-cell.cell-pending .icon  { opacity: .9; }

/* =================== TABS (REDESIGN) =================== */
/* Palette aligned with the card */
:root{
  --sp-surface:#1e1f2f;
  --sp-elev:#252740;
  --sp-border:#303247;
  --sp-text:#e6e8f0;
  --sp-muted:#9aa1b2;
  --sp-accent:#58c4ff;
  --sp-accent-2:#9d7bff;
  --sp-glow: rgba(88,196,255,.25);
}

/* Tab container */
.tabs{
  display:flex;
  align-items:center;
  gap:.5rem;
  padding:6px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border:1px solid var(--sp-border);
  border-radius:12px;
  box-shadow: 0 6px 18px rgba(0,0,0,.25) inset, 0 2px 10px rgba(0,0,0,.18);
}

/* Optional inner group on second row */
.tabs .tab-buttons{
  display:flex;
  gap:.5rem;
}

/* Buttons */
.tab-button{
  appearance:none;
  -webkit-appearance:none;
  background: linear-gradient(180deg, #2a2c44, #252740);
  color: var(--sp-muted);
  border: 1px solid var(--sp-border);
  border-radius:10px;
  padding:10px 14px;
  font-weight:700;
  letter-spacing:.2px;
  cursor:pointer;
  transition:
    color .15s ease,
    transform .12s ease,
    box-shadow .18s ease,
    background .18s ease,
    border-color .18s ease;
}

.tab-button:hover{
  color: var(--sp-text);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,.25);
}

.tab-button.active{
  color:#0f172a;
  border-color: transparent;
  background: linear-gradient(180deg,#b9e5ff 0%, #7cc8ff 100%);
  box-shadow: 0 0 0 3px var(--sp-glow) inset, 0 8px 18px rgba(88,196,255,.25);
  transform:none;
}

.tab-button:focus-visible{
  outline: none;
  box-shadow: 0 0 0 2px #000, 0 0 0 4px var(--sp-accent);
}

/* Compact sizing for Chart/Line toggle */
#tabbtn-chart,
#tabbtn-line{
  padding:8px 12px;
  font-weight:600;
}

/* Underline rail hint below the group */
.tabs{ position:relative; }
.tabs::after{
  content:"";
  position:absolute;
  height:2px;
  left:10px; right:10px; bottom:4px;
  background:linear-gradient(90deg,var(--sp-accent),var(--sp-accent-2));
  opacity:.18;
  border-radius:2px;
  pointer-events:none;
}

/* Match the dropdown on the right (second row) */
#chart-value-count{
  appearance:none;
  -webkit-appearance:none;
  background: linear-gradient(180deg, #2a2c44, #252740);
  color: var(--sp-text);
  border:1px solid var(--sp-border);
  border-radius:10px;
  padding:8px 12px;
  font-size:.9em;
  line-height:1.2;
  cursor:pointer;
  transition: box-shadow .18s ease, border-color .18s ease;
}
#chart-value-count:hover{
  border-color:#3d4160;
  box-shadow: 0 6px 14px rgba(0,0,0,.25);
}
#chart-value-count:focus{
  outline:none;
  box-shadow: 0 0 0 2px #000, 0 0 0 4px var(--sp-accent);
}

/* Panels if used */
.tab-panel{ margin-top:12px; }
.tab-panel[hidden]{ display:none !important; }

/* Legacy bridge (if some places still use .tab-btn) */
.tab-btn{ all:unset; }
.tabs .tab-btn{ padding:10px 14px; border-radius:10px; cursor:pointer; }
.tabs .tab-btn.active{
  background: linear-gradient(180deg,#b9e5ff 0%, #7cc8ff 100%);
  color:#111827;
}

/* =================== SCROLL WRAPPER =================== */
.sp-scroll-wrap { width: 100%; overflow-y: auto; }

/* ========== LINE CHART: RESPONSIVE SIZE WITHOUT JITTER ========== */
/* Wrap your <canvas id="lineChart"> in this container:
   <div class="chart-responsive-wrap"><canvas id="lineChart"></canvas></div>
*/
.chart-responsive-wrap {
  position: relative;
  width: 100%;
  height: clamp(220px, 55vh, 72vh); /* responsive height */
}

/* Canvas fills the container; Chart.js reads parent size */
#lineChart {
  display: block;          /* prevents inline baseline gaps */
  width: 100% !important;
  height: 100% !important;
  box-sizing: border-box;
  transition: none !important;   /* avoid animated resizes */
}

/* If the line chart sits inside a tab/panel that animates height,
   kill those transitions so Chart.js doesn't re-measure repeatedly. */
.tab-panel,
#chartTabs,
#sportpesa-multiplier-display .tab-panel {
  transition: none !important;
}

/* If your framework adds animation to canvases */
canvas.chartjs-render-monitor {
  animation: none !important;
  transition: none !important;
}

/* =================== OPTIONAL ALT TABS (sp-tabs) ===================
   Kept from your original for future accessibility upgrades; harmless
   if unused. */
:root{
  --sp-elev-1:#171a2b;
  --sp-elev-2:#1e2236;
  --sp-border-2:#2d3150;
}
.sp-tabs{position:relative;display:block;margin:12px 0 18px;background:linear-gradient(180deg,rgba(255,255,255,.02),rgba(255,255,255,.01));border:1px solid var(--sp-border);border-radius:14px;padding:8px;box-shadow:0 6px 18px rgba(0,0,0,.25)}
.sp-tablist{position:relative;display:flex;gap:6px;align-items:center}
.sp-tab{
  position:relative;
  appearance:none;
  -webkit-appearance:none;
  background:transparent;
  color:var(--sp-muted);
  font-weight:700;
  letter-spacing:.2px;
  padding:10px 14px;
  border:0;
  border-radius:10px;
  cursor:pointer;
  transition:color .18s ease, transform .15s ease;
  outline:none;
}
.sp-tab:hover{color:var(--sp-text);transform:translateY(-1px)}
.sp-tab[aria-selected="true"]{
  color:#111827;
  background:linear-gradient(180deg,#b9e5ff 0%, #7cc8ff 100%);
  box-shadow:0 0 0 3px var(--sp-glow) inset, 0 4px 12px rgba(88,196,255,.25);
}
.sp-tabs[data-accent="purple"] .sp-tab[aria-selected="true"]{
  background:linear-gradient(180deg,#d9d0ff 0%, #b99bff 100%);
  box-shadow:0 0 0 3px rgba(157,123,255,.25) inset, 0 4px 12px rgba(157,123,255,.25);
}
.sp-tab:focus-visible{
  box-shadow:0 0 0 2px #000, 0 0 0 4px var(--sp-accent);
  border-radius:10px;
}
.sp-tab-indicator{
  position:absolute;left:8px;bottom:-2px;height:2px;width:0;border-radius:2px;
  background:linear-gradient(90deg,var(--sp-accent),var(--sp-accent-2));
  box-shadow:0 0 16px var(--sp-glow), 0 0 2px var(--sp-accent) inset;
  transition: transform .22s cubic-bezier(.22,1,.36,1), width .22s cubic-bezier(.22,1,.36,1);
  pointer-events:none;
}
.sp-tab-panel{margin-top:12px}
.sp-tab-panel.is-hidden{display:none}
.sp-tabs.is-compact{padding:6px;border-radius:12px}
.sp-tabs.is-compact .sp-tab{padding:8px 12px;font-weight:600}
@media (prefers-reduced-motion: reduce){
  .sp-tab, .sp-tab-indicator{transition:none !important}
}


/* ===== Betting Predictions Dashboard ===== */
.betting-predictions {
  --bp-bg:#0c1222;
  --bp-panel:#121a2e;
  --bp-muted:#7f8aa3;
  --bp-text:#e6f0ff;
  --bp-accent:#22c55e;
  --bp-accent-2:#16a34a;
  --bp-badge:#0b2a17;
  --bp-card:#0e1526;
  --bp-border:#1e2a44;
  color:var(--bp-text);
  background:var(--bp-bg);
  border:1px solid var(--bp-border);
  border-radius:16px;
  padding:16px;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica Neue, Arial, "Apple Color Emoji","Segoe UI Emoji";
  box-shadow:0 5px 24px rgba(0,0,0,.35);
}
.betting-predictions .bp-row{display:grid;gap:16px}
@media(min-width:768px){.betting-predictions .bp-row{grid-template-columns:repeat(3,minmax(0,1fr));}}
.bp-header{display:flex;align-items:center;gap:8px;margin-bottom:12px}
.bp-live{margin-left:auto;display:inline-flex;align-items:center;gap:8px;padding:6px 10px;border-radius:999px;background:#052d1b;color:#9af6c0;border:1px solid #113f26;font-weight:700;text-transform:uppercase;font-size:12px;letter-spacing:.06em}
.bp-live::before{content:"";width:8px;height:8px;border-radius:999px;background:#10ff6d;box-shadow:0 0 10px #10ff6d}
.bp-card{background:var(--bp-panel);border:1px solid var(--bp-border);border-radius:14px;padding:16px;position:relative;overflow:hidden}
.bp-card h4{margin:0 0 8px;font-size:12px;text-transform:uppercase;color:var(--bp-muted);letter-spacing:.08em}
.bp-big{font-size:36px;font-weight:800;line-height:1}
.bp-delta{color:#7ef0a1;margin-left:8px;font-weight:700;font-size:14px}
.bp-sub{margin-top:6px;color:var(--bp-muted);font-size:13px}
.bp-table-wrap{margin-top:16px;border:1px solid var(--bp-border);border-radius:12px;overflow:hidden}
.bp-controls{display:flex;gap:12px;flex-wrap:wrap;margin:12px 0}
.bp-btn{background:#0f1a2d;border:1px solid var(--bp-border);border-radius:10px;padding:8px 12px;font-weight:600;cursor:pointer}
.bp-btn:hover{border-color:#2a3b63}
.bp-table{width:100%;border-collapse:collapse;background:var(--bp-card)}
.bp-table th,.bp-table td{padding:12px 14px;border-bottom:1px solid var(--bp-border);text-align:left;font-size:14px}
.bp-pill{display:inline-flex;align-items:center;gap:6px;padding:6px 10px;border-radius:999px;background:#0a2618;border:1px solid #174a2e;color:#b8ffd3;font-weight:700;font-size:12px}
.bp-badge-ok{background:#082a19;border-color:#1d6f3f;color:#a7f7c6}
.bp-badge-bad{background:#2a0b0b;border-color:#6f1d1d;color:#ffb4b4}
.bp-right{text-align:right}
.bp-muted{color:var(--bp-muted)}

/* === LP Add-on (merged) === */
/* ==== LP Add-on (moved from JS) =====================================
   Pill CTA + Paywall Modal styles (performance friendly)
   Drop this at the end of your CSS, or include as lp-addon.css.
===================================================================== */

/* Pill CTA (uses your existing .lp-dark .lp-locked markup) */
.lp-pill{
  display:flex; align-items:center; gap:.7rem;
  border-radius:18px; padding:16px 22px;
  background:radial-gradient(120% 140% at 0% 0%, #0b2a36 0%, #0f2331 50%, #0a1824 100%);
  box-shadow:0 2px 0 rgba(0,0,0,.3), inset 0 0 0 1px rgba(255,255,255,.06);
  color:#dff8ef; font-weight:800; font-size:1.25rem;
  cursor:pointer; user-select:none;
}
.lp-pill svg{ width:22px; height:22px; opacity:.9 }
.bp-card{ position:relative; } /* host for absolute children if ever needed */

/* Minimal modal (fallback if window.showPaywallModal is not provided) */
.lp-modal{position:fixed; inset:0; display:none; align-items:center; justify-content:center; z-index:9999;}
.lp-modal.is-open{ display:flex; }
.lp-modal__backdrop{ position:absolute; inset:0; background:rgba(0,0,0,.6); }
.lp-modal__card{
  position:relative; background:#141a22; color:#eaf6f1;
  border-radius:14px; border:1px solid rgba(255,255,255,.08);
  box-shadow:0 20px 60px rgba(0,0,0,.5);
  width:min(520px,92vw); padding:22px;
}
.lp-modal__title{ margin:0 0 8px 0; text-align:center; font-weight:800; }
.lp-modal__text{ margin:0 0 16px 0; opacity:.85; text-align:center; }
.lp-modal__actions{ display:flex; gap:12px; justify-content:center; }
.lp-btn{ border:0; border-radius:10px; padding:10px 16px; cursor:pointer; font-weight:800; }
.lp-btn--pay{ background:#00db6a; color:#0b1913; }
.lp-btn--close{ background:#2a3442; color:#eaf6f1; font-weight:700; }

/* === LP add-on refinements (to match screenshots) === */
.lp-pill{
  display:flex; align-items:center; gap:.8rem;
  border-radius:20px; padding:18px 24px;
  background:radial-gradient(120% 140% at 0% 0%, #0c2936 0%, #0f2230 55%, #0a1824 100%);
  box-shadow: 0 2px 0 rgba(0,0,0,.35), inset 0 0 0 1px rgba(255,255,255,.06),
              0 12px 30px rgba(0,0,0,.35);
  color:#e7fff4; font-weight:800; font-size:1.35rem; letter-spacing:.2px;
  cursor:pointer; user-select:none;
}
.lp-pill svg{ width:22px; height:22px; opacity:.95 }

/* Modal */
.lp-modal{ position:fixed; inset:0; display:none; align-items:center; justify-content:center; z-index:9999; }
.lp-modal.is-open{ display:flex; }
.lp-modal__backdrop{ position:absolute; inset:0; background:rgba(0,0,0,.55); }
.lp-modal__card{
  position:relative; background:#131a22; color:#eaf6f1;
  border-radius:16px; border:1px solid rgba(255,255,255,.08);
  width:min(560px,92vw); padding:26px 24px;
  box-shadow:0 18px 50px rgba(0,0,0,.55);
}
.lp-modal__title{
  margin:0 0 10px 0; text-align:center; font-weight:800; font-size:20px; letter-spacing:.3px;
}
.lp-modal__text{
  margin:0 0 18px 0; opacity:.85; text-align:center; font-size:15px;
}
.lp-modal__actions{ display:flex; gap:14px; justify-content:center; }
.lp-btn{ border:0; border-radius:12px; padding:12px 18px; cursor:pointer; font-weight:800; font-size:15px; }
.lp-btn--pay{ background:#00db6a; color:#07140f; box-shadow:0 6px 18px rgba(0,219,106,.35); }
.lp-btn--close{ background:#2a3442; color:#eaf6f1; font-weight:750; }


/* === VALUE column color rules === */
.bp-table td .bp-value.bp-value-1to2 { color: rgb(52, 180, 255); }
.bp-table td .bp-value.bp-value-2to9 { color: rgb(145, 62, 248); }
.bp-table td .bp-value.bp-value-gte10 { color: rgb(192, 23, 180); }



/* === AI Loading indicator === */
.ai-loading { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: #9ad3ff; letter-spacing: 0.2px; }
.ai-spinner { width: 16px; height: 16px; border-radius: 50%; border: 2px solid #9ad3ff; border-top-color: transparent; animation: ai-spin 0.8s linear infinite; box-shadow: 0 0 8px rgba(77,214,255,0.6); }
@keyframes ai-spin { to { transform: rotate(360deg); } }
