/* =============================================
   VIFAVION - Neomorphic Military Design System
   Style: Cockpit / Fighter Jet / HUD
   ============================================= */

/* =============================================
   1. CSS VARIABLES (Design Tokens)
   ============================================= */
:root {
    /* Primary Colors - Military Navy */
    --vifa-marine: #1a2332;
    --vifa-marine-light: #2a3a4d;
    --vifa-marine-lighter: #3a4a5d;
    --vifa-marine-dark: #0f1621;
    --vifa-marine-darker: #080c12;

    /* Accent - Cyan HUD */
    --vifa-cyan: #00d4ff;
    --vifa-cyan-glow: rgba(0, 212, 255, 0.4);
    --vifa-cyan-soft: rgba(0, 212, 255, 0.15);

    /* Neutral */
    --vifa-cream: #f5f0e8;
    --vifa-cream-soft: rgba(245, 240, 232, 0.9);
    --vifa-white: #ffffff;
    --vifa-gray: #8a9aab;

    /* Status Colors */
    --vifa-success: #10b981;
    --vifa-success-soft: rgba(16, 185, 129, 0.15);
    --vifa-error: #ef4444;
    --vifa-error-soft: rgba(239, 68, 68, 0.15);
    --vifa-warning: #f59e0b;
    --vifa-warning-soft: rgba(245, 158, 11, 0.15);
    --vifa-info: #00d4ff;

    /* Neomorphism Shadows */
    --neo-shadow-out:
        8px 8px 16px rgba(0, 0, 0, 0.4),
        -4px -4px 12px rgba(255, 255, 255, 0.03);
    --neo-shadow-out-sm:
        4px 4px 8px rgba(0, 0, 0, 0.3),
        -2px -2px 6px rgba(255, 255, 255, 0.02);
    --neo-shadow-in:
        inset 4px 4px 8px rgba(0, 0, 0, 0.3),
        inset -2px -2px 6px rgba(255, 255, 255, 0.02);
    --neo-shadow-glow:
        0 0 20px var(--vifa-cyan-glow),
        0 0 40px rgba(0, 212, 255, 0.2);

    /* Metallic Effect */
    --metallic-gradient: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(0, 0, 0, 0.05) 51%,
        rgba(0, 0, 0, 0.1) 100%
    );

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 350ms ease;
}

/* =============================================
   2. BASE STYLES
   ============================================= */

/* Import Inter font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Apply neomorphic theme */
body.neo-theme {
    font-family: var(--font-family);
    background: linear-gradient(180deg, var(--vifa-marine-dark) 0%, var(--vifa-marine) 100%);
    color: var(--vifa-cream);
    min-height: 100vh;
}

body.neo-theme::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(0, 212, 255, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(0, 212, 255, 0.02) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
}

/* =============================================
   3. NEOMORPHIC COMPONENTS
   ============================================= */

/* --- Neo Card --- */
.neo-card {
    background: var(--vifa-marine-light);
    background-image: var(--metallic-gradient);
    border-radius: var(--radius-lg);
    box-shadow: var(--neo-shadow-out);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--space-lg);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.neo-card:hover {
    transform: translateY(-2px);
    box-shadow:
        var(--neo-shadow-out),
        0 8px 24px rgba(0, 0, 0, 0.2);
}

.neo-card-compact {
    padding: var(--space-md);
}

.neo-card-flat {
    box-shadow: none;
    background: rgba(42, 58, 77, 0.5);
}

