/** * JUEBLO - HEADER v44.0 (Wallet FX Added) */

.navbar { 
    background: var(--white); 
    padding: 0 1.2rem; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    height: 75px; 
    display: flex; 
    align-items: center; 
}

.nav-content { 
    max-width: 1100px; 
    margin: 0 auto; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    width: 100%; 
}

.logo-text { 
    font-family: 'Crimson Pro', serif; 
    font-weight: 900; 
    font-size: 1.7rem; 
    color: var(--primary); 
    letter-spacing: -0.5px; 
}

/* BOTONES GLOBALES */
.nav-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    border-radius: 50px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.1s;
    user-select: none;
    position: relative; /* Necesario para efectos */
}
.nav-pill:active { transform: translateY(2px); box-shadow: none !important; }

/* --- COLORES SEMÁNTICOS --- */

/* 1. ECONOMÍA (Estadísticas) - Dorado Trigo */
.pill-gold { 
    background: var(--gold); 
    color: #333; 
    box-shadow: 0 4px 0 var(--gold-dark); 
    min-width: 70px; 
}

/* 2. COMPETENCIA (Ranking) - Naranja Teja / Ladrillo */
.pill-ranking { 
    background: #e67e22; 
    color: #fff; 
    box-shadow: 0 4px 0 #d35400; 
}

/* 3. ADMIN (Herramientas) - Rojo Alerta */
.pill-admin { 
    background: var(--accent); 
    color: #fff; 
    box-shadow: 0 4px 0 var(--accent-dark); 
}

/* 4. IDENTIDAD (Perfil) - Verde Monte */
.header-user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--primary); 
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 800;
    border: 2px solid #ffffff; 
    box-shadow: 0 4px 10px rgba(45, 90, 39, 0.25);
    transition: transform 0.2s ease;
    overflow: hidden;
}

.header-user-avatar:hover { transform: scale(1.1); background-color: #1e3d1a; }
.header-user-avatar:active { transform: scale(0.95); }
.header-user-avatar img { width: 100%; height: 100%; object-fit: cover; }

/* --- ANIMACIONES DE MONEDERO (NUEVO) --- */

/* Latido Verde (Ganancia) */
@keyframes walletPulseGreen {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); }
    50% { transform: scale(1.15); box-shadow: 0 0 0 10px rgba(46, 204, 113, 0); background-color: #d4edda; }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}
.wallet-anim-win { animation: walletPulseGreen 0.6s ease-out; }

/* Latido Rojo (Pérdida) */
@keyframes walletPulseRed {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7); }
    50% { transform: scale(1.15); box-shadow: 0 0 0 10px rgba(231, 76, 60, 0); background-color: #fadbd8; }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(231, 76, 60, 0); }
}
.wallet-anim-lose { animation: walletPulseRed 0.6s ease-out; }

/* Partícula Flotante */
.wallet-float-particle {
    position: fixed;
    font-weight: 900;
    font-size: 1.2rem;
    z-index: 9999;
    pointer-events: none;
    text-shadow: 0 2px 0 rgba(255,255,255,0.8);
    animation: floatUpFade 1.5s ease-out forwards;
}

@keyframes floatUpFade {
    0% { opacity: 0; transform: translateY(10px) scale(0.5); }
    20% { opacity: 1; transform: translateY(0) scale(1.2); }
    100% { opacity: 0; transform: translateY(-60px) scale(1); }
}