/* ============================================================
   GetReplyTube AI — Master Stylesheet  v2
   Dark-first, premium SaaS — clean rewrite
   ============================================================ */

/* ── Design tokens ──────────────────────────────────────────── */
:root {
  --bg:        #07070f;
  --bg-2:      #0d0d1a;
  --bg-3:      #141425;
  --panel:     #111120;
  --border:    rgba(255,255,255,.07);
  --border-hi: rgba(245,158,11,.28);
  --gold:      #f59e0b;
  --gold-dim:  #78450a;
  --gold-bg:   rgba(245,158,11,.08);
  --white:     #e8e8f4;
  --muted:     rgba(232,232,244,.42);
  --dim:       rgba(232,232,244,.22);
  --green:     #22c55e;
  --green-bg:  rgba(34,197,94,.1);
  --red:       #ef4444;
  --red-bg:    rgba(239,68,68,.1);
  --blue:      #60a5fa;
  --blue-bg:   rgba(96,165,250,.1);
  --purple:    #a78bfa;
  --r:         12px;
  --r-lg:      16px;
  --r-sm:      8px;
  --shadow:    0 4px 24px rgba(0,0,0,.45);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.6);
  --font:      'Inter', system-ui, -apple-system, sans-serif;
  --sidebar-w: 232px;
  --bnav-h:    64px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
input, textarea, select { font-family: var(--font); }
* { -webkit-tap-highlight-color: transparent; }

