/* =========================================================
   Crypto Signal Scanner — Premium Dark Mode CSS
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

/* =====================
   CSS Variables / Tokens
   ===================== */
:root {
    /* Colors */
    --bg-900:  #0a0b0f;
    --bg-800:  #111318;
    --bg-700:  #171b24;
    --bg-600:  #1e2330;
    --bg-500:  #252c3d;
    --bg-400:  #2d3548;

    --border:  rgba(255,255,255,0.07);
    --border-2: rgba(255,255,255,0.12);

    --text-primary:   #f0f2f7;
    --text-secondary: #8892a4;
    --text-muted:     #4e5668;

    --green:    #00d4a0;
    --green-dim:#003d2d;
    --red:      #ff4d6d;
    --red-dim:  #3d0014;
    --yellow:   #f5c518;
    --yellow-dim: #3d3000;
    --blue:     #4d9eff;
    --blue-dim: #001a3d;
    --purple:   #a855f7;
    --purple-dim:#1e0a3d;

    /* Gradients */
    --grad-primary:  linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --grad-green:    linear-gradient(135deg, #00d4a0, #00b37a);
    --grad-red:      linear-gradient(135deg, #ff4d6d, #d6274a);
    --grad-blue:     linear-gradient(135deg, #4d9eff, #2563eb);
    --grad-gold:     linear-gradient(135deg, #f5c518, #e8a500);
    --grad-dark:     linear-gradient(180deg, #111318 0%, #0a0b0f 100%);

    /* Glassmorphism */
    --glass-bg:     rgba(23, 27, 36, 0.85);
    --glass-border: rgba(255,255,255,0.08);
    --glass-shadow: 0 8px 32px rgba(0,0,0,0.5);

    /* Typography */
    --font-sans: 'Inter', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Spacing */
    --sidebar-w: 240px;
    --topbar-h:  60px;

    /* Transitions */
    --transition: 0.2s ease;
    --transition-slow: 0.4s ease;

    /* Shadows */
    --shadow-sm:  0 2px 8px rgba(0,0,0,0.3);
    --shadow-md:  0 4px 20px rgba(0,0,0,0.4);
    --shadow-lg:  0 8px 40px rgba(0,0,0,0.6);
    --shadow-glow-green: 0 0 20px rgba(0,212,160,0.2);
    --shadow-glow-red:   0 0 20px rgba(255,77,109,0.2);
}

/* =====================
   Reset & Base
   ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 14px; scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    background: var(--bg-900);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    overflow-x: hidden;
    line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { max-width: 100%; }

/* =====================
   Scrollbar
   ===================== */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--bg-800); }
::-webkit-scrollbar-thumb { background: var(--bg-400); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--bg-500); }

/* =====================
   Layout
   ===================== */
#app-layout { display: flex; width: 100%; min-height: 100vh; }

/* =====================
   Sidebar
   ===================== */
.sidebar {
    width: var(--sidebar-w);
    min-height: 100vh;
    background: var(--bg-800);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0; top: 0; bottom: 0;
    z-index: 100;
    transition: transform var(--transition-slow);
}

.sidebar-logo {
    padding: 20px 20px 16px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-logo-icon {
    width: 36px; height: 36px;
    background: var(--grad-primary);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(102,126,234,0.4);
}

.sidebar-logo-text {
    display: flex; flex-direction: column;
}
.sidebar-logo-text .brand { font-size: 13px; font-weight: 700; color: var(--text-primary); letter-spacing: 0.5px; }
.sidebar-logo-text .tagline { font-size: 10px; color: var(--text-muted); }

.sidebar-nav { flex: 1; padding: 16px 12px; overflow-y: auto; }

.nav-section-title {
    font-size: 10px; font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; color: var(--text-muted);
    padding: 8px 8px 6px; margin-top: 8px;
}

.nav-item {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 12px; border-radius: 8px;
    color: var(--text-secondary); font-size: 13px; font-weight: 500;
    transition: all var(--transition);
    margin-bottom: 2px;
    position: relative;
}

.nav-item:hover {
    background: var(--bg-700);
    color: var(--text-primary);
}

.nav-item.active {
    background: rgba(102,126,234,0.15);
    color: #a78bfa;
}

.nav-item.active::before {
    content: '';
    position: absolute; left: 0; top: 20%; bottom: 20%;
    width: 3px; border-radius: 0 2px 2px 0;
    background: var(--grad-primary);
}

.nav-item .nav-icon { font-size: 16px; width: 20px; text-align: center; flex-shrink: 0; }
.nav-badge {
    margin-left: auto; background: var(--red); color: white;
    font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 10px;
    min-width: 18px; text-align: center;
}

.sidebar-footer {
    padding: 16px; border-top: 1px solid var(--border);
    font-size: 11px; color: var(--text-muted);
    display: flex; flex-direction: column; gap: 4px;
}

.telegram-status {
    display: flex; align-items: center; gap: 6px;
    font-size: 11px;
}
.telegram-status .dot {
    width: 6px; height: 6px; border-radius: 50%;
}
.dot.online { background: var(--green); box-shadow: 0 0 6px var(--green); animation: pulse 2s infinite; }
.dot.offline { background: var(--text-muted); }

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* =====================
   Main Content
   ===================== */
.main-content {
    flex: 1;
    margin-left: var(--sidebar-w);
    display: flex; flex-direction: column;
    min-height: 100vh;
}

/* =====================
   Topbar
   ===================== */
.topbar {
    height: var(--topbar-h);
    background: var(--bg-800);
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center;
    padding: 0 24px; gap: 16px;
    position: sticky; top: 0; z-index: 50;
}

.topbar-title {
    font-size: 16px; font-weight: 700; color: var(--text-primary);
    flex: 1;
}
.topbar-subtitle {
    font-size: 12px; color: var(--text-muted); margin-top: 1px;
}

.topbar-actions { display: flex; align-items: center; gap: 10px; }

/* =====================
   Page Content
   ===================== */
.page-content {
    flex: 1; padding: 24px;
    max-width: 1400px; width: 100%;
}

/* =====================
   Cards
   ===================== */
.card {
    background: var(--bg-700);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.card-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: var(--glass-shadow);
}

.card-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px;
}

.card-title {
    font-size: 14px; font-weight: 600; color: var(--text-primary);
    display: flex; align-items: center; gap: 8px;
}

.card-body { padding: 20px; }

/* =====================
   Stat Cards
   ===================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card {
    background: var(--bg-700);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px 20px;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition);
}

.stat-card:hover {
    transform: translateY(-2px);
    border-color: var(--border-2);
}

.stat-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
}

.stat-card.green::before  { background: var(--grad-green); }
.stat-card.red::before    { background: var(--grad-red); }
.stat-card.blue::before   { background: var(--grad-blue); }
.stat-card.purple::before { background: var(--grad-primary); }
.stat-card.gold::before   { background: var(--grad-gold); }

.stat-label {
    font-size: 11px; font-weight: 600; letter-spacing: 0.5px;
    text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px;
}

.stat-value {
    font-size: 28px; font-weight: 800; color: var(--text-primary);
    line-height: 1; margin-bottom: 6px;
    font-variant-numeric: tabular-nums;
}

.stat-change {
    font-size: 11px; color: var(--text-muted);
    display: flex; align-items: center; gap: 4px;
}

.stat-icon {
    position: absolute; right: 16px; top: 50%;
    transform: translateY(-50%); font-size: 32px; opacity: 0.08;
}

/* =====================
   Tables
   ===================== */
.table-container {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid var(--border);
}

table {
    width: 100%; border-collapse: collapse;
    font-size: 13px;
}

thead tr {
    background: var(--bg-800);
    border-bottom: 1px solid var(--border);
}

thead th {
    padding: 12px 16px;
    text-align: left; font-size: 11px; font-weight: 600;
    letter-spacing: 0.5px; text-transform: uppercase;
    color: var(--text-muted); white-space: nowrap;
}

tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}

tbody tr:last-child { border-bottom: none; }

tbody tr:hover { background: rgba(255,255,255,0.03); }

td {
    padding: 12px 16px;
    color: var(--text-secondary);
    vertical-align: middle;
}

td.text-primary { color: var(--text-primary); font-weight: 500; }

/* =====================
   Badges / Chips
   ===================== */
.badge {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 3px 8px; border-radius: 6px;
    font-size: 11px; font-weight: 600; letter-spacing: 0.3px;
    white-space: nowrap;
}

.badge-long  { background: var(--green-dim);  color: var(--green); }
.badge-short { background: var(--red-dim);    color: var(--red); }
.badge-pending { background: var(--yellow-dim); color: var(--yellow); }
.badge-sent    { background: var(--green-dim);  color: var(--green); }
.badge-failed  { background: var(--red-dim);    color: var(--red); }
.badge-cancelled { background: rgba(255,255,255,0.05); color: var(--text-muted); }
.badge-pass    { background: var(--green-dim);  color: var(--green); }
.badge-skip    { background: var(--yellow-dim); color: var(--yellow); }
.badge-error   { background: var(--red-dim);    color: var(--red); }
.badge-info    { background: var(--blue-dim);   color: var(--blue); }
.badge-blue    { background: var(--blue-dim);   color: var(--blue); }
.badge-purple  { background: var(--purple-dim); color: var(--purple); }

/* =====================
   Buttons
   ===================== */
.btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 16px; border-radius: 8px;
    font-size: 13px; font-weight: 600;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--grad-primary); color: white;
    box-shadow: 0 4px 15px rgba(102,126,234,0.3);
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(102,126,234,0.4); }

