/* ========================================
   HushBox - Estilos Enterprise v5.1
   TEMA OSCURO OPTIMIZADO (SIN GPS/COCO)
   ======================================== */

/* Reset y variables globales - TEMA OSCURO */
:root {
    --primary: #00ffc3;
    --primary-dark: #00cc99;
    --primary-glow: rgba(0, 255, 195, 0.3);
    --bg-dark: #0a0a0a;
    --bg-card: #111111;
    --bg-card-hover: #1a1a1a;
    --bg-elevated: #1e1e1e;
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --border-color: rgba(255, 255, 255, 0.1);
    --border-color-light: rgba(255, 255, 255, 0.05);
    --error: #ff5555;
    --warning: #ffaa00;
    --success: #00ffc3;
    --info: #3b82f6;
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 28px;
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(0, 255, 195, 0.2);
}

/* Reset completo con fondo oscuro */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    background-color: #0a0a0a;
    background: #0a0a0a;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0a !important;
    background-color: #0a0a0a !important;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    touch-action: pan-y pinch-zoom;
    position: fixed;
    width: 100%;
    height: 100%;
    color: var(--text-primary);
}

/* Skip link para accesibilidad */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: #000;
    padding: 8px 16px;
    z-index: 100;
    text-decoration: none;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 10px;
}

/* Contenedor principal */
.container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 100vh;
    max-height: 900px;
    background: #0a0a0a !important;
    background-color: #0a0a0a !important;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
}

/* ========== VISTA DE CÁMARA ========== */
.camera-view {
    position: relative;
    flex: 1 1 0;
    background: #000000;
    overflow: hidden;
    min-height: 0;
    border-radius: 0;
}

video, #overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#overlay {
    pointer-events: none;
    z-index: 5;
}

/* Overlay de cámara apagada */
.camera-off-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 25;
    cursor: pointer;
    animation: fadeIn 0.3s ease;
}

.camera-off-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: logoPulse 2s ease-in-out infinite;
}

.camera-off-content img {
    width: 100px;
    height: auto;
    filter: drop-shadow(0 0 20px var(--primary-glow));
    transition: all 0.3s ease;
    border-radius: 20px;
}

.camera-off-content:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px var(--primary-glow));
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.05); opacity: 1; }
}

/* ========== PANEL DE RESULTADOS ========== */
.result-panel {
    flex-shrink: 0;
    background: #111111 !important;
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem 1.5rem 0 0;
    padding: 0 0.75rem 0.5rem;
    color: var(--text-primary);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    transition: height var(--transition-normal);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 45vh;
    min-height: 70px;
    max-height: 75vh;
}

.result-panel.expanded { height: 75vh; }
.result-panel.collapsed { height: 115px; }

/* Handle del panel */
.panel-handle {
    width: 48px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.5rem auto;
    cursor: pointer;
    border-radius: 40px;
    transition: all var(--transition-fast);
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-handle:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: scale(1.02);
    border-color: var(--primary-glow);
}

.panel-handle .material-icons {
    font-size: 1.6rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Toolbar */
.toolbar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 0.25rem 0;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.tool-group {
    display: flex;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.25rem;
    border-radius: 40px;
}

.tool-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.tool-btn .material-icons { font-size: 1.4rem; }

.tool-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.tool-btn.active {
    background: var(--primary);
    color: #000;
}

/* Tab Content */
.tab-content {
    flex: 1 1 auto;
    overflow-y: auto;
    margin-bottom: 0.25rem;
    border-radius: var(--border-radius-md);
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem;
    transition: opacity var(--transition-fast);
}

.collapsed .tab-content {
    opacity: 0;
    pointer-events: none;
}

/* Scrollbar personalizada oscura */
.tab-content::-webkit-scrollbar { width: 4px; }
.tab-content::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.05); border-radius: 4px; }
.tab-content::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

/* ========== DASHBOARD ========== */
.encrypt-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0.5rem;
}

.file-drop-zone {
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem 1rem;
    text-align: center;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    cursor: pointer;
    background: rgba(0, 0, 0, 0.3);
}

.file-drop-zone:hover,
.file-drop-zone.dragover {
    border-color: var(--primary);
    background: rgba(0, 255, 195, 0.1);
    color: white;
}

.file-drop-zone .material-icons {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: block;
}

.file-drop-zone p { font-size: 0.9rem; margin: 0; }

.password-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    padding: 0.25rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.password-box .password-input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    outline: none;
}

