@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@600;700;800&display=swap');

:root {
    --bg-main: #070B18;
    --bg-secondary: #0D1224;
    --bg-card: rgba(17, 24, 49, 0.88);
    --bg-card-soft: rgba(24, 33, 68, 0.72);
    --primary: #00D9FF;
    --primary-soft: rgba(0, 217, 255, 0.18);
    --secondary: #B026FF;
    --secondary-soft: rgba(176, 38, 255, 0.18);
    --accent: #FF2BD6;
    --accent-soft: rgba(255, 43, 214, 0.18);
    --success: #00FF99;
    --warning: #FFD166;
    --danger: #FF4D6D;
    --text-main: #FFFFFF;
    --text-muted: #9CA8C7;
    --border-glow: rgba(0, 217, 255, 0.35);
    --shadow-glow: 0 0 24px rgba(0, 217, 255, 0.14);
    --sidebar-w: 260px;
    --radius: 18px;
    --radius-sm: 12px;
}

*, *::before, *::after { box-sizing: border-box; }

body.theme-neon {
    font-family: 'Inter', sans-serif;
    background:
        radial-gradient(circle at 12% 8%, rgba(176, 38, 255, 0.22), transparent 35%),
        radial-gradient(circle at 88% 12%, rgba(0, 217, 255, 0.18), transparent 30%),
        radial-gradient(circle at 50% 100%, rgba(255, 43, 214, 0.08), transparent 40%),
        linear-gradient(135deg, #070B18 0%, #0D1224 45%, #090D1C 100%);
    color: var(--text-main);
    min-height: 100vh;
    position: relative;
}

body.theme-neon::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
}

h1, h2, h3, h4, h5, .brand-title, .page-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.theme-neon a { color: var(--primary); }
.theme-neon a:hover { color: #66eaff; }

/* ===== LAYOUT ===== */
#wrapper { position: relative; min-height: 100vh; }

.sidebar-neon {
    width: var(--sidebar-w);
    min-height: 100vh;
    background: rgba(5, 8, 20, 0.92);
    border-right: 1px solid rgba(0, 217, 255, 0.12);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    flex-shrink: 0;
    z-index: 1040;
    display: flex;
    flex-direction: column;
}

.sidebar-brand {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none !important;
    color: var(--text-main) !important;
}

.brand-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.35);
}

.brand-title { font-size: 1rem; line-height: 1.2; margin: 0; }
.brand-sub { font-size: 0.72rem; color: var(--text-muted); }

.sidebar-nav { padding: 0.75rem; flex: 1; overflow-y: auto; }

.nav-item-neon {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 0.85rem;
    margin-bottom: 0.35rem;
    border-radius: var(--radius-sm);
    color: var(--text-muted) !important;
    text-decoration: none !important;
    font-size: 0.92rem;
    font-weight: 500;
    transition: all 0.25s ease;
    border: 1px solid transparent;
}

.nav-item-neon i { font-size: 1.15rem; width: 22px; text-align: center; }

.nav-item-neon:hover {
    color: var(--text-main) !important;
    background: var(--primary-soft);
    border-color: rgba(0, 217, 255, 0.2);
    box-shadow: 0 0 16px rgba(0, 217, 255, 0.08);
}

.nav-item-neon.active {
    color: #fff !important;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.25), rgba(176, 38, 255, 0.25));
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
}

.main-content { flex: 1; min-width: 0; display: flex; flex-direction: column; }

.topbar-neon {
    background: rgba(10, 14, 30, 0.85);
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: sticky;
    top: 0;
    z-index: 1030;
}

.topbar-greeting .hello { font-size: 0.95rem; font-weight: 600; }
.topbar-greeting .sub { font-size: 0.78rem; color: var(--text-muted); }

.topbar-saldo {
    font-size: 0.82rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: var(--primary-soft);
    border: 1px solid rgba(0, 217, 255, 0.25);
    color: var(--primary);
    font-weight: 600;
}

.page-content { padding: 1.25rem; flex: 1; }
@media (min-width: 768px) { .page-content { padding: 1.5rem 1.75rem; } }

.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1035;
}

@media (max-width: 991.98px) {
    .sidebar-neon {
        position: fixed;
        left: -280px;
        transition: left 0.3s ease;
        height: 100vh;
    }
    .sidebar-neon.show { left: 0; }
    .sidebar-overlay.show { display: block; }
}

/* ===== CARDS ===== */
.card-neon, .theme-neon .card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 217, 255, 0.18);
    border-radius: var(--radius);
    box-shadow: var(--shadow-glow);
    backdrop-filter: blur(8px);
    color: var(--text-main);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-neon:hover, .theme-neon .metric-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 32px rgba(0, 217, 255, 0.18);
}

.theme-neon .card-header {
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: var(--text-main);
    font-weight: 600;
}

