/* ============================================================
   BilheteLoteria.com.br — Design System
   Paleta: degradê azul profundo + dourado premium
   ============================================================ */

:root {
  /* Cores base */
  --ink: #0b1620;
  --ink-soft: #33404a;
  --ink-mute: #5f6d72;
  --paper: #f5f7f8;
  --paper-card: #ffffff;
  --line: #dfe4e6;

  /* Marca — variáveis --green-* mantidas por compatibilidade, agora em tons de azul */
  --green-950: #071c42;
  --green-900: #0c2f74;
  --green-800: #0f4a92;
  --green-700: #1265ac;
  --green-600: #157fc2;
  --green-500: #1ea3d1;
  --green-400: #3cc4dd;
  /* --gold-* mantidas por compatibilidade, agora em tons de laranja */
  --gold-500: #e2650f;
  --gold-400: #f2882c;
  --gold-300: #f7ac6b;

  /* Tipografia */
  --font-display: "Manrope", -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Manrope", -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Métricas */
  --radius: 16px;
  --radius-lg: 24px;
  --maxw: 1180px;
  --shadow-sm: 0 1px 2px rgba(11, 22, 32, .06), 0 2px 8px rgba(11, 22, 32, .05);
  --shadow-md: 0 2px 6px rgba(11, 22, 32, .07), 0 12px 32px rgba(11, 22, 32, .10);
  --shadow-gold: 0 4px 24px rgba(226, 101, 15, .35);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

a { color: var(--green-600); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); }

p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  clip: rect(0 0 0 0); clip-path: inset(50%);
  overflow: hidden; white-space: nowrap;
}

/* ============ Header ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7, 28, 66, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, .18);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 68px;
}

.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700;
  color: #fff !important; text-decoration: none !important;
  letter-spacing: -.01em;
}
.brand .brand-mark { width: 34px; height: 34px; flex: none; }
.brand em { font-style: normal; color: var(--gold-400); }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  color: rgba(255, 255, 255, .82); font-size: .92rem; font-weight: 500;
  padding: 8px 13px; border-radius: 999px; text-decoration: none;
  transition: background .18s, color .18s;
}
.main-nav a:hover, .main-nav a[aria-current="page"] {
  color: #fff; background: rgba(255, 255, 255, .10);
}
.main-nav a.nav-cta {
  color: #fff; background: var(--gold-400); font-weight: 700;
  margin-left: 6px;
}
.main-nav a.nav-cta:hover { background: var(--gold-300); }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  padding: 10px; border-radius: 10px; color: #fff;
}
.nav-toggle:hover { background: rgba(255,255,255,.1); }
.nav-toggle svg { display: block; }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--green-950); padding: 10px 16px 18px;
    border-bottom: 1px solid rgba(212, 175, 55, .25);
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 14px; border-radius: 12px; font-size: 1rem; }
  .main-nav a.nav-cta { margin: 8px 0 0; text-align: center; }
}

/* ============ Hero ============ */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(30, 163, 209, .3), transparent 60%),
    radial-gradient(900px 420px at -10% 110%, rgba(212, 175, 55, .16), transparent 55%),
    linear-gradient(165deg, var(--green-950) 0%, var(--green-900) 55%, var(--green-800) 100%);
  color: #fff;
  padding: clamp(48px, 8vw, 96px) 0 clamp(56px, 9vw, 110px);
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0;
  height: 46px; background: var(--paper);
  clip-path: ellipse(60% 100% at 50% 100%);
}

.hero h1 { color: #fff; max-width: 17ch; }
.hero h1 em { font-style: normal; color: var(--gold-400); }
.hero .lead {
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, .8); max-width: 56ch;
}

.hero-grid {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: clamp(24px, 5vw, 64px); align-items: center;
}
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: .98rem;
  padding: 13px 24px; border-radius: 999px; border: 0; cursor: pointer;
  text-decoration: none !important; transition: transform .15s, box-shadow .2s, background .2s;
}
.btn-gold { background: linear-gradient(135deg, var(--gold-400), var(--gold-500)); color: #fff; box-shadow: var(--shadow-gold); }
.btn-gold:hover { transform: translateY(-2px); }
.btn-ghost { background: rgba(255, 255, 255, .08); color: #fff; border: 1px solid rgba(255, 255, 255, .25); }
.btn-ghost:hover { background: rgba(255, 255, 255, .16); }
.btn-green { background: var(--green-600); color: #fff; }
.btn-green:hover { background: var(--green-700); transform: translateY(-2px); }

/* Cartão de destaque do hero (próximo prêmio) */
.jackpot-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(212, 175, 55, .35);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 34px);
  backdrop-filter: blur(6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
}
.jackpot-card .jc-label {
  font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-300); margin-bottom: 6px;
}
.jackpot-card .jc-game { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: #fff; }
.jackpot-card .jc-value {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 2.9rem); color: var(--gold-400);
  line-height: 1.1; margin: 8px 0 4px;
}
.jackpot-card .jc-date { color: rgba(255, 255, 255, .7); font-size: .92rem; }
.jackpot-card .jc-cta { margin-top: 18px; }

/* ============ Bolas de dezenas ============ */
.balls { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; list-style: none; }
.ball {
  --ball-color: var(--green-600);
  width: 44px; height: 44px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-weight: 800; font-size: 1.02rem; color: #fff;
  background: radial-gradient(circle at 32% 28%, rgba(255,255,255,.42), rgba(255,255,255,0) 45%), var(--ball-color);
  box-shadow: inset 0 -3px 6px rgba(0,0,0,.22), 0 3px 8px rgba(11,31,22,.22);
}
.ball--sm { width: 36px; height: 36px; font-size: .88rem; }
.ball--tag {
  width: auto; min-width: 44px; padding-inline: 14px; border-radius: 999px;
  font-size: .85rem; text-transform: uppercase; letter-spacing: .04em;
}

/* ============ Seções ============ */
.section { padding: clamp(44px, 7vw, 80px) 0; }
.section-alt { background: #efeee6; }
.section-head { max-width: 720px; margin-bottom: clamp(24px, 4vw, 40px); }
.section-head .kicker {
  display: inline-block; font-size: .78rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--green-600); margin-bottom: 10px;
}
.section-head p { color: var(--ink-mute); font-size: 1.05rem; }

/* ============ Grid de resultados ============ */
.results-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}
@media (max-width: 380px) { .results-grid { grid-template-columns: 1fr; } }