.btn-green {
    background: var(--grad-green); color: #001a12;
    box-shadow: var(--shadow-glow-green);
}
.btn-green:hover { opacity: 0.9; transform: translateY(-1px); }

.btn-red {
    background: var(--grad-red); color: white;
}
.btn-red:hover { opacity: 0.9; transform: translateY(-1px); }

.btn-ghost {
    background: var(--bg-600); color: var(--text-secondary);
    border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--bg-500); color: var(--text-primary); border-color: var(--border-2); }

.btn-sm { padding: 5px 10px; font-size: 11px; border-radius: 6px; }
.btn-lg { padding: 12px 24px; font-size: 14px; border-radius: 10px; }

/* Run scanner button special animation */
.btn-scanner {
    background: var(--grad-primary);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(102,126,234,0.4);
    position: relative;
    overflow: hidden;
}
.btn-scanner::before {
    content: '';
    position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}
.btn-scanner:hover::before { left: 100%; }
.btn-scanner:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(102,126,234,0.5); }
.btn-scanner:active { transform: translateY(0); }

/* =====================
   Forms
   ===================== */
.form-group { margin-bottom: 16px; }
.form-label {
    display: block; font-size: 12px; font-weight: 600;
    color: var(--text-secondary); margin-bottom: 6px; letter-spacing: 0.3px;
}
.form-input, .form-select {
    width: 100%;
    background: var(--bg-600);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 9px 12px;
    color: var(--text-primary);
    font-size: 13px;
    font-family: inherit;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    appearance: none;
}
.form-input:focus, .form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102,126,234,0.15);
}
.form-input::placeholder { color: var(--text-muted); }
.form-description { font-size: 11px; color: var(--text-muted); margin-top: 4px; }