.password-box .password-input::placeholder { color: #6b7280; }
.password-box .material-icons { color: var(--primary); font-size: 1.3rem; }

.action-buttons {
    display: flex;
    gap: 0.75rem;
}

.encrypt-btn,
.decrypt-btn {
    flex: 1;
    background: var(--primary);
    border: none;
    color: #000;
    padding: 0.75rem 0;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.encrypt-btn:hover,
.decrypt-btn:hover {
    background: var(--primary-dark);
    transform: scale(0.98);
}

.decrypt-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.decrypt-btn:hover {
    background: rgba(0, 255, 195, 0.2);
    color: white;
}

/* Progreso */
#progressArea {
    background: rgba(0, 0, 0, 0.5);
    border-radius: var(--border-radius-xl);
    padding: 1rem;
    text-align: center;
}

#progressBar {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #333;
    accent-color: var(--primary);
}

#progressText {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

#resultArea {
    min-height: 80px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius-md);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.download-link {
    display: inline-block;
    background: var(--primary);
    color: #000;
    padding: 0.6rem 1.2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    border: none;
    cursor: pointer;
    text-align: center;
    animation: pulseGreen 2s infinite;
}

.download-link:hover {
    background: var(--primary-dark);
    transform: scale(0.98);
}

@keyframes pulseGreen {
    0% { box-shadow: 0 0 0 0 var(--primary-glow); }
    70% { box-shadow: 0 0 0 10px rgba(0, 255, 195, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 195, 0); }
}

/* Log panel - oscuro */
.log-panel {
    background: rgba(0, 0, 0, 0.4);
    border-radius: var(--border-radius-sm);
    padding: 0.5rem;
    font-size: 0.75rem;
    font-family: 'SF Mono', 'Monaco', 'Cascadia Code', monospace;
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-height: 150px;
    overflow-y: auto;
    color: #d1d5db;
}

.log-entry {
    margin-bottom: 0.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-bottom: 0.25rem;
    word-break: break-word;
}

.log-time { color: #6b7280; margin-right: 0.5rem; font-size: 0.7rem; }
.log-info { color: #9ca3af; }
.log-success { color: var(--success); }
.log-error { color: var(--error); }
.log-warn { color: var(--warning); }

/* ========== LISTA DE QR ========== */
.qr-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.qr-item {
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius-md);
    padding: 0.625rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-fast);
    animation: qrAppear 0.2s ease;
}

.qr-item:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateX(2px);
    border-color: rgba(255, 255, 255, 0.1);
}

.qr-item-header {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin-bottom: 0.375rem;
    font-size: 0.7rem;
    flex-wrap: wrap;
}

.qr-context-tag {
    background: rgba(0, 255, 195, 0.15);
    color: var(--primary);
    padding: 0.125rem 0.375rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.65rem;
}

.qr-time {
    color: var(--text-muted);
    margin-left: auto;
    font-size: 0.6rem;
}

.qr-content-preview {
    font-family: monospace;
    font-size: 0.75rem;
    word-break: break-all;
    margin-bottom: 0.5rem;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.375rem;
    border-radius: var(--border-radius-sm);
    border-left: 2px solid var(--primary);
    color: #e5e7eb;
}

.qr-actions {
    display: flex;
    gap: 0.375rem;
    flex-wrap: wrap;
}