/* --- Neo Button --- */
.neo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 1rem;
    color: var(--vifa-cream);
    background: var(--vifa-marine-light);
    background-image: var(--metallic-gradient);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    box-shadow: var(--neo-shadow-out-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.neo-btn:hover {
    background: var(--vifa-marine-lighter);
    color: var(--vifa-cream);
    transform: translateY(-1px);
}

.neo-btn:active {
    transform: translateY(0);
    box-shadow: var(--neo-shadow-in);
}

/* Primary Action Button (Cyan) */
.neo-btn-primary {
    background: linear-gradient(135deg, var(--vifa-cyan), #0099cc);
    color: var(--vifa-marine-dark);
    border: none;
    box-shadow:
        var(--neo-shadow-out-sm),
        0 0 20px var(--vifa-cyan-glow);
}

.neo-btn-primary:hover {
    background: linear-gradient(135deg, #00e5ff, #00b8d9);
    color: var(--vifa-marine-dark);
    box-shadow:
        var(--neo-shadow-out-sm),
        var(--neo-shadow-glow);
}

/* Big Action Button (Pointage) */
.neo-btn-big {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 700;
    flex-direction: column;
    gap: var(--space-xs);
    background: linear-gradient(145deg, var(--vifa-cyan), #0099cc);
    color: var(--vifa-marine-dark);
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        var(--neo-shadow-out),
        0 0 30px var(--vifa-cyan-glow),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.neo-btn-big::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 60%
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.neo-btn-big:hover {
    transform: scale(1.05);
    box-shadow:
        var(--neo-shadow-out),
        var(--neo-shadow-glow),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.neo-btn-big:active {
    transform: scale(0.98);
}

.neo-btn-big i {
    font-size: 3rem;
}

/* Big Button - Departure State (orange) */
.neo-btn-big.neo-btn-departure {
    background: linear-gradient(145deg, var(--vifa-warning), #cc7a00);
    box-shadow:
        var(--neo-shadow-out),
        0 0 30px rgba(245, 158, 11, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.neo-btn-big.neo-btn-departure:hover {
    box-shadow:
        var(--neo-shadow-out),
        0 0 40px rgba(245, 158, 11, 0.6),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

/* Secondary/Ghost Button */
.neo-btn-ghost {
    background: transparent;
    box-shadow: none;
    border: 2px solid var(--vifa-gray);
    color: var(--vifa-gray);
}

.neo-btn-ghost:hover {
    border-color: var(--vifa-cyan);
    color: var(--vifa-cyan);
    background: var(--vifa-cyan-soft);
}

/* Small Button */
.neo-btn-sm {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.875rem;
}

/* =============================================
   4. STATUS CHIPS
   ============================================= */
.neo-chip {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    background: var(--vifa-marine-lighter);
    color: var(--vifa-cream);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.neo-chip-success {
    background: var(--vifa-success-soft);
    color: var(--vifa-success);
    border-color: var(--vifa-success);
}

.neo-chip-error {
    background: var(--vifa-error-soft);
    color: var(--vifa-error);
    border-color: var(--vifa-error);
}

.neo-chip-warning {
    background: var(--vifa-warning-soft);
    color: var(--vifa-warning);
    border-color: var(--vifa-warning);
}

.neo-chip-info {
    background: var(--vifa-cyan-soft);
    color: var(--vifa-cyan);
    border-color: var(--vifa-cyan);
}

/* Time chip (for pointage history) */
.neo-chip-time {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    padding: 4px 10px;
}

/* =============================================
   5. STAT CARDS
   ============================================= */
.neo-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-md);
    background: var(--vifa-marine-light);
    background-image: var(--metallic-gradient);
    border-radius: var(--radius-md);
    box-shadow: var(--neo-shadow-out-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.neo-stat-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--vifa-cyan-soft);
    color: var(--vifa-cyan);
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
}

.neo-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--vifa-cream);
    line-height: 1.2;
}

.neo-stat-label {
    font-size: 0.75rem;
    color: var(--vifa-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

/* =============================================
   6. NAVIGATION
   ============================================= */

/* Top Navbar */
.neo-navbar {
    background: var(--vifa-marine-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--space-md) var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.neo-navbar-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--vifa-cream);
    text-decoration: none;
}

.neo-navbar-brand img {
    height: 32px;
}

/* Bottom Navigation (Mobile) */
.neo-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: var(--vifa-marine-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-bottom: env(safe-area-inset-bottom);
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.neo-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-md);
    color: var(--vifa-gray);
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 500;
    transition: color var(--transition-fast);
    -webkit-tap-highlight-color: transparent;
}

.neo-nav-item i {
    font-size: 1.5rem;
    margin-bottom: 2px;
}

.neo-nav-item.active {
    color: var(--vifa-cyan);
}

.neo-nav-item.active i {
    filter: drop-shadow(0 0 6px var(--vifa-cyan-glow));
}

.neo-nav-item:hover {
    color: var(--vifa-cyan);
}

/* =============================================
   7. DAY CARD (Planning du jour)
   ============================================= */
.neo-day-card {
    background: var(--vifa-marine-light);
    background-image: var(--metallic-gradient);
    border-radius: var(--radius-md);
    box-shadow: var(--neo-shadow-out-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--space-md);
}

.neo-day-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-sm);
}

.neo-day-card-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--vifa-cyan);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.neo-day-card-site {
    font-size: 1rem;
    font-weight: 600;
    color: var(--vifa-cream);
    margin-bottom: var(--space-xs);
}

.neo-day-card-time {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--vifa-gray);
}

/* =============================================
   8. CONFIRMATION HUD
   ============================================= */
.neo-hud-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 22, 33, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.neo-hud-overlay.active {
    opacity: 1;
    visibility: visible;
}

.neo-hud-content {
    text-align: center;
    transform: scale(0.9);
    transition: transform var(--transition-normal);
}

.neo-hud-overlay.active .neo-hud-content {
    transform: scale(1);
}

.neo-hud-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--vifa-success);
    color: var(--vifa-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto var(--space-lg);
    box-shadow:
        0 0 30px rgba(16, 185, 129, 0.5),
        0 0 60px rgba(16, 185, 129, 0.3);
    animation: pulse-glow 1.5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 30px rgba(16, 185, 129, 0.5), 0 0 60px rgba(16, 185, 129, 0.3); }
    50% { box-shadow: 0 0 40px rgba(16, 185, 129, 0.7), 0 0 80px rgba(16, 185, 129, 0.4); }
}

.neo-hud-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--vifa-cream);
    margin-bottom: var(--space-sm);
}

