html, body { height: 100%; }

/* =====================
   PUBLIC THEME (LIGHT)
   ===================== */
body {
  font-family: "Times New Roman", Times, serif;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 45%, #fdf2f8 100%);
  color: #0f172a;
  display: flex;
  flex-direction: column;
  margin: 0;
  overflow-x: hidden; /* prevent sideways scroll on small screens */
}

/* Ensure Times New Roman everywhere (buttons, forms, nav) */
button, input, select, textarea, .btn, .nav, .navbar, .dropdown-menu {
  font-family: "Times New Roman", Times, serif !important;
}

/* Full-width sections with premium spacing */
.section {
  padding: 3rem 0;
}

.section-tight {
  padding: 1.5rem 0;
}

.container-wide {
  max-width: 1320px;
}

/* =====================
   HOMEPAGE LAYOUT
   ===================== */
.home-hero {
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0;
  padding: 0.75rem 0; /* only section that keeps a little breathing room */
  margin-bottom: 0.9rem; /* space between banner and next section */
}

.home-hero-overlay {
  background: linear-gradient(90deg, rgba(15,23,42,0.78) 0%, rgba(15,23,42,0.55) 55%, rgba(15,23,42,0.25) 100%);
}

.home-hero-inner {
  /* inset hero text from the screen edge while keeping full-width background */
  max-width: 1320px;
  margin: 0 auto;
  padding: 2.4rem clamp(18px, 4vw, 90px);
}

.home-hero-pill {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 1.25rem;
  padding: 1.25rem;
}

.home-block {
  padding: 1rem 0; /* small separation between sections */
}

/* Full-width sections, centered content */
.home-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 90px);
}

.section-kicker {
  font-size: 1.05rem;
  font-weight: 700;
}

.home-whatwedo {
  background: rgba(37,99,235,0.06);
}

.home-feature-card {
  background: rgba(255,255,255,0.92);
}

/* What-we-do cards: distinct backgrounds, readable text */
.card.home-feature-card.wwd-card {
  border: 0;
  color: rgba(255,255,255,0.98);
}
.card.home-feature-card.wwd-card .text-secondary {
  color: rgba(255,255,255,0.82) !important;
}
.card.home-feature-card.wwd-card .home-icon {
  background: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.98);
}
.card.home-feature-card.wwd-1 { background: linear-gradient(135deg, rgba(37,99,235,0.95), rgba(99,102,241,0.95)); }
.card.home-feature-card.wwd-2 { background: linear-gradient(135deg, rgba(16,185,129,0.92), rgba(20,184,166,0.92)); }
.card.home-feature-card.wwd-3 { background: linear-gradient(135deg, rgba(124,58,237,0.92), rgba(219,39,119,0.90)); }
.card.home-feature-card.wwd-4 { background: linear-gradient(135deg, rgba(245,158,11,0.92), rgba(249,115,22,0.92)); }
.card.home-feature-card.wwd-5 { background: linear-gradient(135deg, rgba(14,165,233,0.92), rgba(59,130,246,0.92)); }
.card.home-feature-card.wwd-6 { background: linear-gradient(135deg, rgba(244,63,94,0.90), rgba(168,85,247,0.90)); }

.home-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(37,99,235,0.12);
  color: #1d4ed8;
  flex: 0 0 auto;
}

.home-market {
  background: transparent;
}

/* More transparent market card so background shows through */
.card.home-market-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
}

.home-market-card .table thead th {
  background: transparent;
}


/* Market table row spacing */
.home-market-card .table { background: transparent; }
.home-market-card table { border-collapse: separate; border-spacing: 0 0.65rem; }
.home-market-card .table tbody tr > * { background: rgba(255,255,255,0.08); border-bottom: none; }
.home-market-card .table tbody tr > *:first-child { border-top-left-radius: 12px; border-bottom-left-radius: 12px; }
.home-market-card .table tbody tr > *:last-child { border-top-right-radius: 12px; border-bottom-right-radius: 12px; }

/* Ad label */
.ad-wrap { position: relative; }
.ad-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 5;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 0.65rem;
  background: rgba(15,23,42,0.75);
  color: #fff;
  letter-spacing: 0.02em;
}

/* Make Blog kicker a bit larger */
.blog-kicker{
  font-size: 1.35rem;
}