.filter-bar {
    display: flex; align-items: center; gap: 10px;
    flex-wrap: wrap; margin-bottom: 20px;
}
.filter-bar .form-input, .filter-bar .form-select {
    width: auto; flex: 1; min-width: 140px; max-width: 200px;
}

/* =====================
   Price Display
   ===================== */
.price {
    font-family: var(--font-mono);
    font-size: 13px; font-weight: 500;
    color: var(--text-primary);
}
.price.green { color: var(--green); }
.price.red   { color: var(--red); }

.pct-change {
    font-size: 12px; font-weight: 600;
    font-family: var(--font-mono);
}
.pct-change.positive { color: var(--green); }
.pct-change.negative { color: var(--red); }
.pct-change.neutral  { color: var(--text-muted); }

/* =====================
   Signal Detail
   ===================== */
.signal-direction-banner {
    border-radius: 12px; padding: 20px 24px;
    display: flex; align-items: center; gap: 20px;
    margin-bottom: 24px;
}
.signal-direction-banner.long {
    background: linear-gradient(135deg, rgba(0,212,160,0.15) 0%, rgba(0,212,160,0.05) 100%);
    border: 1px solid rgba(0,212,160,0.3);
    box-shadow: var(--shadow-glow-green);
}
.signal-direction-banner.short {
    background: linear-gradient(135deg, rgba(255,77,109,0.15) 0%, rgba(255,77,109,0.05) 100%);
    border: 1px solid rgba(255,77,109,0.3);
    box-shadow: var(--shadow-glow-red);
}

.signal-direction-label {
    font-size: 36px; font-weight: 800; letter-spacing: -1px;
}

.signal-price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.signal-price-item {
    background: var(--bg-700); border: 1px solid var(--border);
    border-radius: 10px; padding: 14px 16px;
}
.signal-price-item .label {
    font-size: 10px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.5px; color: var(--text-muted); margin-bottom: 6px;
}
.signal-price-item .value {
    font-family: var(--font-mono); font-size: 15px; font-weight: 600;
    color: var(--text-primary);
}

/* =====================
   Confidence Meter
   ===================== */
.confidence-bar {
    height: 6px; background: var(--bg-500); border-radius: 3px;
    overflow: hidden; margin-top: 4px;
}
.confidence-fill {
    height: 100%; border-radius: 3px;
    background: var(--grad-primary);
    transition: width 1s ease;
}

/* =====================
   Log Terminal Style
   ===================== */
.log-terminal {
    background: var(--bg-900);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: var(--font-mono);
    font-size: 12px;
    overflow: auto;
    max-height: 500px;
}
.log-line {
    display: flex; align-items: baseline; gap: 12px;
    padding: 6px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    transition: background var(--transition);
}
.log-line:hover { background: rgba(255,255,255,0.02); }
.log-time { color: var(--text-muted); white-space: nowrap; }
.log-stage { color: var(--blue); min-width: 70px; }
.log-coin { color: var(--purple); min-width: 80px; }
.log-msg { color: var(--text-secondary); flex: 1; }
.log-line.pass .log-msg  { color: var(--green); }
.log-line.error .log-msg { color: var(--red); }
.log-line.skip .log-msg  { color: var(--yellow); }