.theme-neon .card-footer {
    background: rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.panel-card { padding: 1.25rem; }

.metric-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 217, 255, 0.18);
    border-radius: var(--radius);
    padding: 1.15rem 1.25rem;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0.7;
}

.metric-card .metric-icon {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.metric-card .metric-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.metric-card .metric-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    margin: 0.15rem 0 0;
}

.metric-card.accent-cyan .metric-icon, .metric-card.accent-cyan .metric-value { color: var(--primary); }
.metric-card.accent-violet .metric-icon, .metric-card.accent-violet .metric-value { color: var(--secondary); }
.metric-card.accent-fucsia .metric-icon, .metric-card.accent-fucsia .metric-value { color: var(--accent); }
.metric-card.accent-success .metric-icon, .metric-card.accent-success .metric-value { color: var(--success); }
.metric-card.accent-warning .metric-icon, .metric-card.accent-warning .metric-value { color: var(--warning); }
.metric-card.accent-danger .metric-icon, .metric-card.accent-danger .metric-value { color: var(--danger); }

.metric-card-sm { padding: 0.85rem 1rem; }
.metric-card-sm .metric-value { font-size: 1.25rem; }

/* Hero */
.hero-card {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.15), rgba(176, 38, 255, 0.2), rgba(255, 43, 214, 0.12));
    border: 1px solid rgba(0, 217, 255, 0.35);
    border-radius: var(--radius);
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(176, 38, 255, 0.15);
    animation: heroGlow 4s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    from { box-shadow: 0 0 30px rgba(0, 217, 255, 0.12); }
    to { box-shadow: 0 0 45px rgba(176, 38, 255, 0.2); }
}

.hero-card .hero-icon {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-quote {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    font-style: italic;
    border-left: 3px solid var(--accent);
    padding-left: 0.75rem;
    margin-top: 1rem;
}

/* Progress */
.progress-neon {
    height: 12px;
    background: rgba(255,255,255,0.08);
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid rgba(0, 217, 255, 0.15);
}

.progress-neon-bar {
    height: 100%;
    min-width: 4%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 999px;
    transition: width 0.8s ease;
    box-shadow: 0 0 12px rgba(0, 217, 255, 0.5);
}

.level-module {
    background: var(--bg-card);
    border: 1px solid rgba(176, 38, 255, 0.25);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.level-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--secondary-soft), var(--primary-soft));
    border: 1px solid rgba(176, 38, 255, 0.4);
    font-weight: 600;
    font-size: 0.88rem;
}

/* ===== BUTTONS ===== */
.btn-neon-primary {
    background: linear-gradient(135deg, #00D9FF, #B026FF);
    color: #fff !important;
    border: none;
    border-radius: var(--radius-sm);
    padding: 0.55rem 1.15rem;
    font-weight: 600;
    box-shadow: 0 0 18px rgba(0, 217, 255, 0.25);
    transition: all 0.25s ease;
}

.btn-neon-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 28px rgba(0, 217, 255, 0.4);
    color: #fff !important;
}

.btn-neon-secondary {
    background: transparent;
    color: var(--primary) !important;
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-sm);
    padding: 0.55rem 1.15rem;
    font-weight: 600;
    transition: all 0.25s ease;
}

.btn-neon-secondary:hover {
    background: var(--primary-soft);
    color: #fff !important;
}

.btn-neon-accent {
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    color: #fff !important;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    box-shadow: 0 0 16px rgba(255, 43, 214, 0.3);
}