@media (max-width: 576px) {
  .home-hero-inner { padding: 1.75rem 18px; }
  .home-hero h1 { font-size: 1.65rem; }
  .home-hero .lead { font-size: 1rem; }
}

/* =====================
   RESPONSIVE TUNING
   Mobile + Tablet only (desktop unchanged)
   ===================== */

/* Tablet and below */
@media (max-width: 991px) {
  /* Add vertical spacing between sections */
  .home-block { padding: 1.25rem 0; }
  .home-block + .home-block { margin-top: 0.85rem; }

  /* Keep section backgrounds full width but inset content */
  .home-inner { padding-left: 22px; padding-right: 22px; }

  /* Banner: remove subheading on mobile/tablet */
  .home-hero .lead { display: none !important; }

  /* Banner typography + layout */
  .home-hero-inner { padding: 2rem 22px; }
  .home-hero h1 { font-size: clamp(1.75rem, 3.5vw, 2.25rem); }

  /* Buttons: stack nicely when narrow */
  .home-hero .d-flex.gap-2 { gap: .5rem !important; }
  .home-hero .btn { padding-left: 1rem; padding-right: 1rem; }
}

/* Mobile */
@media (max-width: 767px) {
  /* Slightly tighter padding for small screens */
  .home-inner { padding-left: 18px; padding-right: 18px; }
  .home-hero-inner { padding: 1.85rem 18px; }

  /* Titles scale down */
  .home-whatwedo h2 { font-size: 1.55rem; }
  .blog-kicker { font-size: 1.2rem; }

  /* Cards: ensure comfortable spacing */
  .card { border-radius: 1rem; }
  .home-feature-card { padding: 1rem !important; }

  /* Market: fit table on screen (no horizontal scroll) */
  .home-market-card { overflow-x: hidden; }
  .home-market-card .table-responsive { overflow-x: hidden; }
  .home-market-card table { min-width: 0; width: 100%; table-layout: fixed; }
  .home-market-card .table { font-size: 0.80rem; }
  .home-market-card .table th,
  .home-market-card .table td { padding: .45rem .45rem; }
  .home-market-card .mkt-coin-name { white-space: normal; line-height: 1.15; }
  .home-market-card .mkt-coin-sub { display: none; }
}

/* Tablet (and mobile) market table: show only icon, name, price, 24h, market cap */
@media (max-width: 991px) {
  .home-market-card { overflow-x: hidden; }
  .home-market-card .table-responsive { overflow-x: hidden; }
  .home-market-card table { min-width: 0; width: 100%; table-layout: fixed; }
  .home-market-card .table { font-size: 0.85rem; }
  .home-market-card .table th,
  .home-market-card .table td { padding: .5rem .5rem; }
}

.public-main,
.app-main {
  flex: 1 0 auto;
}

/* Homepage main wrapper must be edge-to-edge (header stays centered) */
.home-main {
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
}

/* Header */
.site-header {
  background: rgba(255,255,255,0.75) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15,23,42,0.08) !important;
}
.navbar-brand span { letter-spacing: 0.02em; }

/* Premium nav links */
.site-header .nav-link {
  font-weight: 600;
  color: rgba(15,23,42,0.8) !important;
}
.site-header .nav-link.active,
.site-header .nav-link:hover {
  color: #0f172a !important;
}

/* Cards */
.card {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 1.25rem;
  box-shadow: 0 10px 30px rgba(2,6,23,0.06);
}

.card-img-top {
  border-top-left-radius: 1.25rem;
  border-top-right-radius: 1.25rem;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, #2563eb, #db2777);
  border: none;
  box-shadow: 0 10px 20px rgba(37,99,235,0.18);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8, #be185d);
}

.btn-outline-dark {
  border-color: rgba(15,23,42,0.25);
}

/* Links */
a { color: #2563eb; }
a:hover { color: #1d4ed8; }

/* Hero */
.hero {
  padding: 3.5rem 0;
}
.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  letter-spacing: -0.02em;
}
.hero-sub {
  color: #334155;
}

.hero-media {
  border-radius: 1.25rem;
  border: 1px solid rgba(15,23,42,0.08);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(2,6,23,0.10);
}

.hero-media img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(37,99,235,0.10);
  border: 1px solid rgba(37,99,235,0.18);
}

.feature-icon img {
  width: 22px;
  height: 22px;
}

/* Premium section titles */
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.18);
  color: #1d4ed8;
  font-weight: 600;
  font-size: 0.85rem;
}

