/* --- ESTILOS EXCLUSIVOS PARA MÓVIL (YouAnime Mobile) --- */

body {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch; /* Suaviza el scroll en iPhones */
}
/* Desactivar visualmente cualquier residuo de partículas en móvil */
#particles-container {
    pointer-events: none;
}

/* Ocultar elementos de escritorio */
.search-wrapper, 
.circle-btn {
    display: none !important; 
}

.header-container {
    padding: 0 15px;
    display: flex;
    justify-content: flex-end; /* Empuja el botón a la derecha */
    align-items: center;
    height: 60px;
}

/* 3. El Botón arriba a la derecha */
.mobile-menu-trigger {
    display: flex !important;
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, #ff007f, #6200ea);
    border-radius: 12px;
    z-index: 10000;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: 0.3s;
}

/* 4. El Panel Desplegable (Cae desde arriba) */
.mobile-nav-panel {
    position: fixed;
    top: 70px; /* Justo debajo del header */
    right: 15px;
    display: none;
    flex-direction: column;
    gap: 8px;
    z-index: 9999;
    background: rgba(15, 15, 20, 0.98);
    backdrop-filter: blur(20px);
    padding: 15px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.7);
    min-width: 200px;
}

.nav-item-mvl {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    border-radius: 12px;
    color: white;
    font-weight: 500;
    font-size: 15px;
    background: rgba(255,255,255,0.03);
    transition: 0.2s;
}

.nav-item-mvl:active {
    background: rgba(255,255,255,0.1);
}

/* Ajustes de tarjetas */
.glass-card, .profile-card {
    width: 90% !important;
    max-width: 360px;
    padding: 25px !important;
}

/* Galería de avatares adaptada */
.profile-card[style*="width: 620px"] {
    width: 95% !important;
    padding: 15px !important;
}

.avatar-option div, .avatar-option img {
    width: 45px !important;
    height: 45px !important;
}