.neo-hud-subtitle {
    font-size: 1rem;
    color: var(--vifa-gray);
}

.neo-hud-time {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 700;
    color: var(--vifa-cyan);
    margin-top: var(--space-lg);
    text-shadow: 0 0 20px var(--vifa-cyan-glow);
}

/* =============================================
   8b. LOADING SPINNER
   ============================================= */
.neo-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(0, 212, 255, 0.2);
    border-top-color: var(--vifa-cyan);
    border-radius: 50%;
    animation: neo-spin 0.8s linear infinite;
}

.neo-spinner-lg {
    width: 40px;
    height: 40px;
    border-width: 4px;
}

@keyframes neo-spin {
    to { transform: rotate(360deg); }
}

/* Pulse animation for active states */
.neo-pulse {
    animation: neo-pulse-anim 2s ease-in-out infinite;
}

@keyframes neo-pulse-anim {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

/* =============================================
   9. FORMS
   ============================================= */
.neo-input {
    width: 100%;
    padding: var(--space-md);
    font-family: var(--font-family);
    font-size: 1rem;
    color: var(--vifa-cream);
    background: var(--vifa-marine-dark);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    box-shadow: var(--neo-shadow-in);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.neo-input::placeholder {
    color: var(--vifa-gray);
}

.neo-input:focus {
    outline: none;
    border-color: var(--vifa-cyan);
    box-shadow:
        var(--neo-shadow-in),
        0 0 0 3px var(--vifa-cyan-soft);
}

.neo-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--vifa-gray);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* =============================================
   10. LIST ITEMS
   ============================================= */
.neo-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.neo-list-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--vifa-marine-light);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background var(--transition-fast);
}

.neo-list-item:hover {
    background: var(--vifa-marine-lighter);
}

.neo-list-item-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--vifa-marine);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vifa-cyan);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.neo-list-item-content {
    flex: 1;
    min-width: 0;
}

.neo-list-item-title {
    font-weight: 600;
    color: var(--vifa-cream);
    margin-bottom: 2px;
}

.neo-list-item-subtitle {
    font-size: 0.875rem;
    color: var(--vifa-gray);
}

.neo-list-item-action {
    flex-shrink: 0;
}

/* =============================================
   11. UTILITIES
   ============================================= */

/* Text colors */
.text-cyan { color: var(--vifa-cyan) !important; }
.text-cream { color: var(--vifa-cream) !important; }
.text-gray { color: var(--vifa-gray) !important; }
.text-success { color: var(--vifa-success) !important; }
.text-error { color: var(--vifa-error) !important; }
.text-warning { color: var(--vifa-warning) !important; }

/* Background colors */
.bg-marine { background-color: var(--vifa-marine) !important; }
.bg-marine-dark { background-color: var(--vifa-marine-dark) !important; }
.bg-marine-light { background-color: var(--vifa-marine-light) !important; }