/* ── Typography ─────────────────────────────────────────────── */
h1 { font-size: 2rem; font-weight: 800; line-height: 1.2; }
h2 { font-size: 1.35rem; font-weight: 700; }
h3 { font-size: 1.05rem; font-weight: 600; }
small, .text-dim { color: var(--muted); font-size: .85rem; }
.text-red   { color: var(--red) !important; }
.text-green { color: var(--green) !important; }
.text-center { text-align: center; }
strong { font-weight: 600; }
.mono { font-family: 'Courier New', monospace; font-size: .85rem; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .52rem 1.15rem; border-radius: var(--r-sm);
  font-weight: 600; font-size: .9rem;
  border: 1px solid transparent;
  transition: all .15s ease; gap: .4rem; white-space: nowrap;
  cursor: pointer; text-decoration: none !important;
}
.btn:hover   { transform: translateY(-1px); text-decoration: none; }
.btn:active  { transform: translateY(0); }
.btn-primary { background: var(--gold); color: #000; border-color: var(--gold); }
.btn-primary:hover { background: #fbbf24; border-color: #fbbf24; }
.btn-outline { background: transparent; border-color: var(--border); color: var(--white); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost   { background: transparent; color: var(--muted); border-color: transparent; }
.btn-ghost:hover { background: var(--bg-3); color: var(--white); }
.btn-success { background: var(--green); color: #000; border-color: var(--green); }
.btn-danger  { background: transparent; border-color: var(--red); color: var(--red); }
.btn-danger:hover { background: var(--red); color: #fff; }
.btn-sm   { padding: .32rem .75rem; font-size: .82rem; }
.btn-xs   { padding: .18rem .5rem;  font-size: .77rem; border-radius: 6px; }
.btn-lg   { padding: .7rem 1.5rem;  font-size: .98rem; }
.btn-block { width: 100%; }

/* ── Alerts ─────────────────────────────────────────────────── */
.alert { padding: .9rem 1.15rem; border-radius: var(--r); margin-bottom: 1.2rem; font-size: .9rem; }
.alert-success { background: #0d2d1a; border: 1px solid #166534; color: #86efac; }
.alert-error   { background: #2d0d0d; border: 1px solid #991b1b; color: #fca5a5; }

/* ── Forms ──────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.05rem; }
.form-group label {
  display: block; font-size: .83rem; font-weight: 500;
  color: var(--muted); margin-bottom: .38rem; letter-spacing: .01em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .62rem .85rem;
  border-radius: var(--r-sm);
  background: var(--bg-3); border: 1px solid var(--border);
  color: var(--white); font-size: .93rem;
  transition: border-color .15s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245,158,11,.1); }
.form-group input[disabled] { opacity: .45; cursor: not-allowed; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M0 0l6 8 6-8z' fill='%236666a0'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .8rem center; padding-right: 2.2rem; }
.form-hint  { font-size: .78rem; color: var(--muted); margin-top: .3rem; display: block; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.label-hint { font-weight: 400; color: var(--muted); }
.input-prefix { position: relative; display: flex; align-items: center; }
.input-prefix input { padding-left: 2.2rem; flex: 1; }
.prefix-icon   { position: absolute; left: .75rem; color: var(--muted); pointer-events: none; }
.prefix-suffix { position: absolute; right: .85rem; color: var(--muted); font-size: .85rem; pointer-events: none; }
.check-group label { display: flex; align-items: center; gap: .5rem; font-size: .9rem; color: var(--white); cursor: pointer; }
.check-group input[type=checkbox] { width: auto; accent-color: var(--gold); }

/* ── Panels ─────────────────────────────────────────────────── */
.panel {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.35rem 1.5rem; margin-bottom: 1.25rem;
}
.panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.1rem; }
.panel-head h2 { font-size: 1rem; font-weight: 600; }
.panel-warn { border-color: rgba(245,158,11,.3); background: rgba(26,15,0,.8); }

/* ── Tables ─────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table { width: 100%; border-collapse: collapse; font-size: .87rem; }
.table th { text-align: left; padding: .55rem .75rem; color: var(--muted); font-weight: 500; border-bottom: 1px solid var(--border); white-space: nowrap; font-size: .78rem; letter-spacing: .03em; text-transform: uppercase; }
.table td { padding: .65rem .75rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
.table tr:last-child td { border-bottom: none; }
.table tr.clickable-row { cursor: pointer; }
.table tr.clickable-row:hover td { background: var(--bg-3); }

/* ── Tags / Badges ──────────────────────────────────────────── */
.pick-tag { background: rgba(139,92,246,.12); color: #c4b5fd; padding: .18rem .6rem; border-radius: 6px; font-size: .79rem; font-weight: 600; white-space: nowrap; }
.tag { padding: .18rem .5rem; border-radius: 5px; font-size: .77rem; font-weight: 600; }
.tag-topup   { background: var(--green-bg); color: #86efac; }
.tag-charge  { background: var(--red-bg);   color: #fca5a5; }
.tag-refund  { background: var(--blue-bg);  color: #93c5fd; }
.tag-bonus   { background: var(--gold-bg);  color: #fde68a; }
.tag-active  { background: var(--green-bg); color: #86efac; }
.tag-pending { background: var(--gold-bg);  color: #fde68a; }
.tag-suspended { background: var(--red-bg); color: #fca5a5; }

/* ── Confidence bars ────────────────────────────────────────── */
.conf-inline { display: flex; align-items: center; gap: .5rem; font-size: .84rem; }
.conf-bar-sm { flex: 1; height: 5px; background: var(--bg-3); border-radius: 3px; min-width: 52px; }
.conf-bar-sm div { height: 100%; background: var(--gold); border-radius: 3px; }

/* ── Pagination ─────────────────────────────────────────────── */
.pagination { display: flex; gap: .3rem; padding: 1rem 0 0; flex-wrap: wrap; }
.page-btn   { padding: .28rem .6rem; border-radius: 6px; background: var(--bg-3); color: var(--white); border: 1px solid var(--border); font-size: .84rem; }
.page-btn.active { background: var(--gold); color: #000; border-color: var(--gold); }
.page-btn:hover  { border-color: var(--gold); text-decoration: none; }

/* ── Pager (Prev / Page N of M / Next) ─────────────────────── */
.pager {
  display: flex; align-items: center; justify-content: center;
  gap: .6rem; padding: 1rem 0 .25rem; flex-wrap: wrap;
}
.pager-btn {
  padding: .38rem .95rem; border-radius: var(--r-sm);
  background: var(--bg-3); border: 1px solid var(--border);
  color: var(--white); font-size: .86rem; font-weight: 500;
  transition: all .12s; text-decoration: none !important; display: inline-block;
}
.pager-btn:hover  { border-color: var(--gold); color: var(--gold); }
.pager-btn.disabled { opacity: .3; pointer-events: none; }
.pager-info  { color: var(--muted); font-size: .86rem; display: flex; align-items: center; gap: .4rem; }
.pager-input {
  width: 54px; text-align: center; padding: .3rem .35rem;
  border-radius: 6px; background: var(--bg-3); border: 1px solid var(--border);
  color: var(--white); font-size: .84rem; -moz-appearance: textfield;
}
.pager-input::-webkit-inner-spin-button,
.pager-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.pager-input:focus { outline: none; border-color: var(--gold); }

/* ── Misc helpers ───────────────────────────────────────────── */
.link-sm { font-size: .82rem; color: var(--muted); }
.link-sm:hover { color: var(--gold); }
.empty-state { padding: 2.5rem; text-align: center; color: var(--muted); }
.divider     { height: 1px; background: var(--border); margin: 1rem 0; }

/* ── Spinner ────────────────────────────────────────────────── */
.spinner { width: 34px; height: 34px; border: 3px solid var(--border); border-top-color: var(--gold); border-radius: 50%; animation: spin .75s linear infinite; margin: 0 auto 1rem; }
.spinner-sm { display: inline-block; width: 14px; height: 14px; border: 2px solid rgba(255,255,255,.2); border-top-color: currentColor; border-radius: 50%; animation: spin .6s linear infinite; vertical-align: middle; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ══════════════════════════════════════════════════════════════
   LANDING PAGE
   ══════════════════════════════════════════════════════════════ */
.landing { --pad: clamp(1rem, 5vw, 4rem); }

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(7,7,15,.9); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: .8rem var(--pad);
  display: flex; align-items: center; justify-content: space-between;
}
.logo { font-size: 1.18rem; font-weight: 800; color: var(--white); letter-spacing: -.01em; }
.logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 1.4rem; }
.nav-links a { font-size: .88rem; color: var(--muted); }
.nav-links a:hover { color: var(--white); text-decoration: none; }

/* Hero */
.hero { padding: calc(80px + 4.5rem) var(--pad) 4.5rem; text-align: center; max-width: 860px; margin: 0 auto; }
.hero-badge { display: inline-block; background: var(--gold-bg); color: var(--gold); border: 1px solid var(--border-hi); padding: .3rem .9rem; border-radius: 99px; font-size: .8rem; font-weight: 600; margin-bottom: 1.4rem; }
.hero h1 { font-size: clamp(1.9rem, 5vw, 3.3rem); line-height: 1.12; margin-bottom: 1.2rem; }
.hero h1 .gold { color: var(--gold); }
.hero-sub { font-size: 1.05rem; color: var(--muted); max-width: 580px; margin: 0 auto 2.2rem; }
.hero-cta { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.8rem; }
.hero-stats { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }
.hero-stats .stat { text-align: center; }
.hero-stats .stat strong { display: block; font-size: 1.45rem; font-weight: 800; color: var(--gold); }
.hero-stats .stat span  { font-size: .8rem; color: var(--muted); }

/* Sections */
.section { padding: 4.5rem var(--pad); }
.section-dark { background: var(--bg-2); }
.container { max-width: 1000px; margin: 0 auto; }
.section-title { text-align: center; font-size: clamp(1.45rem, 3vw, 2.1rem); margin-bottom: .7rem; }
.section-sub   { text-align: center; color: var(--muted); margin-bottom: 2.8rem; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1.75rem; }
.step { background: var(--panel); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.85rem; text-align: center; }
.step-num { width: 46px; height: 46px; background: var(--gold); color: #000; border-radius: 50%; font-size: 1.2rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto .9rem; }
.step h3 { margin-bottom: .45rem; }
.step p  { color: var(--muted); font-size: .88rem; }

/* Sample card */
.sample-card { max-width: 510px; margin: 0 auto; background: var(--panel); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.65rem; box-shadow: var(--shadow-lg); }
.sample-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.35rem; }
.league-badge { background: var(--bg-3); color: var(--muted); padding: .28rem .65rem; border-radius: 6px; font-size: .78rem; }
.conf-badge   { background: var(--gold-bg); color: var(--gold); padding: .28rem .65rem; border-radius: 6px; font-size: .78rem; font-weight: 700; }
.sample-teams { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.35rem; }
.team-block   { display: flex; flex-direction: column; align-items: center; gap: .55rem; flex: 1; }
.team-circle  { width: 54px; height: 54px; border-radius: 50%; background: var(--bg-3); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; font-weight: 800; color: var(--gold); }
.vs-text      { font-weight: 800; color: var(--muted); padding: 0 .9rem; }
.sample-pick  { margin-bottom: 1rem; }
.pick-label   { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .28rem; }
.pick-value   { font-size: 1.35rem; font-weight: 800; color: var(--gold); margin-bottom: .45rem; }
.pick-bar     { height: 7px; background: var(--bg-3); border-radius: 4px; overflow: hidden; }
.pick-fill    { height: 100%; background: linear-gradient(90deg, var(--gold), #fbbf24); border-radius: 4px; }
.sample-reason { color: var(--muted); font-size: .87rem; line-height: 1.7; margin-bottom: .9rem; }
.sample-odds  { font-size: .84rem; color: var(--muted); }
.sample-odds strong { color: var(--white); }

/* Pricing */
.pricing-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(275px, 1fr)); gap: 1.75rem; max-width: 680px; margin: 0 auto; }
.pricing-card  { background: var(--panel); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.85rem; position: relative; }
.pricing-card.featured { border-color: var(--border-hi); }
.popular-tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #000; padding: .18rem .8rem; border-radius: 99px; font-size: .77rem; font-weight: 700; }
.pricing-card h3  { margin-bottom: .45rem; font-size: 1.15rem; }
.pricing-card .price { font-size: 1.45rem; font-weight: 800; color: var(--gold); margin-bottom: .7rem; }
.pricing-card p   { color: var(--muted); font-size: .88rem; margin-bottom: 1.2rem; }
.pricing-card ul  { list-style: none; margin-bottom: 1.4rem; }
.pricing-card ul li { padding: .38rem 0; font-size: .88rem; color: var(--muted); }
.pricing-card ul li .check { color: var(--green); margin-right: .4rem; }

/* CTA + Footer */
.cta-section { text-align: center; }
.cta-section h2 { margin-bottom: .7rem; }
.cta-section p  { color: var(--muted); margin-bottom: 1.85rem; }
.footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 1.85rem var(--pad); text-align: center; }
.footer p { color: var(--muted); font-size: .84rem; }
.footer-disclaimer { margin-top: .45rem; font-size: .77rem; }

/* ══════════════════════════════════════════════════════════════
   AUTH PAGES (login / register)
   ══════════════════════════════════════════════════════════════ */
.auth-page {
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh; padding: 2rem;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(245,158,11,.05) 0%, transparent 60%), var(--bg);
}
.auth-box {
  width: 100%; max-width: 440px;
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 2.4rem;
  box-shadow: var(--shadow-lg);
}
.auth-logo  { display: block; margin-bottom: 1.4rem; font-size: 1.2rem; }
.auth-title { font-size: 1.55rem; margin-bottom: .28rem; }
.auth-sub   { color: var(--muted); margin-bottom: 1.65rem; font-size: .92rem; }
.auth-form  { margin-bottom: .9rem; }
.auth-switch { text-align: center; color: var(--muted); font-size: .87rem; margin-top: .75rem; }

/* ══════════════════════════════════════════════════════════════
   APP LAYOUT — sidebar + main
   ══════════════════════════════════════════════════════════════ */
.app { display: flex; min-height: 100vh; }

/* Sidebar */
.sidebar {
  width: var(--sidebar-w); flex-shrink: 0;
  background: var(--bg-2); border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  position: fixed; top: 0; left: 0; bottom: 0; z-index: 50;
  overflow: hidden;
}
.sidebar-logo {
  padding: 1.1rem 1.2rem .95rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.sidebar-nav  { flex: 1; padding: .5rem 0; overflow-y: auto; }
.sidebar-nav::-webkit-scrollbar { display: none; }
.nav-item {
  display: flex; align-items: center; gap: .65rem;
  padding: .65rem 1.2rem; font-size: .88rem; color: var(--muted);
  transition: all .12s; border-left: 2px solid transparent;
  text-decoration: none !important;
}
.nav-item:hover  { color: var(--white); background: rgba(255,255,255,.04); text-decoration: none; }
.nav-item.active { color: var(--gold); border-left-color: var(--gold); background: var(--gold-bg); }
.nav-icon { font-size: 1rem; flex-shrink: 0; }
.sidebar-footer { padding: .9rem 1.2rem; border-top: 1px solid var(--border); flex-shrink: 0; }
.vendor-mini    { display: flex; align-items: center; gap: .55rem; margin-bottom: .65rem; }
.vendor-avatar  {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gold); color: #000;
  font-weight: 800; font-size: .85rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.vendor-name { font-size: .86rem; font-weight: 600; line-height: 1.2; }
.vendor-sub  { font-size: .73rem; color: var(--muted); }
.logout-btn  { font-size: .81rem; color: var(--muted); display: inline-block; }
.logout-btn:hover { color: var(--red); text-decoration: none; }

/* Main content area */
.main {
  margin-left: var(--sidebar-w);
  flex: 1;
  padding: 1.4rem 1.85rem;
  max-width: calc(1200px + var(--sidebar-w));
  min-width: 0;
}
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.4rem; gap: .75rem; flex-wrap: wrap;
}
.page-title   { font-size: 1.4rem; font-weight: 700; }
.topbar-right { display: flex; align-items: center; gap: .65rem; flex-wrap: wrap; }
.wallet-badge {
  background: var(--gold-bg); color: var(--gold);
  border: 1px solid var(--border-hi);
  padding: .3rem .75rem; border-radius: 8px;
  font-size: .86rem; font-weight: 600;
}

/* Stats grid */
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
  gap: .9rem; margin-bottom: 1.4rem;
}
.stat-card {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.15rem 1.2rem;
  display: flex; align-items: center; gap: .9rem;
  transition: border-color .15s;
}
.stat-card:hover { border-color: rgba(255,255,255,.12); }
.stat-card.stat-warn { border-color: rgba(245,158,11,.25); background: rgba(26,15,0,.7); }
.stat-icon { font-size: 1.45rem; flex-shrink: 0; }
.stat-val  { font-size: 1.35rem; font-weight: 800; line-height: 1; }
.stat-lbl  { font-size: .76rem; color: var(--muted); margin-top: .2rem; }

/* Quick actions */
.quick-actions {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: .9rem; margin-bottom: 1.4rem;
}
.qa-card {
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 1.15rem 1.2rem; display: flex; align-items: center; gap: .9rem;
  color: var(--white); transition: all .15s; text-decoration: none !important;
}
.qa-card:hover { border-color: rgba(255,255,255,.12); transform: translateY(-1px); }
.qa-card.qa-primary { border-color: var(--border-hi); background: rgba(26,15,0,.7); }
.qa-icon  { font-size: 1.5rem; flex-shrink: 0; }
.qa-card small { color: var(--muted); font-size: .78rem; display: block; }
.qa-card strong { font-size: .9rem; }

/* ── Mobile bottom navigation ───────────────────────────────── */
/* Hidden on desktop — only revealed in mobile media query */
.mobile-bnav {
  display: none !important; /* explicit !important prevents any override on desktop */
}

/* ══════════════════════════════════════════════════════════════
   ANALYZE PAGE
   ══════════════════════════════════════════════════════════════ */
.info-banner {
  background: var(--gold-bg); border: 1px solid var(--border-hi);
  border-radius: var(--r); padding: .75rem 1.05rem; margin-bottom: 1.4rem;
  display: flex; align-items: center; gap: .7rem; font-size: .88rem; color: #d97706;
}
.info-icon { font-size: 1.15rem; flex-shrink: 0; }

.analyze-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 1.35rem; align-items: start; }
/* height (not max-height) gives flex children a definite size so flex:1 + overflow-y:auto works */
.fixture-panel  { height: calc(100vh - 260px); min-height: 320px; overflow: hidden; display: flex; flex-direction: column; }
/* min-height:0 is the critical flex fix — allows child to shrink below content size and scroll */
.fixture-list   { overflow-y: auto; flex: 1 1 0; min-height: 0; padding-right: .2rem; margin-top: .5rem; }
.fixture-list::-webkit-scrollbar { width: 3px; }
.fixture-list::-webkit-scrollbar-track { background: transparent; }
.fixture-list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.fixture-search { padding: .45rem 0 .65rem; }
.search-input   {
  width: 100%; padding: .58rem .82rem; border-radius: var(--r-sm);
  background: var(--bg-3); border: 1px solid var(--border);
  color: var(--white); font-size: .88rem;
}
.search-input:focus { outline: none; border-color: var(--gold); }
.selected-count-badge { background: var(--gold); color: #000; padding: .14rem .55rem; border-radius: 99px; font-size: .77rem; font-weight: 700; }

.fixture-item { display: flex; align-items: center; gap: .7rem; padding: .65rem .8rem; border-radius: 10px; cursor: pointer; border: 1px solid transparent; transition: all .12s; margin-bottom: .3rem; }
.fixture-item:hover   { background: var(--bg-3); border-color: var(--border); }
.fixture-item.selected { background: var(--gold-bg); border-color: var(--border-hi); }
.fixture-item.selected .check-circle { background: var(--gold); border-color: var(--gold); }
.fixture-item.selected .check-tick   { opacity: 1; color: #000; }
.fixture-check  { flex-shrink: 0; }
.check-circle   { width: 19px; height: 19px; border-radius: 50%; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; transition: all .12s; }
.check-tick     { font-size: .62rem; font-weight: 800; opacity: 0; transition: opacity .12s; }
.fixture-core   { flex: 1; min-width: 0; }
.fixture-league-row  { display: flex; align-items: center; gap: .38rem; margin-bottom: .28rem; }
.fixture-league-name { font-size: .72rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fixture-teams-row   { display: flex; align-items: center; gap: .45rem; }
.fixture-team        { display: flex; align-items: center; gap: .32rem; font-size: .87rem; font-weight: 600; min-width: 0; }
.fixture-team.home-team { flex: 1; }
.fixture-team.away-team { flex: 1; justify-content: flex-end; flex-direction: row-reverse; }
.ft-vs-sm   { font-size: .72rem; color: var(--muted); flex-shrink: 0; }
.fixture-time-col { flex-shrink: 0; text-align: right; }
.ft-time    { display: block; font-size: .83rem; font-weight: 700; color: var(--gold); }
.ft-venue   { display: block; font-size: .67rem; color: var(--muted); margin-top: .12rem; }
.fixture-manual { border: 1px dashed var(--border) !important; }
.fixture-league { font-size: .73rem; color: var(--muted); margin-bottom: .22rem; }
.fixture-teams  { display: flex; align-items: center; gap: .38rem; font-size: .88rem; }
.ft-team        { font-weight: 600; flex: 1; }
.ft-vs          { color: var(--muted); font-size: .76rem; }
.fixture-time   { font-size: .76rem; color: var(--gold); margin-top: .18rem; }

/* Analysis right panel */
.analysis-right-panel { display: flex; flex-direction: column; gap: 1.15rem; }
.empty-analysis { text-align: center; padding: 2.8rem 1.8rem; }
.ea-icon  { font-size: 2.8rem; margin-bottom: .85rem; }
.ea-title { font-size: 1.05rem; font-weight: 600; margin-bottom: .45rem; }
.ea-sub   { color: var(--muted); font-size: .88rem; }

/* Selected chips */
.selected-chips { display: flex; flex-direction: column; gap: .45rem; margin-bottom: .7rem; }
.fixture-chip   { display: flex; align-items: center; gap: .48rem; background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--r-sm); padding: .5rem .8rem; font-size: .87rem; }
.chip-logo      { width: 19px; height: 19px; object-fit: contain; border-radius: 50%; flex-shrink: 0; }
.chip-teams     { flex: 1; font-weight: 500; }
.chip-vs        { color: var(--muted); font-size: .76rem; }
.chip-remove    { color: var(--muted); font-size: 1.05rem; cursor: pointer; padding: 0 .18rem; line-height: 1; flex-shrink: 0; }
.chip-remove:hover { color: var(--red); }

.manual-fields { margin-bottom: .7rem; padding: .95rem; background: var(--bg-3); border-radius: var(--r-sm); }
.stake-section    { margin-top: 1.1rem; }
.fee-preview      { background: var(--bg-3); border-radius: var(--r-sm); padding: .8rem .95rem; margin-bottom: .9rem; }
.fp-row           { display: flex; justify-content: space-between; font-size: .87rem; padding: .18rem 0; }
.stake-quick-btns { display: flex; gap: .45rem; margin-top: .45rem; flex-wrap: wrap; }
.sq-btn { padding: .28rem .65rem; background: var(--bg-3); border: 1px solid var(--border); border-radius: 6px; color: var(--muted); font-size: .81rem; cursor: pointer; transition: all .12s; }
.sq-btn:hover, .sq-btn.active { border-color: var(--gold); color: var(--gold); background: var(--gold-bg); }
.fee-breakdown { background: var(--bg-3); border-radius: var(--r); padding: .85rem 1.05rem; margin-top: .7rem; }
.fb-row    { display: flex; justify-content: space-between; align-items: center; padding: .22rem 0; font-size: .87rem; }
.fb-total  { border-top: 1px solid var(--border); margin-top: .32rem; padding-top: .55rem; font-weight: 700; }
.fb-discount { color: var(--green); }

/* Results */
.results-loading { text-align: center; padding: 2.8rem; }
.fixture-placeholder { text-align: center; padding: 2.8rem; color: var(--muted); }
.fp-icon { font-size: 2.3rem; margin-bottom: .7rem; }
.fixture-selected-display { background: var(--gold-bg); border: 1px solid var(--border-hi); border-radius: var(--r-sm); padding: .9rem; margin-bottom: 1.15rem; }
.fsd-league { font-size: .76rem; color: var(--muted); margin-bottom: .32rem; }
.fsd-teams  { font-size: 1.02rem; font-weight: 700; display: flex; align-items: center; gap: .45rem; margin-bottom: .38rem; }
.fsd-vs     { color: var(--muted); font-size: .82rem; }

.discount-banner { background: var(--gold-bg); border: 1px solid var(--border-hi); border-radius: var(--r); padding: .7rem 1.05rem; margin-bottom: .9rem; font-size: .88rem; color: var(--gold); text-align: center; }

/* Result card */
.result-card { background: var(--panel); border: 1px solid var(--border); border-radius: var(--r-lg); margin-bottom: 1.15rem; overflow: hidden; transition: border-color .2s; }
.result-card.animate-in { animation: slideUp .38s ease both; }
@keyframes slideUp { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:none; } }

.result-match-visual {
  display: flex; align-items: center; gap: .85rem; padding: 1.35rem 1.4rem;
  background: linear-gradient(135deg, #0f0f1e 0%, #0e0e24 100%);
  border-bottom: 1px solid var(--border);
}
.result-team-col     { display: flex; flex-direction: column; align-items: center; gap: .45rem; flex: 1; min-width: 0; }
.result-team-col.result-team-away { align-items: flex-end; }
.result-team-name    { font-size: .8rem; font-weight: 600; text-align: center; }
.result-center-col   { flex: 1.2; display: flex; flex-direction: column; align-items: center; gap: .38rem; }
.result-league-row   { display: flex; align-items: center; gap: .38rem; }
.result-league-name  { font-size: .7rem; color: var(--muted); text-align: center; }
.result-vs-badge     { font-size: .68rem; font-weight: 800; color: var(--muted); border: 1px solid var(--border); padding: .18rem .48rem; border-radius: 4px; letter-spacing: .05em; }
.result-pick-display { text-align: center; }
.rpd-label  { font-size: .63rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.rpd-value  { font-size: 1.05rem; font-weight: 800; color: var(--gold); line-height: 1.2; }
.rpd-odds   { font-size: .78rem; color: var(--muted); }
.result-conf-col     { display: flex; flex-direction: column; align-items: center; width: 68px; flex-shrink: 0; }
.conf-donut          { width: 58px; height: 58px; }
.conf-donut-val      { font-size: .95rem; font-weight: 800; margin-top: .18rem; }
.conf-donut-lbl      { font-size: .63rem; color: var(--muted); }

.result-body      { padding: 1.15rem 1.4rem; }
.result-reasoning { font-size: .88rem; color: var(--muted); line-height: 1.75; margin-bottom: .7rem; }
.result-alt       { font-size: .84rem; color: var(--muted); margin-bottom: .7rem; }
.result-meta      { display: flex; align-items: center; gap: .9rem; flex-wrap: wrap; }
.risk-tag         { padding: .18rem .58rem; border-radius: 5px; font-size: .7rem; font-weight: 700; letter-spacing: .06em; }
.risk-low    { background: var(--green-bg); color: #86efac; }
.risk-medium { background: var(--gold-bg);  color: #fde68a; }
.risk-high   { background: var(--red-bg);   color: #fca5a5; }
.result-fee-note { font-size: .78rem; color: var(--muted); margin-left: auto; }
.result-actions  { display: flex; gap: .65rem; justify-content: flex-end; flex-wrap: wrap; margin-top: .9rem; }

/* Logo helpers */
.team-logo-xs    { width: 21px; height: 21px; object-fit: contain; flex-shrink: 0; border-radius: 50%; background: var(--bg-3); }
.team-flag-xs    { width: 26px; height: 19px; object-fit: cover; border-radius: 3px; flex-shrink: 0; box-shadow: 0 1px 3px rgba(0,0,0,.3); }
.team-init-xs    { width: 21px; height: 21px; border-radius: 50%; background: var(--bg-3); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 700; color: var(--gold); flex-shrink: 0; }
.league-logo-xs  { width: 15px; height: 15px; object-fit: contain; flex-shrink: 0; }
.result-team-logo   { width: 60px; height: 60px; object-fit: contain; }
.result-league-logo { width: 19px; height: 19px; object-fit: contain; }

/* ══════════════════════════════════════════════════════════════
   WALLET PAGE
   ══════════════════════════════════════════════════════════════ */
.wallet-layout  { display: grid; grid-template-columns: 1fr 2fr; gap: 1.35rem; align-items: start; }
.balance-card   { text-align: center; padding: 2.2rem 1.5rem; }
.balance-icon   { font-size: 2.4rem; margin-bottom: .45rem; }
.balance-label  { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .45rem; }
.balance-amount { font-size: 2.3rem; font-weight: 800; color: var(--gold); }
.balance-sub    { color: var(--muted); font-size: .84rem; margin-top: .32rem; }
.quick-amounts  { display: flex; gap: .45rem; flex-wrap: wrap; }
.amt-btn        { padding: .48rem .85rem; background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--r-sm); color: var(--white); font-size: .87rem; font-weight: 500; cursor: pointer; transition: all .12s; }
.amt-btn:hover, .amt-btn.active { border-color: var(--gold); color: var(--gold); background: var(--gold-bg); }
.payment-methods { margin-top: .9rem; text-align: center; font-size: .8rem; color: var(--muted); }

/* ══════════════════════════════════════════════════════════════
   SETTINGS PAGE
   ══════════════════════════════════════════════════════════════ */
.settings-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 1.35rem; }
.info-table    { width: 100%; font-size: .88rem; }
.info-table td { padding: .48rem 0; }
.info-table td:first-child { color: var(--muted); width: 135px; }
.api-key-row   { display: flex; gap: .45rem; }
.api-key-row input { flex: 1; }

/* ══════════════════════════════════════════════════════════════
   HISTORY — reasoning expand (old table style fallback)
   ══════════════════════════════════════════════════════════════ */
.reasoning-box { background: var(--bg-3); padding: .8rem .95rem; border-radius: var(--r-sm); font-size: .87rem; color: var(--muted); line-height: 1.7; }

/* ══════════════════════════════════════════════════════════════
   ADMIN PANEL
   ══════════════════════════════════════════════════════════════ */
.admin-sidebar .sidebar-logo small { font-size: .68rem; color: var(--red); margin-left: .3rem; vertical-align: middle; }
.admin-app .nav-item.active { color: var(--gold); border-left-color: var(--gold); }

.filter-tabs { display: flex; gap: .3rem; flex-wrap: wrap; }
.ftab { padding: .28rem .65rem; border-radius: 6px; font-size: .81rem; color: var(--muted); border: 1px solid var(--border); transition: all .12s; text-decoration: none !important; }
.ftab.active { background: var(--gold); color: #000; border-color: var(--gold); }
.ftab:hover  { border-color: var(--gold); color: var(--gold); text-decoration: none; }
.action-btns { display: flex; gap: .3rem; flex-wrap: wrap; }

/* Modal */
.modal { position: fixed; inset: 0; background: rgba(0,0,0,.72); z-index: 200; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.modal-box { background: var(--panel); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.85rem; max-width: 400px; width: 100%; box-shadow: var(--shadow-lg); }
.modal-box h3 { margin-bottom: 1.15rem; }

/* ══════════════════════════════════════════════════════════════
   TELEGRAM SECTION
   ══════════════════════════════════════════════════════════════ */
.tg-section {
  background: linear-gradient(180deg, #07070f 0%, #0a0a18 40%, #070f12 100%);
  border-top: 1px solid #0d2d3a; border-bottom: 1px solid #0d2d3a;
  padding: 4.5rem 0;
}
.tg-header { text-align: center; margin-bottom: 2.8rem; }
.tg-badge  { display: inline-block; background: #0d2d3a; color: #22d3ee; border: 1px solid #164e63; border-radius: 999px; padding: .3rem 1.05rem; font-size: .8rem; font-weight: 600; letter-spacing: .05em; margin-bottom: .9rem; }
.tg-title  { font-size: 1.9rem; font-weight: 800; margin-bottom: .7rem; }
.tg-sub    { color: var(--muted); font-size: .98rem; max-width: 500px; margin: 0 auto; }
.tg-cards  { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; max-width: 800px; margin: 0 auto 2.8rem; }
.tg-card   { border-radius: 16px; padding: 1.85rem; display: flex; flex-direction: column; gap: .9rem; position: relative; overflow: hidden; }
.tg-free    { background: #0a1520; border: 1px solid #164e63; box-shadow: 0 0 40px rgba(34,211,238,.05); }
.tg-premium { background: linear-gradient(135deg, #130a20 0%, #1a0a2e 100%); border: 2px solid #7c3aed; box-shadow: 0 0 50px rgba(124,58,237,.14); }
.tg-card-top { display: flex; align-items: center; justify-content: space-between; }
.tg-icon-wrap { width: 50px; height: 50px; border-radius: 13px; display: flex; align-items: center; justify-content: center; }
.tg-icon-free    { background: #0369a1; }
.tg-icon-premium { background: linear-gradient(135deg, #7c3aed, #4f46e5); }
.tg-tag { font-size: .73rem; font-weight: 700; letter-spacing: .06em; padding: .22rem .72rem; border-radius: 999px; }
.tg-tag-free    { background: #0c4a6e; color: #7dd3fc; }
.tg-tag-premium { background: #3b0764; color: #d8b4fe; }
.tg-card h3    { font-size: 1.2rem; font-weight: 700; }
.tg-card-desc  { color: var(--muted); font-size: .88rem; line-height: 1.55; }
.tg-perks      { list-style: none; display: flex; flex-direction: column; gap: .45rem; font-size: .88rem; }
.tg-perks li   { color: var(--white); }
.tg-note       { font-size: .76rem; color: var(--muted); text-align: center; margin-top: .22rem; }
.btn-tg-free    { background: #0369a1; color: #fff; padding: .7rem 1.2rem; border-radius: 10px; font-size: .93rem; font-weight: 700; gap: .48rem; transition: background .15s, transform .15s; }
.btn-tg-free:hover { background: #0284c7; transform: translateY(-2px); }
.btn-tg-premium { background: linear-gradient(90deg, #7c3aed, #4f46e5); color: #fff; padding: .7rem 1.2rem; border-radius: 10px; font-size: .93rem; font-weight: 700; gap: .48rem; transition: opacity .15s, transform .15s; }
.btn-tg-premium:hover { opacity: .88; transform: translateY(-2px); }
.tg-funnel { display: flex; align-items: center; justify-content: center; gap: .65rem; flex-wrap: wrap; margin-top: .9rem; background: #0c0c1a; border: 1px solid var(--border); border-radius: 14px; padding: 1.15rem 1.85rem; max-width: 680px; margin: .9rem auto 0; }
.funnel-step { display: flex; flex-direction: column; align-items: center; gap: .28rem; font-size: .8rem; font-weight: 600; color: var(--muted); }
.funnel-step .funnel-icon { font-size: 1.45rem; }
.funnel-win   { color: var(--green); }
.funnel-arrow { font-size: 1.25rem; color: var(--border); }
.footer-tg { display: flex; align-items: center; justify-content: center; gap: .7rem; flex-wrap: wrap; margin-bottom: .9rem; }
.footer-tg-link { display: inline-flex; align-items: center; gap: .38rem; color: #38bdf8; font-size: .84rem; font-weight: 600; padding: .32rem .8rem; border-radius: 8px; background: #0c2436; border: 1px solid #164e63; transition: background .15s; }
.footer-tg-link:hover { background: #0e3147; text-decoration: none; }
.footer-tg-vip  { color: #c4b5fd; background: #1a0a2e; border-color: #4c1d95; }
.footer-tg-vip:hover { background: #220d3a; }
.footer-tg-sep  { color: var(--muted); }

/* ══════════════════════════════════════════════════════════════
   TOAST NOTIFICATIONS
   ══════════════════════════════════════════════════════════════ */
#toast-container { position: fixed; bottom: 1.4rem; right: 1.4rem; z-index: 9999; display: flex; flex-direction: column; gap: .55rem; max-width: 370px; }
.toast { display: flex; align-items: flex-start; gap: .7rem; padding: .8rem .95rem; border-radius: var(--r); background: var(--bg-3); border: 1px solid var(--border); box-shadow: var(--shadow-lg); font-size: .88rem; opacity: 0; transform: translateX(38px); transition: all .3s cubic-bezier(.34,1.56,.64,1); }
.toast.toast-in    { opacity: 1; transform: translateX(0); }
.toast-success { border-color: #166534; background: #0d2d1a; }
.toast-error   { border-color: #991b1b; background: #2d0d0d; }
.toast-warning { border-color: #92400e; background: #1c1000; }
.toast-icon    { font-size: .95rem; flex-shrink: 0; margin-top: .1rem; }
.toast-success .toast-icon { color: var(--green); }
.toast-error   .toast-icon { color: var(--red); }
.toast-warning .toast-icon { color: var(--gold); }
.toast-msg     { flex: 1; line-height: 1.5; }
.toast-close   { background: none; border: none; color: var(--muted); font-size: 1.05rem; line-height: 1; padding: 0; cursor: pointer; flex-shrink: 0; }
.toast-close:hover { color: var(--white); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — 900px breakpoint (layout shifts only)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .wallet-layout  { grid-template-columns: 1fr; }
  .analyze-layout { grid-template-columns: 1fr; }
  .fixture-panel  { height: 55vh; min-height: 260px; }
  .form-row       { grid-template-columns: 1fr; }
  .result-match-visual { flex-wrap: wrap; }
}

/* ══════════════════════════════════════════════════════════════
   MOBILE ≤ 768px
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Show bottom nav */
  .mobile-bnav {
    display: flex !important;
    position: fixed; bottom: 0; left: 0; right: 0;
    height: var(--bnav-h);
    background: rgba(10,10,20,.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(255,255,255,.07);
    z-index: 100;
    align-items: stretch;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  .mbnav-item {
    flex: 1;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 3px; color: var(--muted);
    text-decoration: none !important;
    transition: color .15s;
    padding: 6px 2px;
    position: relative;
    user-select: none;
  }
  .mbnav-item:hover { color: var(--white); }
  .mbnav-item.mbnav-active { color: var(--gold); }
  .mbnav-item.mbnav-active::before {
    content: '';
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 20px; height: 2.5px; background: var(--gold); border-radius: 2px;
  }
  .mbnav-icon { font-size: 1.15rem; line-height: 1; }
  .mbnav-lbl  { font-size: .58rem; font-weight: 600; letter-spacing: .01em; }

  /* Hide sidebar */
  .sidebar { display: none !important; }

  /* Main: no left margin, pad above (for fixed header) + pad below (for bottom nav) */
  .main {
    margin-left: 0 !important;
    padding: .75rem .85rem calc(var(--bnav-h) + env(safe-area-inset-bottom, 0px) + 6px);
    max-width: 100%;
  }

  /* Topbar compact */
  .topbar { margin-bottom: .9rem; gap: .4rem; }
  .page-title   { font-size: 1.05rem; }
  .wallet-badge { font-size: .77rem; padding: .25rem .5rem; }

  /* Stats: 2 col */
  .stats-grid {
    grid-template-columns: 1fr 1fr; gap: .5rem; margin-bottom: .8rem;
  }
  .stat-card { padding: .7rem .65rem; flex-direction: column; align-items: center; text-align: center; gap: .18rem; }
  .stat-icon { font-size: 1.15rem; }
  .stat-val  { font-size: 1.05rem; }
  .stat-lbl  { font-size: .62rem; }

  /* Quick actions: 2 col */
  .quick-actions {
    grid-template-columns: 1fr 1fr; gap: .5rem; margin-bottom: .8rem;
  }
  .qa-card { flex-direction: column; align-items: center; text-align: center; padding: .8rem .55rem; gap: .28rem; }
  .qa-card small  { display: none; }
  .qa-icon        { font-size: 1.35rem; }
  .qa-card strong { font-size: .8rem; }

  /* Panels */
  .panel { padding: .85rem .9rem; margin-bottom: .8rem; }
  .panel-head h2 { font-size: .93rem; }

  /* Table: smaller cells */
  .table { font-size: .76rem; }
  .table th, .table td { padding: .45rem .4rem; white-space: nowrap; }
  .conf-bar-sm { min-width: 38px; }

  /* Analyze: stacked */
  .analyze-layout { grid-template-columns: 1fr; gap: .9rem; }
  .fixture-panel  { height: 42vh; min-height: 240px; }
  .info-banner    { font-size: .82rem; padding: .6rem .82rem; }

  /* Wallet */
  .wallet-layout  { grid-template-columns: 1fr; }
  .balance-amount { font-size: 1.85rem; }

  /* Settings */
  .settings-grid { grid-template-columns: 1fr; }

  /* Toast above bottom nav */
  #toast-container { bottom: calc(var(--bnav-h) + 8px); right: .7rem; left: .7rem; max-width: 100%; }

  /* Auth */
  .auth-box { padding: 1.5rem 1.2rem; }

  /* Telegram section */
  .tg-cards   { grid-template-columns: 1fr; }
  .tg-title   { font-size: 1.45rem; }
  .tg-funnel  { gap: .45rem; padding: .9rem; }
  .funnel-arrow { display: none; }

  /* Landing nav */
  .nav-links .btn { display: none; }
}

/* ══════════════════════════════════════════════════════════════
   Tiny screens ≤ 400px
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 400px) {
  .main { padding-left: .65rem; padding-right: .65rem; }
  .stats-grid { gap: .4rem; }
  .quick-actions { gap: .4rem; }
}

/* ── AI Depth Badges (pricing engine) ─────────────────────── */
.ai-depth-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .01em;
}
.depth-standard { background: #1e3a2e; color: #4ade80; }
.depth-advanced { background: #1e2a3a; color: #60a5fa; }
.depth-premium  { background: #3a1e2e; color: #f472b6; }

/* Recommendation line below fee breakdown */
.fb-reco {
  font-size: .78rem;
  color: #fbbf24;
  margin-top: .4rem;
  padding: .35rem .5rem;
  background: rgba(251,191,36,.07);
  border-radius: 5px;
  border-left: 2px solid #fbbf24;
}