/* =====================
   Pagination
   ===================== */
.pagination-wrapper {
    padding: 16px 20px;
    border-top: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; flex-wrap: wrap;
}
.pagination-info { font-size: 12px; color: var(--text-muted); }
nav.pagination { display: flex; gap: 4px; }
nav.pagination span, nav.pagination a {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 32px; height: 32px; padding: 0 8px;
    border-radius: 6px; font-size: 13px; font-weight: 500;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    background: var(--bg-700);
    transition: all var(--transition);
}
nav.pagination a:hover { background: var(--bg-600); color: var(--text-primary); border-color: var(--border-2); }
nav.pagination .active, nav.pagination [aria-current="page"] {
    background: var(--grad-primary); color: white; border-color: transparent;
}

/* =====================
   Toast / Alerts
   ===================== */
.flash-messages {
    position: fixed; bottom: 24px; right: 24px; z-index: 9999;
    display: flex; flex-direction: column; gap: 10px;
    max-width: 360px;
}
.flash {
    padding: 14px 18px; border-radius: 10px;
    font-size: 13px; font-weight: 500;
    display: flex; align-items: center; gap: 10px;
    animation: slideInRight 0.3s ease;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
}
.flash.success {
    background: rgba(0,212,160,0.15); border: 1px solid rgba(0,212,160,0.3);
    color: var(--green);
}
.flash.error {
    background: rgba(255,77,109,0.15); border: 1px solid rgba(255,77,109,0.3);
    color: var(--red);
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to   { transform: translateX(0); opacity: 1; }
}

/* =====================
   Loading Spinner
   ===================== */
.spinner {
    width: 20px; height: 20px;
    border: 2px solid rgba(255,255,255,0.1);
    border-top-color: #667eea;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* =====================
   Empty State
   ===================== */
.empty-state {
    text-align: center; padding: 60px 24px;
    color: var(--text-muted);
}
.empty-state .icon { font-size: 48px; margin-bottom: 12px; opacity: 0.4; }
.empty-state h3 { font-size: 15px; font-weight: 600; color: var(--text-secondary); margin-bottom: 8px; }
.empty-state p { font-size: 13px; }

/* =====================
   Utility Classes
   ===================== */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.w-full { width: 100%; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mt-4 { margin-top: 16px; }
.text-sm { font-size: 12px; }
.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }
.mono { font-family: var(--font-mono); }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }

/* =====================
   Responsive
   ===================== */
@media (max-width: 768px) {
    :root { --sidebar-w: 0px; }
    .sidebar { transform: translateX(-240px); }
    .sidebar.open { transform: translateX(0); --sidebar-w: 240px; }
    .main-content { margin-left: 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* =====================
   Ultra-Premium Ticker Tape
   ===================== */
.ticker-container {
    background: linear-gradient(90deg, rgba(10,11,15,0.98) 0%, rgba(17,19,24,0.95) 50%, rgba(10,11,15,0.98) 100%);
    border-bottom: 1px solid var(--border-2);
    padding: 8px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    overflow-x: auto;
    white-space: nowrap;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.ticker-badge-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 212, 160, 0.1);
    border: 1px solid rgba(0, 212, 160, 0.3);
    padding: 4px 10px;
    border-radius: 20px;
    color: var(--green);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    font-family: var(--font-sans);
}
.live-pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--green);
    animation: livePulse 1.6s infinite ease-in-out;
}
@keyframes livePulse {
    0% { transform: scale(0.9); opacity: 0.7; box-shadow: 0 0 4px var(--green); }
    50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 12px var(--green); }
    100% { transform: scale(0.9); opacity: 0.7; box-shadow: 0 0 4px var(--green); }
}

.ticker-pill-card {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-800);
    border: 1px solid var(--border);
    padding: 4px 12px;
    border-radius: 8px;
    font-family: var(--font-mono);
    font-size: 12px;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.ticker-pill-card:hover {
    border-color: rgba(102,126,234,0.4);
    transform: translateY(-1px);
}
.ticker-coin-tag {
    font-weight: 700;
    color: var(--text-primary);
}
.ticker-price-val {
    font-weight: 600;
    color: #ffffff;
}
.ticker-change-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
}
.ticker-change-badge.up {
    background: rgba(0, 212, 160, 0.15);
    color: var(--green);
}
.ticker-change-badge.down {
    background: rgba(255, 77, 109, 0.15);
    color: var(--red);
}