/* Glow effects */
.glow-cyan {
    box-shadow: 0 0 20px var(--vifa-cyan-glow);
}

.text-glow-cyan {
    text-shadow: 0 0 10px var(--vifa-cyan-glow);
}

/* Spacing */
.neo-mt-sm { margin-top: var(--space-sm); }
.neo-mt-md { margin-top: var(--space-md); }
.neo-mt-lg { margin-top: var(--space-lg); }
.neo-mb-sm { margin-bottom: var(--space-sm); }
.neo-mb-md { margin-bottom: var(--space-md); }
.neo-mb-lg { margin-bottom: var(--space-lg); }
.neo-p-md { padding: var(--space-md); }
.neo-p-lg { padding: var(--space-lg); }

/* Flex utilities */
.neo-flex { display: flex; }
.neo-flex-col { flex-direction: column; }
.neo-items-center { align-items: center; }
.neo-justify-center { justify-content: center; }
.neo-justify-between { justify-content: space-between; }
.neo-gap-sm { gap: var(--space-sm); }
.neo-gap-md { gap: var(--space-md); }
.neo-gap-lg { gap: var(--space-lg); }

/* Grid */
.neo-grid {
    display: grid;
    gap: var(--space-md);
}

.neo-grid-2 { grid-template-columns: repeat(2, 1fr); }
.neo-grid-3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 640px) {
    .neo-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   12. PAGE LAYOUTS
   ============================================= */

/* Main container for neo theme */
body.neo-theme main.container {
    background: transparent;
    padding-top: var(--space-lg);
    padding-bottom: calc(70px + var(--space-xl));
}

/* Page header */
.neo-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
}

.neo-page-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--vifa-cream);
}

/* Section titles */
.neo-section-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--vifa-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

/* =============================================
   13. ANIMATIONS
   ============================================= */

/* Fade in */
@keyframes neo-fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.neo-animate-in {
    animation: neo-fade-in 0.3s ease-out forwards;
}

/* Pulse for active states */
@keyframes neo-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.neo-pulse {
    animation: neo-pulse 2s ease-in-out infinite;
}

/* Success checkmark animation */
@keyframes neo-checkmark {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

.neo-checkmark-animate {
    animation: neo-checkmark 0.4s ease-out forwards;
}

/* =============================================
   14. RESPONSIVE OVERRIDES
   ============================================= */
@media (max-width: 640px) {
    :root {
        --space-lg: 20px;
        --space-xl: 28px;
    }

    .neo-btn-big {
        width: 190px;
        height: 190px;
        font-size: 1.3rem;
    }

    .neo-btn-big i {
        font-size: 3rem;
    }

    .neo-page-title {
        font-size: 1.25rem;
    }

    .neo-stat-value {
        font-size: 1.25rem;
    }
}

/* =============================================
   15. BOOTSTRAP OVERRIDES (Integration)
   ============================================= */
body.neo-theme .navbar {
    background: var(--vifa-marine-dark) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

body.neo-theme .navbar-brand {
    color: var(--vifa-cream) !important;
}

body.neo-theme .nav-link {
    color: var(--vifa-gray) !important;
}

body.neo-theme .nav-link:hover,
body.neo-theme .nav-link.active {
    color: var(--vifa-cyan) !important;
}

body.neo-theme .dropdown-menu {
    background: var(--vifa-marine-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--neo-shadow-out);
}

body.neo-theme .dropdown-item {
    color: var(--vifa-cream);
}

body.neo-theme .dropdown-item:hover {
    background: var(--vifa-marine-lighter);
    color: var(--vifa-cyan);
}

body.neo-theme .alert {
    background: var(--vifa-marine-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--vifa-cream);
}

body.neo-theme .alert-success {
    background: var(--vifa-success-soft);
    border-color: var(--vifa-success);
    color: var(--vifa-success);
}

body.neo-theme .alert-danger {
    background: var(--vifa-error-soft);
    border-color: var(--vifa-error);
    color: var(--vifa-error);
}

body.neo-theme .alert-warning {
    background: var(--vifa-warning-soft);
    border-color: var(--vifa-warning);
    color: var(--vifa-warning);
}

body.neo-theme .mobile-bottom-nav {
    display: none !important;
}

body.neo-theme .footer {
    background: var(--vifa-marine-dark) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--vifa-gray);
}
