/* ============================================================
   ODDS&STATS — Hoja de Estilos Global
   Colores base:
     Crema:      #f5f1e8
     Azul oscuro: #1a3a52
     Verde oscuro: #2d5f4f
     Naranja:    #d97834
     Borde claro: #e8e4db
   ============================================================ */

/* ── RESET Y BASE ─────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f1e8;
    color: #1a3a52;
    min-height: 100vh;
}

a { color: #d97834; text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; }

/* ── SCROLLBAR ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f5f1e8; }
::-webkit-scrollbar-thumb { background: #d97834; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #c06828; }

/* ── ANIMACIONES ─────────────────────────────────────────── */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.5; }
}

.fade-in { animation: fadeIn 0.5s ease-out; }

/* ── SPINNER ─────────────────────────────────────────────── */
.spinner {
    width: 40px; height: 40px;
    border: 4px solid #e8e4db;
    border-top-color: #d97834;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 1rem auto;
}

/* ── NAVBAR ──────────────────────────────────────────────── */
.navbar {
    background: linear-gradient(135deg, #1a3a52 0%, #2d5f4f 100%);
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.navbar-marca {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: white;
}

.navbar-marca span { color: #d97834; }

.navbar-acciones { display: flex; gap: 1rem; align-items: center; }

.navbar-usuario { font-size: 0.95rem; opacity: 0.9; }

/* ── BOTONES ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.1s;
    text-decoration: none;
    white-space: nowrap;
}

.btn:hover  { opacity: 0.9; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.btn-primario  { background: #d97834; color: white; }
.btn-secundario { background: #2d5f4f; color: white; }
.btn-azul      { background: #1a3a52; color: white; }
.btn-rojo      { background: #dc2626; color: white; }
.btn-verde     { background: #10b981; color: white; }
.btn-gris      { background: #f3f4f6; color: #374151; }
.btn-outline   { background: transparent; border: 2px solid #d97834; color: #d97834; }
.btn-sm        { padding: 0.4rem 0.8rem; font-size: 0.85rem; border-radius: 6px; }
.btn-lg        { padding: 1rem 2rem; font-size: 1.1rem; border-radius: 12px; }
.btn-full      { width: 100%; }

/* ── INPUTS ──────────────────────────────────────────────── */
.form-grupo { margin-bottom: 1.25rem; }

.form-label {
    display: block;
    color: #1a3a52;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid #e8e4db;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    color: #1a3a52;
    transition: border-color 0.2s;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: #d97834;
}

.form-input::placeholder { color: #9ca3af; }

.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-error {
    color: #dc2626;
    font-size: 0.85rem;
    margin-top: 0.4rem;
}

/* ── CARDS ───────────────────────────────────────────────── */
.card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 2px solid #e8e4db;
}

.card-azul { border-color: #bfdbfe; background: #eff6ff; }
.card-verde { border-color: #6ee7b7; background: #f0fdf4; }
.card-naranja { border-color: #fed7aa; background: #fff7ed; }
.card-rojo { border-color: #fca5a5; background: #fef2f2; }

/* ── BADGES / ETIQUETAS ──────────────────────────────────── */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-verde  { background: #d1fae5; color: #065f46; }
.badge-rojo   { background: #fee2e2; color: #991b1b; }
.badge-naranja { background: #ffedd5; color: #c2410c; }
.badge-azul   { background: #dbeafe; color: #1e40af; }
.badge-morado { background: #ede9fe; color: #6b21a8; }
.badge-gris   { background: #f3f4f6; color: #374151; }
.badge-amarillo { background: #fef3c7; color: #92400e; }

/* ── TABLAS ADMIN ────────────────────────────────────────── */
.tabla-contenedor { overflow-x: auto; }

.tabla {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.tabla thead tr {
    background: #f9fafb;
    border-bottom: 2px solid #e5e7eb;
}

.tabla th {
    padding: 0.85rem 1rem;
    text-align: left;
    font-size: 0.8rem;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.tabla th.center, .tabla td.center { text-align: center; }
.tabla th.right,  .tabla td.right  { text-align: right; }

.tabla tbody tr {
    border-bottom: 1px solid #e5e7eb;
    transition: background 0.1s;
}

.tabla tbody tr:hover { background: #f9fafb; }

.tabla td {
    padding: 0.75rem 1rem;
    color: #374151;
    vertical-align: middle;
}

.tabla code {
    background: #f3f4f6;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    font-size: 0.85rem;
    color: #6366f1;
}

/* ── MODALES ─────────────────────────────────────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
    animation: fadeIn 0.2s ease-out;
}

.modal-box {
    background: white;
    border-radius: 14px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 550px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-sm { max-width: 420px; }
.modal-lg { max-width: 750px; }
.modal-xl { max-width: 1000px; }

.modal-titulo {
    font-size: 1.6rem;
    color: #1a3a52;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.modal-cerrar {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── FLASH MESSAGES ──────────────────────────────────────── */
.flash-msg {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* ── TOKEN BOX ───────────────────────────────────────────── */
.token-box {
    background: #e8f4fd;
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.token-label {
    color: #1a3a52;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    text-align: center;
}

.token-codigo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    border: 1px solid #bfdbfe;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.token-codigo code {
    font-size: 1.15rem;
    font-weight: 800;
    color: #d97834;
    letter-spacing: 1px;
    word-break: break-all;
}

.btn-copiar {
    background: #1a3a52;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 0.8rem;
    cursor: pointer;
    font-size: 1rem;
    flex-shrink: 0;
    transition: background 0.2s;
}

.btn-copiar:hover { background: #2d5f4f; }
.btn-copiar.copiado { background: #10b981; }

/* ── LANDING: HERO ───────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, #1a3a52 0%, #2d5f4f 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.hero h1 { font-size: 3rem; font-weight: 900; margin-bottom: 1rem; line-height: 1.2; }
.hero p  { font-size: 1.3rem; opacity: 0.9; margin-bottom: 2rem; }

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero-stat-num { font-size: 2.5rem; font-weight: 900; color: #d97834; }
.hero-stat-lbl { font-size: 0.9rem; opacity: 0.8; }

/* ── LANDING: SECCIONES ──────────────────────────────────── */
.seccion { padding: 4rem 2rem; }
.seccion-titulo {
    text-align: center;
    font-size: 2.5rem;
    color: #1a3a52;
    margin-bottom: 3rem;
    font-weight: 800;
}

.seccion-oscura {
    background: linear-gradient(135deg, #1a3a52 0%, #0f2235 100%);
    color: white;
}

.seccion-oscura .seccion-titulo { color: white; }

.grid-planes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-eventos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* ── PLAN CARD (Landing y Dashboard) ─────────────────────── */
.plan-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 2px solid #e8e4db;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.plan-card:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0,0,0,0.12); }
.plan-card.anual { border-color: #d97834; border-width: 3px; }
.plan-card.activo { border-color: #2d5f4f; border-width: 3px; }
.plan-card.expirado { border-color: #dc2626; border-width: 3px; }

.plan-badge-anual {
    background: linear-gradient(135deg, #d97834, #c2410c);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.75rem;
}

.plan-descuento {
    background: #d97834;
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.plan-nombre { font-size: 1.4rem; color: #1a3a52; font-weight: 700; margin-bottom: 0.4rem; }
.plan-desc   { color: #5a7a92; font-size: 0.9rem; margin-bottom: 1rem; }
.plan-precio { font-size: 2.2rem; font-weight: 900; color: #2d5f4f; }
.plan-precio-tachado { text-decoration: line-through; color: #9ca3af; font-size: 1rem; }
.plan-duracion { color: #1a3a52; font-size: 0.9rem; margin-top: 0.3rem; }

.plan-features { border-top: 2px solid #e8e4db; padding-top: 1rem; margin: 1rem 0; }
.plan-feature  { display: flex; gap: 0.5rem; margin-bottom: 0.5rem; align-items: flex-start; }
.plan-feature-check { color: #2d5f4f; font-size: 1rem; flex-shrink: 0; }
.plan-feature-texto { color: #5a7a92; font-size: 0.88rem; }

/* ── EVENTO CARD ─────────────────────────────────────────── */
.evento-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 2px solid #e8e4db;
}

.evento-precio { font-size: 2rem; font-weight: 900; color: #2d5f4f; }
.evento-precio-tachado { text-decoration: line-through; color: #9ca3af; }

.evento-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.evento-tag-liga { background: #2d5f4f; color: white; padding: 0.3rem 0.8rem; border-radius: 5px; font-size: 0.85rem; }
.evento-tag-conf { background: #1a3a52; color: white; padding: 0.3rem 0.8rem; border-radius: 5px; font-size: 0.85rem; }

/* ── STAKE 10 CARD ───────────────────────────────────────── */
.s10-card {
    background: white;
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(220,38,38,0.12);
    border: 2px solid #fecaca;
}

.s10-precio { font-size: 1.8rem; font-weight: 900; color: #dc2626; }

/* ── DASHBOARD ───────────────────────────────────────────── */
.dash-wrapper { min-height: 100vh; }

.dash-contenido { padding: 2.5rem 2rem; max-width: 1200px; margin: 0 auto; }

/* Estado nuevo (sin plan) */
.dash-nuevo .navbar { background: linear-gradient(135deg, #1a3a52, #2d5f4f); }

/* Estado activo */
.dash-activo .dash-header-banner {
    background: linear-gradient(135deg, #2d5f4f, #1a5e3a);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Estado expirado */
.dash-expirado .aviso-expirado {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    text-align: center;
}

/* ── ADMIN PANEL ─────────────────────────────────────────── */
.admin-wrapper { min-height: 100vh; background: #f8f9fa; display: flex; }

.admin-sidebar {
    width: 255px;
    background: #1a3a52;
    color: white;
    min-height: 100vh;
    padding: 0;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.admin-sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 1rem;
}

.admin-sidebar-titulo { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.25rem; }
.admin-sidebar-sub    { font-size: 0.8rem; opacity: 0.7; }

.admin-menu { padding: 0 0.75rem; display: flex; flex-direction: column; gap: 0.25rem; }

.admin-menu-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    cursor: pointer;
    border: 2px solid transparent;
    background: transparent;
    width: 100%;
    text-align: left;
    transition: all 0.15s;
}

.admin-menu-item:hover { background: rgba(255,255,255,0.08); text-decoration: none; }
.admin-menu-item.activo {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.2);
    font-weight: 600;
}

.admin-menu-icono { font-size: 1.1rem; flex-shrink: 0; }

.admin-main { flex: 1; padding: 1.5rem; overflow-x: hidden; }

.admin-topbar {
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.admin-topbar-titulo { font-size: 1.6rem; font-weight: 700; color: #1a3a52; margin: 0; }
.admin-topbar-sub    { font-size: 0.85rem; color: #6b7280; margin-bottom: 0.25rem; }

.admin-panel { background: white; border-radius: 10px; padding: 2rem; box-shadow: 0 2px 4px rgba(0,0,0,0.05); }

/* ── FILTROS ADMIN ───────────────────────────────────────── */
.filtros-barra {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    align-items: flex-end;
}

.filtro-grupo { display: flex; flex-direction: column; gap: 0.3rem; }
.filtro-label { font-size: 0.75rem; font-weight: 700; color: #64748b; text-transform: uppercase; }
.filtro-select, .filtro-input {
    padding: 0.55rem 0.85rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 7px;
    font-size: 0.9rem;
    background: white;
    color: #374151;
}

/* ── PAGINACIÓN ──────────────────────────────────────────── */
.paginacion {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.pag-btn {
    padding: 0.4rem 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: white;
    color: #374151;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.1s;
}

.pag-btn:hover:not(:disabled) { background: #f3f4f6; }
.pag-btn:disabled { opacity: 0.4; cursor: default; }
.pag-btn.activo { background: #2563eb; border-color: #2563eb; color: white; font-weight: 700; }

/* ── DETALLE CLIENTE MODAL ───────────────────────────────── */
.detalle-seccion { margin-bottom: 1.5rem; }
.detalle-seccion h4 { color: #1a3a52; font-weight: 700; margin-bottom: 0.75rem; padding-bottom: 0.5rem; border-bottom: 2px solid #e8e4db; }

.detalle-fila { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid #f3f4f6; }
.detalle-key   { color: #6b7280; font-size: 0.9rem; }
.detalle-val   { color: #111827; font-weight: 600; font-size: 0.9rem; }

/* ── AUTH PAGES ──────────────────────────────────────────── */
.auth-wrapper {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a3a52 0%, #2d5f4f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.auth-box {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.auth-titulo { font-size: 2.2rem; color: #1a3a52; margin-bottom: 0.4rem; text-align: center; font-weight: 800; }
.auth-sub    { text-align: center; color: #5a7a92; margin-bottom: 2rem; }

.auth-link { color: #d97834; cursor: pointer; text-decoration: underline; font-size: 0.95rem; }

/* ── VERIFICACIÓN EMAIL ──────────────────────────────────── */
.codigo-input {
    font-size: 2rem;
    text-align: center;
    letter-spacing: 0.5rem;
    font-weight: 700;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
    background: #1a3a52;
    color: rgba(255,255,255,0.7);
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.footer-titulo { color: white; font-weight: 700; margin-bottom: 1rem; }
.footer-link   { display: block; color: rgba(255,255,255,0.6); padding: 0.2rem 0; font-size: 0.9rem; cursor: pointer; }
.footer-link:hover { color: #d97834; text-decoration: none; }
.footer-copy { text-align: center; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.85rem; }

/* ── UTILITY ─────────────────────────────────────────────── */
.mt-1 { margin-top: 0.5rem; }  .mt-2 { margin-top: 1rem; }   .mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }.mb-2 { margin-bottom: 1rem; }.mb-3 { margin-bottom: 1.5rem; }
.text-center { text-align: center; }
.text-muted  { color: #6b7280; }
.text-small  { font-size: 0.85rem; }
.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1       { gap: 0.5rem; } .gap-2 { gap: 1rem; }
.w-full      { width: 100%; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 768px) {
    .hero h1    { font-size: 2rem; }
    .hero-stats { gap: 1.5rem; }
    .auth-box   { padding: 2rem; }
    .form-grid-2 { grid-template-columns: 1fr; }
    .admin-sidebar { width: 100%; position: relative; height: auto; }
    .admin-wrapper { flex-direction: column; }
    .admin-topbar { flex-direction: column; align-items: flex-start; }
    .filtros-barra { flex-direction: column; }
    .tabla th, .tabla td { padding: 0.5rem; font-size: 0.8rem; }
}
/* ── iconos redes sociales ──────────────────────────────────────────── */
.red-social {
    transition: transform .2s ease, opacity .2s ease;
}
.red-social:hover {
    transform: scale(1.15);
    opacity: .85;
}

/* ── nav telefono ──────────────────────────────────────────── */
.hamburguesa{display:none;background:none;border:none;cursor:pointer;padding:.5rem;line-height:0;}
.hamburguesa span{display:block;width:25px;height:3px;background:white;margin:5px 0;border-radius:3px;}
.nav-links{display:flex;gap:1.5rem;align-items:center;flex-wrap:nowrap;}

@media(min-width:769px){
    .hamburguesa{display:none !important;}
    .nav-links{display:flex !important;}
}

@media(max-width:768px){
    .navbar{position:relative !important;flex-wrap:wrap !important;}
    .hamburguesa{display:block !important;}
    .nav-links{display:none !important;position:absolute;top:65px;left:0;width:100%;background:#1a3a52;flex-direction:column !important;padding:1rem;z-index:9999;gap:0 !important;}
    .nav-links.abierto{display:flex !important;}
    .nav-links a{padding:.75rem 1rem;width:100%;border-bottom:1px solid rgba(255,255,255,.1);box-sizing:border-box;}
    .navbar-acciones{display:none !important;}
}

.nav-links a{
    font-size:1rem !important;
    font-weight:600 !important;
    padding:.4rem .6rem !important;
    border-radius:6px !important;
    transition:background .2s !important;
}
.nav-links a:hover{
    background:rgba(255,255,255,.15) !important;
    text-decoration:none !important;
}