.btn-neon-danger {
    background: transparent;
    color: var(--danger) !important;
    border: 1px solid rgba(255, 77, 109, 0.45);
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.btn-neon-danger:hover {
    background: rgba(255, 77, 109, 0.15);
    color: #fff !important;
}

.btn-neon-success {
    background: linear-gradient(135deg, #00FF99, #00D9FF);
    color: #070B18 !important;
    border: none;
    font-weight: 700;
    border-radius: var(--radius-sm);
    box-shadow: 0 0 16px rgba(0, 255, 153, 0.25);
}

.btn-neon-success:hover {
    transform: translateY(-1px);
    color: #070B18 !important;
}

.btn-glass {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--text-main) !important;
    border-radius: var(--radius-sm);
}

.btn-sm { padding: 0.35rem 0.75rem; font-size: 0.82rem; }

/* ===== BADGES ===== */
.badge-neon {
    display: inline-block;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.badge-pending { background: rgba(255, 209, 102, 0.2); color: var(--warning); border: 1px solid rgba(255, 209, 102, 0.4); }
.badge-approved, .badge-active, .badge-paid { background: rgba(0, 255, 153, 0.15); color: var(--success); border: 1px solid rgba(0, 255, 153, 0.35); }
.badge-rejected, .badge-suspended { background: rgba(255, 77, 109, 0.15); color: var(--danger); border: 1px solid rgba(255, 77, 109, 0.35); }
.badge-observed, .badge-review { background: rgba(176, 38, 255, 0.18); color: #c77dff; border: 1px solid rgba(176, 38, 255, 0.35); }
.badge-requested { background: var(--primary-soft); color: var(--primary); border: 1px solid var(--border-glow); }
.badge-default { background: rgba(255,255,255,0.08); color: var(--text-muted); border: 1px solid rgba(255,255,255,0.12); }

.badge-social {
    background: var(--secondary-soft);
    color: var(--secondary);
    border: 1px solid rgba(176, 38, 255, 0.35);
    font-size: 0.7rem;
    padding: 0.25rem 0.55rem;
    border-radius: 6px;
}

/* ===== TABLES ===== */
.theme-neon .table {
    --bs-table-bg: transparent;
    --bs-table-color: var(--text-main);
    --bs-table-border-color: rgba(255,255,255,0.06);
    --bs-table-hover-bg: rgba(0, 217, 255, 0.06);
    --bs-table-striped-bg: rgba(255,255,255,0.02);
}

.theme-neon .table thead th {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    border-bottom-color: rgba(0, 217, 255, 0.15) !important;
    font-weight: 600;
}

.table-neon-wrap {
    background: var(--bg-card);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: var(--radius);
    overflow: hidden;
}

/* ===== FORMS ===== */
.theme-neon .form-control,
.theme-neon .form-select {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(0, 217, 255, 0.2);
    color: var(--text-main);
    border-radius: var(--radius-sm);
}

.theme-neon .form-control:focus,
.theme-neon .form-select:focus {
    background: rgba(0, 0, 0, 0.45);
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(0, 217, 255, 0.15);
    color: var(--text-main);
}

.theme-neon .form-control::placeholder { color: rgba(156, 168, 199, 0.6); }
.theme-neon .form-control:disabled { background: rgba(255,255,255,0.04); color: var(--text-muted); }
.theme-neon .form-label { color: var(--text-muted); font-size: 0.88rem; font-weight: 500; }
.theme-neon .form-check-input { background-color: rgba(0,0,0,0.4); border-color: rgba(0,217,255,0.3); }
.theme-neon .form-check-input:checked { background-color: var(--primary); border-color: var(--primary); }

/* Upload zone */
.upload-zone {
    border: 2px dashed rgba(0, 217, 255, 0.35);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    background: rgba(0, 217, 255, 0.04);
    cursor: pointer;
    transition: all 0.25s ease;
}

.upload-zone:hover, .upload-zone.dragover {
    border-color: var(--primary);
    background: var(--primary-soft);
    box-shadow: 0 0 24px rgba(0, 217, 255, 0.12);
}

.upload-zone i { font-size: 2.5rem; color: var(--primary); margin-bottom: 0.5rem; }
.upload-preview { max-height: 220px; border-radius: var(--radius-sm); margin-top: 1rem; border: 1px solid var(--border-glow); }

/* Steps */
.step-indicator { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.step-item {
    flex: 1;
    min-width: 100px;
    padding: 0.65rem;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
}
.step-item.active {
    border-color: var(--primary);
    background: var(--primary-soft);
    color: var(--primary);
    font-weight: 600;
}

/* ===== TABS ===== */
.tabs-neon .nav-link {
    color: var(--text-muted);
    border: 1px solid transparent;
    border-radius: 999px !important;
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-right: 0.35rem;
    transition: all 0.2s;
}

.tabs-neon .nav-link:hover { color: var(--text-main); background: rgba(255,255,255,0.05); }
.tabs-neon .nav-link.active {
    color: #fff !important;
    background: linear-gradient(135deg, rgba(0,217,255,0.3), rgba(176,38,255,0.3));
    border-color: var(--border-glow);
}

/* Ranking */
.rank-row { transition: background 0.2s; }
.rank-row:hover { background: rgba(0, 217, 255, 0.06) !important; }
.rank-pos { width: 36px; text-align: center; font-weight: 700; }
.rank-1 { color: #FFD700; }
.rank-2 { color: #C0C0C0; }
.rank-3 { color: #CD7F32; }

/* Task cards */
.task-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: var(--radius);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
}

.task-card:hover {
    border-color: rgba(176, 38, 255, 0.45);
    box-shadow: 0 0 28px rgba(176, 38, 255, 0.12);
    transform: translateY(-3px);
}

.task-card-body { padding: 1.25rem; flex: 1; }
.task-card-footer { padding: 1rem 1.25rem; border-top: 1px solid rgba(255,255,255,0.06); display: flex; gap: 0.5rem; flex-wrap: wrap; }
.task-value { font-family: 'Poppins', sans-serif; font-size: 1.35rem; font-weight: 700; color: var(--success); }

/* Evidencia admin */
.evidencia-card-neon {
    background: var(--bg-card);
    border: 1px solid rgba(0, 217, 255, 0.18);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.2s;
}

.evidencia-card-neon:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }

.evidencia-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.evidencia-img:hover { opacity: 0.9; }

/* Empty state */
.empty-state {
    text-align: center;
    padding: 3rem 1.5rem;
    background: var(--bg-card-soft);
    border: 1px dashed rgba(0, 217, 255, 0.25);
    border-radius: var(--radius);
}

.empty-state i {
    font-size: 3rem;
    color: var(--secondary);
    opacity: 0.7;
    margin-bottom: 1rem;
    display: block;
}

.empty-state h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.empty-state p { color: var(--text-muted); max-width: 360px; margin: 0 auto 1.25rem; font-size: 0.9rem; }

/* Auth pages */
.auth-wrap { position: relative; z-index: 1; }
.auth-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 217, 255, 0.25);
    border-radius: var(--radius);
    box-shadow: 0 0 50px rgba(0, 217, 255, 0.1);
    overflow: hidden;
}

.auth-card-header {
    text-align: center;
    padding: 2rem 1.5rem 1rem;
    background: linear-gradient(180deg, rgba(0,217,255,0.08), transparent);
}

.auth-tagline { color: var(--text-muted); font-size: 0.88rem; margin-top: 0.35rem; }

/* Alerts */
.theme-neon .alert {
    border-radius: var(--radius-sm);
    border-width: 1px;
}
.theme-neon .alert-danger { background: rgba(255,77,109,0.12); border-color: rgba(255,77,109,0.35); color: #ffb3c0; }
.theme-neon .alert-warning { background: rgba(255,209,102,0.12); border-color: rgba(255,209,102,0.35); color: var(--warning); }
.theme-neon .alert-info { background: var(--primary-soft); border-color: var(--border-glow); color: var(--primary); }

/* Modal */
.modal-backdrop { z-index: 1050 !important; }
.modal { z-index: 1055 !important; }
.theme-neon .modal-content {
    background: var(--bg-secondary);
    border: 1px solid rgba(0, 217, 255, 0.25);
    color: var(--text-main);
}
.theme-neon .modal-header { border-bottom-color: rgba(255,255,255,0.08); }
.theme-neon .btn-close { filter: invert(1); }

.monto-dual .monto-usd { line-height: 1.2; }
.monto-dual .monto-ars-ref { margin-top: 0.15rem; }
.task-card-done { opacity: 0.95; border-color: rgba(255,255,255,0.08); }

/* Wallet movements */
.movement-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.2s;
}

.movement-item:hover { background: rgba(0, 217, 255, 0.04); }
.movement-item:last-child { border-bottom: none; }

.movement-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.movement-icon.credito { background: rgba(0,255,153,0.15); color: var(--success); }
.movement-icon.debito { background: rgba(255,77,109,0.15); color: var(--danger); }
.movement-icon.otro { background: var(--primary-soft); color: var(--primary); }

/* Admin metric colors */
.admin-metric-cyan::before { background: linear-gradient(90deg, var(--primary), transparent) !important; }
.admin-metric-warning::before { background: linear-gradient(90deg, var(--warning), transparent) !important; }
.admin-metric-fucsia::before { background: linear-gradient(90deg, var(--accent), transparent) !important; }
.admin-metric-danger::before { background: linear-gradient(90deg, var(--danger), transparent) !important; }

/* Counter pill */
.counter-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary-soft);
    border: 1px solid var(--border-glow);
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

/* Animations */
.fade-in { animation: fadeIn 0.45s ease forwards; opacity: 0; }
.fade-in-delay-1 { animation-delay: 0.08s; }
.fade-in-delay-2 { animation-delay: 0.16s; }
.fade-in-delay-3 { animation-delay: 0.24s; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.text-muted { color: var(--text-muted) !important; }
.page-header { margin-bottom: 1.5rem; }
.page-header .page-title { margin: 0; font-size: 1.5rem; }
.page-header .page-sub { color: var(--text-muted); font-size: 0.88rem; margin: 0.25rem 0 0; }

.profile-status-card {
    background: linear-gradient(135deg, rgba(0,217,255,0.08), rgba(176,38,255,0.08));
    border: 1px solid rgba(0,217,255,0.2);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.solicitud-card {
    background: var(--bg-card);
    border: 1px solid rgba(0,217,255,0.15);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
}

@media (max-width: 575.98px) {
    .task-card-footer .btn { flex: 1 1 100%; }
    .hero-card .d-flex.gap-2 { flex-direction: column; }
    .hero-card .btn { width: 100%; }
}