.qr-action-btn {
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #e5e7eb;
    padding: 0.375rem 0.5rem;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.qr-action-btn .material-icons { font-size: 0.9rem; }

.qr-action-btn:hover {
    background: rgba(0, 255, 195, 0.2);
    color: var(--primary);
    transform: scale(0.96);
}

.qr-action-btn.delete:hover { background: rgba(255, 85, 85, 0.2); color: var(--error); }
.qr-action-btn.block:hover { background: rgba(255, 170, 0, 0.2); color: var(--warning); }
.qr-action-btn.save:hover { background: rgba(0, 255, 195, 0.2); color: var(--primary); }

.placeholder-text {
    color: #6b7280;
    font-style: italic;
    text-align: center;
    padding: 1.5rem;
    font-size: 0.85rem;
}

.load-more {
    text-align: center;
    padding: 0.625rem;
    color: var(--primary);
    cursor: pointer;
    background: rgba(0, 255, 195, 0.1);
    border-radius: 40px;
    margin: 0.5rem 0;
    font-size: 0.8rem;
    transition: all var(--transition-fast);
}

.load-more:hover {
    background: rgba(0, 255, 195, 0.2);
    transform: scale(0.98);
}

.search-box {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 0.375rem 0.75rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    gap: 0.25rem;
}

.search-box input {
    background: transparent;
    border: none;
    color: white;
    width: 100%;
    outline: none;
    font-size: 0.85rem;
    padding: 0.25rem 0;
}

.search-box input::placeholder { color: #6b7280; }

/* ========== ESTADÍSTICAS ========== */
.dashboard-stats {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: 0.5rem 0.75rem;
    text-align: center;
    flex: 1;
    min-width: 70px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-value {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary);
}

.stat-label {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.recent-list {
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius-md);
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.recent-title {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.recent-item {
    font-size: 0.7rem;
    padding: 0.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-family: monospace;
    word-break: break-all;
}

/* ========== GRUPOS DE ARCHIVOS ========== */
.file-group {
    background: rgba(0, 255, 200, 0.05);
    border-radius: var(--border-radius-md);
    padding: 0.875rem;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(0, 255, 200, 0.15);
    transition: all var(--transition-normal);
    animation: slideIn 0.2s ease;
}

.file-group.complete {
    background: rgba(0, 255, 200, 0.08);
    border-color: var(--primary);
}

.file-group:hover {
    transform: translateX(2px);
    border-color: var(--primary-glow);
    background: rgba(0, 255, 200, 0.08);
}

.file-group-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.file-group-header .material-icons { font-size: 1.8rem; color: var(--primary); }

.file-name {
    font-weight: 600;
    font-size: 0.9rem;
    word-break: break-word;
    flex: 1;
    color: white;
}

.file-hash {
    font-size: 0.65rem;
    font-family: monospace;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.125rem 0.375rem;
    border-radius: 100px;
}

.file-progress {
    font-size: 0.7rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.125rem 0.375rem;
    border-radius: 100px;
}

.block-badge {
    background: rgba(0, 255, 200, 0.12);
    padding: 0.15rem 0.35rem;
    border-radius: 4px;
    font-size: 0.6rem;
    font-family: monospace;
    color: var(--primary);
    transition: all var(--transition-fast);
    display: inline-block;
    margin: 0.125rem;
}

.block-badge:hover {
    background: rgba(0, 255, 200, 0.25);
    transform: scale(1.05);
}

/* Controles */
.controls {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 30;
    display: flex;
    gap: 0.5rem;
}

.control-btn {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn .material-icons { font-size: 1.4rem; }

.control-btn:hover {
    background: var(--primary-glow);
    border-color: var(--primary);
    transform: scale(0.95);
}

/* Indicador de estado */
.status-indicator {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 30;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    padding: 0.375rem 0.75rem;
    border-radius: 40px;
    color: var(--primary);
    font-size: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.status-indicator .dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

/* Toast */
.toast {
    position: absolute;
    top: 4rem;
    left: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 40px;
    text-align: center;
    font-weight: 500;
    z-index: 50;
    border: 1px solid var(--primary);
    transform: translateY(-20px);
    opacity: 0;
    transition: all var(--transition-normal);
    pointer-events: none;
    font-size: 0.85rem;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* Modal de confirmación */
.confirm-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 200;
}

.confirm-modal.show { display: flex; }

.confirm-content {
    background: #1a1a1a;
    border-radius: 28px;
    padding: 1.5rem;
    max-width: 300px;
    width: 85%;
    text-align: center;
    border: 1px solid var(--primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.2s ease;
}

.confirm-icon .material-icons {
    font-size: 2.5rem;
    color: var(--warning);
    margin-bottom: 0.5rem;
}

.confirm-message {
    color: white;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.confirm-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.confirm-btn {
    flex: 1;
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.confirm-btn.cancel {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.confirm-btn.cancel:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(0.96);
}

.confirm-btn.ok {
    background: var(--primary);
    color: #000;
}

.confirm-btn.ok:hover {
    background: var(--primary-dark);
    transform: scale(0.96);
}

/* Animaciones */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes qrAppear {
    from { opacity: 0; transform: translateX(-8px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Soporte para reducción de movimiento */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Clase para lectores de pantalla */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Responsive */
@media (max-width: 480px) {
    .container {
        border-radius: 0;
        max-height: 100vh;
    }
    
    .result-panel { border-radius: 1.25rem 1.25rem 0 0; }
    .tool-btn { width: 2.2rem; height: 2.2rem; }
    .tool-btn .material-icons { font-size: 1.2rem; }
    .control-btn { width: 40px; height: 40px; }
    .control-btn .material-icons { font-size: 1.2rem; }
    
    .stat-card {
        min-width: 55px;
        padding: 0.375rem 0.5rem;
    }
    
    .stat-value {
        font-size: 1rem;
    }
    
    .camera-off-content img {
        width: 80px;
    }
}

/* ========== NUEVO: ESTILOS PARA ALMACENAMIENTO ========== */
.storage-panel {
    padding: 0.5rem;
    text-align: center;
}

.storage-panel .stat-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: 0.75rem;
    text-align: center;
    margin-bottom: 1rem;
    display: block;
    width: auto;
}

.storage-panel .stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
}

.storage-panel .stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}