/* Icon helpers (SVGs use currentColor) */
.icon {
  width: 24px;
  height: 24px;
  display: inline-block;
}

.icon-lg {
  width: 42px;
  height: 42px;
}

.icon-blue { color: #1d4ed8; }
.icon-gold { color: #b45309; }

/* Forms */
.form-control,
.form-select {
  border-radius: 0.9rem;
  border-color: rgba(15,23,42,0.15);
}

/* Footer */
.site-footer {
  background: #0b1220;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(229,231,235,0.92);
  flex-shrink: 0;
}

.site-footer a{ color: rgba(229,231,235,0.92); }
.site-footer a:hover{ color: #fff; }


/* User dashboard badge star icon (ensure visible + consistent size) */
.badge-star-icon{
  width:18px;
  height:18px;
  object-fit:contain;
  background: rgba(255,255,255,0.92);
  border-radius: 999px;
  padding: 2px;
}

/* Match footer style to dark dashboard background */
body.app-layout .site-footer{
  background: #0b1220;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(229,231,235,0.92);
}
body.app-layout .site-footer a{ color: rgba(229,231,235,0.9); }
body.app-layout .site-footer a:hover{ color: #fff; }

/* Banner blocks */
.ad-banner {
  border-radius: 1.25rem;
  border: 1px solid rgba(15,23,42,0.08);
  background: rgba(255,255,255,0.85);
  box-shadow: 0 10px 30px rgba(2,6,23,0.06);
}

/* Blog rich content */
.blog-content img,
.blog-content video,
.blog-content iframe {
  max-width: 100%;
  height: auto;
}

.blog-content iframe {
  width: 100%;
  min-height: 360px;
}

/* =====================
   APP LAYOUT (DARK)
   ===================== */
body.app-layout {
  background: radial-gradient(circle at top left, #111827 0, #020617 40%, #000 100%);
  color: #e5e7eb;
}

/* Dark modal styling to match the user dashboard background (all breakpoints) */
.modal-dark .modal-content{
  background: rgba(2,6,23,0.92);
  border: 1px solid rgba(148,163,184,0.25);
  color: #e5e7eb;
  box-shadow: 0 18px 40px rgba(0,0,0,0.5);
}
.modal-dark .modal-header,
.modal-dark .modal-footer{
  border-color: rgba(148,163,184,0.22);
}
.modal-dark .modal-body .text-secondary{ color: rgba(229,231,235,0.7) !important; }

/* Ensure close icon is visible on dark modal */
.modal-dark .btn-close{ filter: invert(1) grayscale(100%); }

/* Make dashboard surfaces readable on dark background */
.app-layout .card {
  background: rgba(2,6,23,0.72);
  border: 1px solid rgba(148,163,184,0.22);
  color: #e5e7eb;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.app-layout .text-secondary {
  color: rgba(229,231,235,0.72) !important;
}

.app-layout .dropdown-menu {
  background: rgba(2,6,23,0.95);
  border: 1px solid rgba(148,163,184,0.25);
}

.app-layout .dropdown-item {
  color: #e5e7eb;
}

.app-layout .dropdown-item:hover {
  background: rgba(59,130,246,0.18);
}

/* Admin layout stays light, but must remain readable */
body.admin-layout {
  /* Admin should feel premium and crisp (less colorful noise than public pages) */
  background: radial-gradient(circle at 20% 0%, #eef2ff 0%, #f8fafc 40%, #ffffff 100%);
  color: #0f172a;
}

/* =====================
   ADMIN PREMIUM THEME
   ===================== */

/* Sharper, more "product" surfaces */
.admin-layout .card {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 12px 34px rgba(2,6,23,0.08);
}

.admin-layout .app-main {
  padding-top: 1.75rem;
}

/* Sidebar polish */
.admin-layout .app-sidebar {
  background: linear-gradient(180deg, #0b1220 0%, #020617 55%, #000 100%);
  border-right: 1px solid rgba(148,163,184,0.18);
}

.admin-layout .app-sidebar .nav-link {
  color: rgba(226,232,240,0.78);
}

.admin-layout .app-sidebar .nav-link:hover {
  background: rgba(59,130,246,0.14);
  color: #ffffff;
}

.admin-layout .app-sidebar .nav-link.active {
  background: linear-gradient(135deg, #f59e0b, #2563eb);
  color: #ffffff;
}

/* Make muted text readable on light admin surfaces */
.admin-layout .text-secondary {
  color: rgba(15,23,42,0.65) !important;
}

/* Tables: readable, premium header */
.admin-layout .table {
  --bs-table-bg: rgba(255,255,255,0.98);
  --bs-table-color: #0f172a;
  --bs-table-border-color: rgba(15,23,42,0.12);
}

.admin-layout .table thead th {
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(15,23,42,0.72);
  background: rgba(2,6,23,0.03);
}

.admin-layout .table tbody tr:hover {
  background: rgba(37,99,235,0.06);
}

/* FIX: Many admin pages use btn-outline-light for actions.
   On light tables this became "invisible" (white on white). */
.admin-layout .btn-outline-light {
  color: #0f172a;
  border-color: rgba(15,23,42,0.22);
  background: rgba(255,255,255,0.92);
}

.admin-layout .btn-outline-light:hover,
.admin-layout .btn-outline-light:focus {
  color: #0b1220;
  border-color: rgba(37,99,235,0.45);
  background: rgba(37,99,235,0.10);
}

/* Keep primary buttons premium in admin */
.admin-layout .btn-primary {
  box-shadow: 0 10px 18px rgba(37,99,235,0.16);
}

/* Tabs/filters that use outline-light + active */
.admin-layout .btn-outline-light.active {
  color: #0b1220;
  border-color: rgba(37,99,235,0.55);
  background: rgba(37,99,235,0.12);
}

/* Badge helper must stay readable on light admin surfaces */
.admin-layout .badge-soft {
  background: rgba(37,99,235,0.10);
  color: #1d4ed8;
  border: 1px solid rgba(37,99,235,0.28);
}

/* Dark cards/tables for user app layout for better contrast */
.app-layout .card {
  background: rgba(2,6,23,0.70);
  border: 1px solid rgba(148,163,184,0.22);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  color: #e5e7eb;
}

.app-layout .text-secondary {
  color: rgba(229,231,235,0.70) !important;
}

.app-layout .btn-outline-dark {
  border-color: rgba(229,231,235,0.35);
  color: rgba(229,231,235,0.92);
}

.app-layout .btn-outline-dark:hover {
  background: rgba(229,231,235,0.12);
}

.app-wrapper {
  flex: 1 0 auto;
  display: flex;
  min-height: 0;
}

.app-sidebar {
  width: 240px;
  background: #020617;
  border-right: 1px solid rgba(148,163,184,0.2);
  padding: 1rem 0.75rem;
}

.app-main {
  flex: 1 1 auto;
  padding-bottom: 2rem;
  overflow-x: hidden; /* defensive: keep dashboard from creating horizontal scroll */
}

.app-layout .app-wrapper,
.admin-layout .app-wrapper {
  min-height: 100vh;
}

.app-layout .app-sidebar,
.admin-layout .app-sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  max-height: 100vh;
  overflow-y: auto;
}

.app-layout .app-main,
.admin-layout .app-main {
  margin-left: 240px;
}

.app-layout .site-footer,
.admin-layout .site-footer {
  margin-left: 240px;
}

.app-sidebar .nav-link {
  color: #9ca3af;
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.app-sidebar .nav-link:hover {
  background: rgba(59,130,246,0.12);
  color: #f9fafb;
}

.app-sidebar .nav-link.active {
  background: linear-gradient(135deg, #ef4444, #1d4ed8);
  color: #f9fafb;
}

.app-topbar {
  background: transparent;
  border-bottom: 1px solid rgba(148,163,184,0.2);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

/* IMPORTANT:
   Bootstrap's .table-dark uses white text. Previously we made it transparent globally,
   which caused "white on white" in the admin area. We scope table-dark styling.
*/
.app-layout .table-dark {
  --bs-table-bg: transparent;
  --bs-table-color: #e5e7eb;
  --bs-table-border-color: rgba(148,163,184,0.30);
}

.admin-layout .table-dark {
  --bs-table-bg: rgba(255,255,255,0.95);
  --bs-table-color: #0f172a;
  --bs-table-border-color: rgba(15,23,42,0.12);
}

.admin-layout .list-group-item.text-light {
  color: #0f172a !important;
}

.badge-soft {
  background: rgba(56,189,248,0.12);
  color: #e0f2fe;
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  border: 1px solid rgba(56,189,248,0.4);
}

.avatar-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1d4ed8, #22c55e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #f9fafb;
}

.small-avatar {
  width: 28px;
  height: 28px;
  font-size: 0.75rem;
}

/* =========================
   Mobile/Tablet navigation
   (applies below Bootstrap lg)
   ========================= */

.app-mobile-header {
  position: sticky;
  top: 0;
  z-index: 1055;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  background: rgba(2,6,23,0.92);
  border-bottom: 1px solid rgba(148,163,184,0.18);
  backdrop-filter: blur(10px);
}

/* When drawer is open, lock background scroll (mobile/tablet) */
body.sidebar-open {
  overflow: hidden;
}

.app-mobile-header .app-menu-btn {
  border-radius: 12px;
  padding: 0.35rem 0.6rem;
}

.app-mobile-header .app-menu-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.app-mobile-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.app-mobile-welcome {
  line-height: 1.1;
  max-width: 48vw;
}

.app-mobile-username {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-mobile-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.app-mobile-logo img {
  height: 28px;
  max-width: 52vw;
  width: auto;
  display: block;
}

/* Lock background scroll when the drawer is open */
body.sidebar-open {
  overflow: hidden;
}

.app-sidebar-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease, visibility 200ms ease;
}

body.sidebar-open .app-sidebar-backdrop {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 991.98px) {
  /* Ensure layout never “scatters” due to flex sizing on small screens */
  .app-wrapper {
    display: block;
  }

  /* Sidebar becomes an overlay drawer */
  .app-layout .app-sidebar,
  .admin-layout .app-sidebar {
    width: 78vw;
    max-width: 380px;
    transform: translateX(-110%);
    transition: transform 220ms ease;
    z-index: 1060;
    padding-top: 0.75rem;
  }

  /* Tablet sizing is handled by the query below */

  body.sidebar-open .app-layout .app-sidebar,
  body.sidebar-open .admin-layout .app-sidebar {
    transform: translateX(0);
  }

  /* Content becomes full-width */
  .app-layout .app-main,
  .admin-layout .app-main {
    margin-left: 0;
  }

  .app-layout .site-footer,
  .admin-layout .site-footer {
    margin-left: 0;
  }

  /* Hide desktop topbar in user pages; mobile header replaces it */
  .app-layout .app-topbar {
    display: none;
  }

  /* Reduce padding for mobile */
  .app-main {
    padding-top: 0.75rem;
  }
}

/* Tablet drawer width: half-screen */
@media (min-width: 768px) and (max-width: 991.98px) {
  .app-layout .app-sidebar,
  .admin-layout .app-sidebar {
    width: 50vw;
    max-width: 420px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .app-layout .app-sidebar,
  .admin-layout .app-sidebar {
    width: 50vw;
    max-width: 420px;
  }
}


/* Mobile/Tablet menu dropdown (when sidebar drawer is disabled) */
@media (max-width: 991.98px) {
  .app-mobile-header .dropdown-menu.app-mobile-menu {
    width: 78vw;
    max-width: 380px;
    background: linear-gradient(180deg, #0b1220 0%, #020617 55%, #000 100%);
    border: 1px solid rgba(148,163,184,0.18);
    border-radius: 14px;
    padding: 0.5rem;
    position: fixed !important;
    top: 64px !important;
    left: 12px !important;
    z-index: 2000;
  }
  .app-mobile-header .dropdown-item {
    color: rgba(226,232,240,0.88);
    border-radius: 10px;
    padding: 0.55rem 0.9rem; /* a little horizontal space */
    margin: 0.12rem 0; /* subtle spacing between categories */
  }
  .app-mobile-header .dropdown-item:hover,
  .app-mobile-header .dropdown-item:focus {
    background: rgba(59,130,246,0.14);
    color: #fff;
  }
  .app-mobile-header .dropdown-item.active {
    background: linear-gradient(135deg, #f59e0b, #2563eb);
    color: #fff;
  }
  /* Tablet halfway width */
  @media (min-width: 768px) {
    .app-mobile-header .dropdown-menu.app-mobile-menu {
      width: 50vw;
      max-width: 520px;
    }
  }
}


/* Market table sparklines */
.sparkline svg{ display:block; margin-left:auto; }
.spark-up{ color: #16a34a; }
.spark-down{ color: #dc2626; }
