/* ============================================================
   RESULTADOS EN LÍNEA - CSS PRINCIPAL
   Mobile-first, azul predominante, moderno
   ============================================================ */

/* ── Variables ──────────────────────────────────────────── */
:root {
  --blue-900: #0d2b5e;
  --blue-800: #1565C0;
  --blue-700: #1976D2;
  --blue-600: #1E88E5;
  --blue-500: #42A5F5;
  --blue-100: #E3F2FD;
  --blue-50:  #F0F7FF;

  --text-primary:   #1a1a2e;
  --text-secondary: #4a5568;
  --text-muted:     #718096;
  --text-white:     #ffffff;

  --bg-page:    #f4f7fb;
  --bg-card:    #ffffff;
  --bg-dark:    #0d1b3e;

  --border:     #e2e8f0;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.14);

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --header-h:   70px;
  --font:       'Inter', system-ui, -apple-system, sans-serif;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── HEADER PRINCIPAL ───────────────────────────────────── */
.site-header {
  background: var(--blue-900);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.site-logo img {
  height: 44px;
  width: auto;
  border-radius: var(--radius-sm);
}

/* Hamburguesa */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Navegación */
.main-nav {
  display: none;
  position: absolute;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--blue-900);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 8px 0 16px;
}
.main-nav.open { display: block; }
.main-nav ul {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
.main-nav li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.main-nav li a:hover,
.main-nav li a.active {
  background: rgba(255,255,255,.12);
  color: #fff;
}
.main-nav li a .nav-icon { font-size: 1.1rem; }

@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .main-nav {
    display: block !important;
    position: static;
    background: none;
    border: none;
    padding: 0;
  }
  .main-nav ul {
    display: flex;
    gap: 4px;
    padding: 0;
  }
  .main-nav li a {
    padding: 8px 14px;
    font-size: .88rem;
  }
}

/* ── BANNER DE HEADER (imagen 1920x300) ─────────────────── */
.page-banner {
  width: 100%;
  height: 80px;
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 100%);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,27,94,.7) 0%, rgba(13,27,94,.3) 60%, transparent 100%);
}
.page-banner-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  width: 100%;
  padding: 0 20px;
}
.page-banner-content h1 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.page-banner-content p {
  font-size: .8rem;
  color: rgba(255,255,255,.8);
  margin-top: 2px;
}

@media (min-width: 768px) {
  .page-banner { height: 110px; }
  .page-banner-content h1 { font-size: 1.5rem; }
  .page-banner-content p  { font-size: .88rem; }
}
@media (min-width: 1200px) {
  .page-banner { height: 150px; }
  .page-banner-content h1 { font-size: 1.8rem; }
}

/* ── LAYOUT PRINCIPAL ───────────────────────────────────── */
.site-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 16px 48px;
  overflow-x: hidden;
}
.layout-cols {
  display: grid;
  gap: 24px;
  min-width: 0;
}
.layout-cols > main {
  min-width: 0;
  overflow: hidden;
}
.layout-cols > aside {
  min-width: 0;
}
@media (min-width: 1024px) {
  .layout-cols {
    grid-template-columns: 1fr 300px;
  }
}

/* ── PAUTA ──────────────────────────────────────────────── */
.ad-slot {
  background: var(--bg-card);
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: center;
}
.ad-slot-full { width: 100%; margin: 0 0 24px; }
.ad-slot-sidebar { width: 100%; margin: 0 0 24px; }

/* ── TARJETAS DE RESULTADO ──────────────────────────────── */
.cards-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 480px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .cards-grid { grid-template-columns: repeat(var(--cols, 4), 1fr); }
}
/* En secciones con muchas tarjetas (chances/home) el PHP setea --cols:4
   En secciones con pocas (astro=2, baloto=3) se auto-calcula */
.cards-grid.cols-2 { --cols: 2; }
.cards-grid.cols-3 { --cols: 3; }
.cards-grid.cols-4 { --cols: 4; }