.result-card {
  --accent: var(--green-600);
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .18s, box-shadow .22s;
}
.result-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.result-card .rc-top { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.result-card .rc-game {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--accent);
}
.result-card .rc-game a { color: inherit; }
.result-card .rc-meta { font-size: .82rem; color: var(--ink-mute); text-align: right; }
.result-card .rc-extra { font-size: .9rem; color: var(--ink-soft); }
.result-card .rc-extra strong { color: var(--ink); }
.result-card .rc-status { font-size: .9rem; font-weight: 600; }
.result-card .rc-status.acumulou { color: #b45309; }
.result-card .rc-status.ganhou { color: var(--green-600); }
.result-card .rc-next {
  margin-top: auto; padding-top: 12px; border-top: 1px dashed var(--line);
  font-size: .88rem; color: var(--ink-mute);
}
.result-card .rc-next strong { color: var(--ink); font-size: 1.02rem; }
.result-card .rc-link { font-weight: 700; font-size: .9rem; color: var(--accent); }

.skeleton {
  background: linear-gradient(90deg, #ece9de 25%, #f5f3ea 50%, #ece9de 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: 8px; color: transparent !important; user-select: none;
}
@keyframes shimmer { to { background-position: -200% 0; } }

.api-error {
  background: #fdf6e3; border: 1px solid #eadfb8; color: #7a6420;
  border-radius: var(--radius); padding: 16px 20px; font-size: .95rem;
}

/* ============ Cards de ferramentas / guias ============ */
.feature-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.feature-card {
  background: var(--paper-card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s, box-shadow .22s;
  display: flex; flex-direction: column;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-card .fc-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--green-600), var(--green-800));
  color: var(--gold-300); margin-bottom: 16px; font-size: 1.5rem;
}
.feature-card p { color: var(--ink-mute); font-size: .95rem; flex: 1; }
.feature-card .fc-link { font-weight: 700; font-size: .92rem; }

/* ============ Página de jogo ============ */
.game-hero {
  --accent: var(--green-600);
  background:
    radial-gradient(900px 400px at 90% -20%, color-mix(in srgb, var(--accent) 45%, transparent), transparent 60%),
    linear-gradient(160deg, var(--green-950), var(--green-900));
  color: #fff; padding: clamp(36px, 6vw, 64px) 0;
}
.game-hero h1 { color: #fff; }
.game-hero .breadcrumbs { font-size: .85rem; color: rgba(255,255,255,.65); margin-bottom: 14px; }
.game-hero .breadcrumbs a { color: rgba(255,255,255,.85); }
.game-hero .game-desc { color: rgba(255,255,255,.8); max-width: 62ch; }

.panel {
  background: var(--paper-card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(22px, 3.5vw, 36px);
  box-shadow: var(--shadow-sm); margin-bottom: 26px;
}
.panel h2 { margin-top: 0; }

.result-panel .rp-head {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 18px;
  margin-bottom: 18px;
}
.result-panel .rp-head h2 { margin: 0; }
.result-panel .rp-meta { color: var(--ink-mute); font-size: .95rem; }

.prize-table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.prize-table th, .prize-table td { padding: 11px 14px; text-align: left; border-bottom: 1px solid var(--line); }
.prize-table th {
  font-size: .78rem; text-transform: uppercase; letter-spacing: .08em;
  color: var(--ink-mute); font-weight: 700;
}
.prize-table td:last-child, .prize-table th:last-child { text-align: right; }
.prize-table tr:last-child td { border-bottom: 0; }
.table-scroll { overflow-x: auto; }

.info-cols { display: grid; gap: 26px; grid-template-columns: 2fr 1fr; align-items: start; }
@media (max-width: 860px) { .info-cols { grid-template-columns: 1fr; } }

.stat-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.stat-list li {
  background: var(--paper-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 14px 18px; display: flex; justify-content: space-between; gap: 12px; align-items: baseline;
}
.stat-list .sl-label { color: var(--ink-mute); font-size: .9rem; }
.stat-list .sl-value { font-weight: 800; font-family: var(--font-display); font-size: 1.05rem; text-align: right; }

/* FAQ */
.faq details {
  background: var(--paper-card); border: 1px solid var(--line);
  border-radius: var(--radius); margin-bottom: 12px; overflow: hidden;
}
.faq summary {
  cursor: pointer; font-weight: 700; padding: 16px 20px; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.3rem; color: var(--green-600); font-weight: 400; flex: none; }
.faq details[open] summary::after { content: "–"; }
.faq .faq-body { padding: 0 20px 18px; color: var(--ink-soft); }

/* ============ Ferramentas (conferidor / gerador) ============ */
.tool-panel { max-width: 760px; }

.field-label { display: block; font-weight: 700; font-size: .92rem; margin-bottom: 8px; }
.field-hint { font-size: .85rem; color: var(--ink-mute); margin-top: 6px; }

select, input[type="text"], input[type="number"], textarea {
  width: 100%; padding: 13px 16px; font: inherit; color: var(--ink);
  background: #fff; border: 1.5px solid var(--line); border-radius: 12px;
  transition: border-color .15s, box-shadow .15s;
}
select:focus, input:focus, textarea:focus {
  outline: none; border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(30, 163, 209, .18);
}

.num-grid { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }
.num-grid button {
  width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--line);
  background: #fff; font-weight: 700; font-size: .95rem; color: var(--ink-soft);
  cursor: pointer; transition: all .13s;
}
.num-grid button:hover { border-color: var(--green-500); color: var(--green-600); }
.num-grid button.sel {
  background: radial-gradient(circle at 32% 28%, rgba(255,255,255,.4), rgba(255,255,255,0) 45%), var(--green-600);
  color: #fff; border-color: var(--green-700);
  box-shadow: inset 0 -3px 6px rgba(0,0,0,.2);
}

.tool-result {
  border-radius: var(--radius); padding: 22px; margin-top: 20px;
}
.tool-result.ok { background: #eaf7ef; border: 1.5px solid #bfe3cc; }
.tool-result.warn { background: #fdf6e3; border: 1.5px solid #eadfb8; }
.tool-result.win { background: linear-gradient(135deg, #fdf7e0, #faedc4); border: 1.5px solid var(--gold-400); }
.tool-result h3 { margin-top: 0; }

.hit { outline: 3px solid var(--gold-500); outline-offset: 2px; }

/* ============ Artigos / prosa ============ */
.prose { max-width: 760px; }
.prose h2 { margin-top: 1.8em; }
.prose h3 { margin-top: 1.4em; }
.prose ul, .prose ol { padding-left: 1.4em; color: var(--ink-soft); }
.prose li { margin-bottom: .45em; }
.prose blockquote {
  margin: 1.4em 0; padding: 14px 22px; border-left: 4px solid var(--gold-500);
  background: var(--paper-card); border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--ink-soft); font-style: italic;
}
.prose table { width: 100%; border-collapse: collapse; font-size: .93rem; margin: 1.2em 0; }
.prose th, .prose td { padding: 10px 14px; border: 1px solid var(--line); text-align: left; }
.prose th { background: #efeee6; font-weight: 700; }
.article-meta { color: var(--ink-mute); font-size: .9rem; margin-bottom: 1.6em; }

.callout {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--paper-card); border: 1px solid var(--line);
  border-left: 4px solid var(--green-500);
  border-radius: var(--radius); padding: 18px 20px; margin: 1.4em 0;
}
.callout.gold { border-left-color: var(--gold-500); }
.callout p:last-child { margin-bottom: 0; }

/* ============ CTA banda ============ */
.cta-band {
  background:
    radial-gradient(700px 300px at 15% 120%, rgba(212,175,55,.22), transparent 60%),
    linear-gradient(150deg, var(--green-900), var(--green-800));
  color: #fff; border-radius: var(--radius-lg);
  padding: clamp(30px, 5vw, 52px);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px;
}
.cta-band h2 { color: #fff; margin: 0 0 6px; }
.cta-band p { color: rgba(255,255,255,.78); margin: 0; }

/* ============ Aviso 18+ / responsabilidade ============ */
.age-strip {
  background: var(--green-950); color: rgba(255,255,255,.75);
  font-size: .82rem; text-align: center; padding: 9px 16px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.age-strip strong { color: var(--gold-400); }

/* ============ Footer ============ */
.site-footer {
  background: var(--green-950); color: rgba(255, 255, 255, .72);
  padding: clamp(40px, 6vw, 64px) 0 0; font-size: .92rem;
}
.footer-grid {
  display: grid; gap: 32px;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  padding-bottom: 40px;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer h4 {
  color: #fff; font-family: var(--font-body); font-size: .82rem;
  text-transform: uppercase; letter-spacing: .12em; margin-bottom: 14px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: rgba(255, 255, 255, .72); }
.site-footer a:hover { color: var(--gold-300); }
.footer-brand-desc { max-width: 34ch; line-height: 1.6; }

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 20px 0; font-size: .8rem; color: rgba(255, 255, 255, .5);
}
.footer-legal p { margin: 0 0 6px; }

/* ============ Banner de cookies ============ */
.cookie-banner {
  position: fixed; inset: auto 16px 16px; z-index: 90;
  max-width: 480px; margin-left: auto;
  background: var(--green-950); color: rgba(255,255,255,.85);
  border: 1px solid rgba(212,175,55,.35); border-radius: var(--radius);
  padding: 20px 22px; box-shadow: 0 18px 50px rgba(0,0,0,.4);
  font-size: .9rem; display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner a { color: var(--gold-300); }
.cookie-actions { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 9px 18px; font-size: .88rem; }

/* ============ Utilidades ============ */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.ad-slot {
  min-height: 90px; display: flex; align-items: center; justify-content: center;
  border: 1px dashed var(--line); border-radius: var(--radius);
  color: var(--ink-mute); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase;
  margin: 28px 0; background: rgba(255,255,255,.5);
}

@media print {
  .site-header, .site-footer, .cookie-banner, .cta-band, .ad-slot { display: none !important; }
}

/* ============ Custom Select Premium ============ */
.custom-select-wrapper {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%; padding: 13px 16px; font: inherit; color: var(--ink);
  background: #fff; border: 1.5px solid var(--line); border-radius: 12px;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
  user-select: none;
}

.custom-select-trigger:hover,
.custom-select-wrapper.open .custom-select-trigger {
  border-color: var(--green-500);
}
.custom-select-wrapper.open .custom-select-trigger {
  box-shadow: 0 0 0 3px rgba(30, 163, 209, .18);
}

.custom-select-trigger::after {
  content: "";
  width: 10px; height: 10px;
  border-right: 2px solid var(--ink-mute);
  border-bottom: 2px solid var(--ink-mute);
  transform: translateY(-2px) rotate(45deg);
  transition: transform .2s;
}

.custom-select-wrapper.open .custom-select-trigger::after {
  transform: translateY(2px) rotate(-135deg);
}

.custom-select-options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all .2s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 260px;
  overflow-y: auto;
  padding: 8px;
}

.custom-select-options::-webkit-scrollbar {
  width: 6px;
}
.custom-select-options::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 4px;
}

.custom-select-wrapper.open .custom-select-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-option {
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: background .15s, color .15s;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  font-weight: 500;
}

.custom-option:hover {
  background: var(--paper);
  color: var(--ink);
}

.custom-option.selected {
  background: linear-gradient(135deg, #f0f9ff, var(--paper));
  color: var(--green-700);
  font-weight: 700;
}

.custom-select-hidden {
  display: none !important;
}