.result-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.result-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-header {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.card-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.12);
  padding: 4px;
  flex-shrink: 0;
}
.card-title-wrap { flex: 1; min-width: 0; overflow: hidden; }
.card-nombre {
  font-size: .78rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-fecha {
  font-size: .72rem;
  color: var(--blue-500);
  margin-top: 3px;
  white-space: nowrap;
}

.card-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

/* Número grande (chance / lotería) */
.numero-grande {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--blue-800);
  letter-spacing: .08em;
  line-height: 1;
}
.numero-serie {
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Bolas (Baloto / Miloto) */
.bolas-wrap { display: flex; gap: 4px; flex-wrap: nowrap; justify-content: center; align-items: center; }
.bola {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue-800);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 700;
  flex-shrink: 0;
}
.bola.sbalota { background: #e53935; }
.bola.sm { width: 26px; height: 26px; font-size: .7rem; }

/* ColorLoto — bolas con colores reales */
.bola-colorloto {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 800;
  flex-shrink: 0;
  color: #fff;
  box-shadow: inset 0 -3px 6px rgba(0,0,0,.2), 0 2px 4px rgba(0,0,0,.2);
}
.bola-colorloto.sm { width: 28px; height: 28px; font-size: .75rem; }
.bola-colorloto.c-amarillo { background: radial-gradient(circle at 35% 35%, #ffe066, #f5a623); color: #5a3e00; }
.bola-colorloto.c-azul     { background: radial-gradient(circle at 35% 35%, #5b9bf8, #1565C0); }
.bola-colorloto.c-rojo     { background: radial-gradient(circle at 35% 35%, #ff6b6b, #c62828); }
.bola-colorloto.c-naranja  { background: radial-gradient(circle at 35% 35%, #ffb74d, #e65100); }
.bola-colorloto.c-verde    { background: radial-gradient(circle at 35% 35%, #66bb6a, #2e7d32); }
.bola-colorloto.c-negro    { background: radial-gradient(circle at 35% 35%, #616161, #212121); }
.bola-colorloto.c-morado   { background: radial-gradient(circle at 35% 35%, #ab47bc, #6a1b9a); }
.bola-colorloto.c-rosado   { background: radial-gradient(circle at 35% 35%, #f48fb1, #c2185b); }
.bola-colorloto.c-blanco   { background: radial-gradient(circle at 35% 35%, #fff, #e0e0e0); color: #333; border: 1px solid #ccc; }
.astro-wrap { text-align: center; }
.astro-numero { font-size: 2.2rem; font-weight: 800; color: var(--blue-800); }
.astro-signo {
  display: inline-block;
  margin-top: 6px;
  background: var(--blue-100);
  color: var(--blue-800);
  font-size: .8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* Badge de estado */
.badge-estado {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .7rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.badge-hoy      { background: #e8f5e9; color: #2e7d32; }
.badge-pendiente{ background: #fff8e1; color: #f57f17; }
.badge-vencido  { background: #fce4ec; color: #c62828; }
.badge-no-juega { background: #f5f5f5; color: #9e9e9e; }

.card-footer {
  border-top: 1px solid var(--border);
  padding: 10px 16px;
}
.btn-ver-mas {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--blue-800);
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  padding: 8px;
  border-radius: var(--radius-md);
  transition: background .2s;
  letter-spacing: .02em;
}
.btn-ver-mas:hover { background: var(--blue-900); }

/* ── SECCIÓN TÍTULO ──────────────────────────────────────── */
.section-header {
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--blue-100);
}
.section-header h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blue-900);
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-header p {
  font-size: .88rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ── PÁGINA DE DETALLE ───────────────────────────────────── */
.detalle-hero {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 20px;
  margin-bottom: 24px;
  display: flex;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--border);
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
}
.detalle-hero-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: var(--radius-md);
  background: var(--blue-50);
  padding: 6px;
  flex-shrink: 0;
}
.detalle-hero-info {
  min-width: 0;
  flex: 1;
}
.detalle-hero-info h1 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--blue-900);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.detalle-hero-info p {
  font-size: .85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Buscador por fecha */
.buscador-fecha {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  box-sizing: border-box;
  width: 100%;
}
.buscador-fecha h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 12px;
}
.buscador-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.buscador-form input[type="date"] {
  flex: 1;
  min-width: 160px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: .9rem;
  font-family: var(--font);
  color: var(--text-primary);
  background: #fff;
  outline: none;
  transition: border-color .2s;
}
.buscador-form input[type="date"]:focus { border-color: var(--blue-600); }
.btn-buscar {
  padding: 10px 22px;
  background: var(--blue-800);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  transition: background .2s;
  white-space: nowrap;
}
.btn-buscar:hover { background: var(--blue-900); }

/* Resultado destacado (último o búsqueda) */
.resultado-buscado {
  background: #fff;
  border-left: 5px solid var(--blue-800);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  margin-bottom: 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  box-sizing: border-box;
  width: 100%;
}
.resultado-buscado .fecha-lbl {
  display: block;
  color: var(--blue-800);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 12px;
}
.resultado-buscado .numero-grande {
  font-size: 3rem;
  line-height: 1;
  color: var(--blue-800);
  font-weight: 800;
  letter-spacing: .08em;
}
.resultado-buscado .numero-serie {
  font-size: .9rem;
  color: var(--text-secondary);
  margin-top: 6px;
}
.resultado-buscado .bolas-wrap { justify-content: center; }
.resultado-buscado .astro-numero { font-size: 3rem; }

/* Tabla histórico */
.tabla-wrap { overflow-x: auto; }
.tabla-historico {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.tabla-historico thead tr {
  background: var(--blue-900);
  color: #fff;
}
.tabla-historico th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap;
}
.tabla-historico td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-primary);
  vertical-align: middle;
}
.tabla-historico tbody tr:hover { background: var(--blue-50); }
.tabla-historico tbody tr:last-child td { border-bottom: none; }
.tabla-historico .num-cell {
  font-weight: 800;
  color: var(--blue-800);
  font-size: 1rem;
  letter-spacing: .06em;
}

/* Tabla premios secos */
.secos-wrap {
  margin-top: 28px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
}
.secos-wrap h3 {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: #fff;
  padding: 14px 20px;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.secos-wrap table {
  width: 100%;
  border-collapse: collapse;
}
.secos-wrap th {
  background: var(--blue-50);
  padding: 10px 16px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--blue-900);
  text-transform: uppercase;
  letter-spacing: .04em;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.secos-wrap td {
  padding: 10px 16px;
  font-size: .88rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.secos-wrap tr:last-child td { border-bottom: none; }
.secos-wrap tr:hover td { background: var(--blue-50); }
.seco-numero, .seco-serie {
  font-weight: 800;
  color: var(--blue-800);
  letter-spacing: .06em;
}

/* Paginación */
.paginacion {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.paginacion a, .paginacion span {
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 600;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-secondary);
  transition: background .2s, color .2s;
}
.paginacion a:hover { background: var(--blue-100); color: var(--blue-800); border-color: var(--blue-500); }
.paginacion span.current {
  background: var(--blue-800);
  color: #fff;
  border-color: var(--blue-800);
}

/* ── SIDEBAR ─────────────────────────────────────────────── */
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.widget {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
}
.widget-title {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: #fff;
  padding: 12px 16px;
  font-size: .88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.widget-body { padding: 12px; }
.widget-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  color: var(--text-primary);
  transition: background .15s;
}
.widget-list li a:hover { background: var(--blue-50); color: var(--blue-800); }
.widget-list li a img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 4px;
  background: var(--bg-page);
  padding: 2px;
}

/* ── BLOQUE CONTENIDO SEO ───────────────────────────────── */
.seo-content {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 32px;
  border: 1px solid var(--border);
  font-size: .92rem;
  color: var(--text-secondary);
  line-height: 1.8;
}
.seo-content h2, .seo-content h3 {
  color: var(--blue-900);
  font-weight: 700;
  margin: 16px 0 8px;
}
.seo-content p { margin-bottom: 10px; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.75);
  margin-top: 60px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 20px 24px;
}
.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  margin-bottom: 36px;
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand .logo-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-brand .logo-foot img {
  height: 42px;
  width: auto;
  border-radius: var(--radius-sm);
}
.footer-brand .logo-foot span {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.footer-brand p {
  font-size: .84rem;
  line-height: 1.7;
  color: rgba(255,255,255,.6);
}
.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  transition: background .2s;
}
.app-badge:hover { background: rgba(255,255,255,.18); }
.app-badge svg { flex-shrink: 0; }

.footer-col h4 {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blue-500);
  margin-bottom: 14px;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li a {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  transition: color .15s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.4); }
.footer-bottom a { color: rgba(255,255,255,.55); font-size: .8rem; }
.footer-bottom a:hover { color: #fff; }

/* ── CHIPS DE FECHA (ayer/hoy) ───────────────────────────── */
.fecha-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-100);
  color: var(--blue-900);
  font-size: .82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 20px;
}

/* ── EMPTY STATE ─────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 48px 24px;
  color: var(--text-muted);
}
.empty-state svg { margin: 0 auto 16px; opacity: .4; }
.empty-state p { font-size: .95rem; }

/* ── BREADCRUMB ──────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--blue-700); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--text-muted); }

/* ── UTILIDADES ──────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.w-full { width: 100%; }

/* Skeleton loading */
.skeleton {
  background: linear-gradient(90deg, #e8edf5 25%, #f5f7fa 50%, #e8edf5 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }
