@charset "UTF-8";

/* ─── PANEL PRINCIPAL: ATMÓSFERA ESPIRITUAL (Especificando su tema) ─── */
.glass-panel-local.dream-nail-theme {
    position: absolute;
    top: 5px;
    left: 5px;
    width: calc(100% - 10px);
    height: 20%; 
    
    /* Fondo: de Rosa Esencia (0.08) a Azul Noche Profundo (0.8) */
    background: linear-gradient(135deg, rgba(247, 131, 172, 0.08) 0%, rgba(10, 10, 18, 0.8) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    
    /* Borde blanco-azulado etéreo */
    border: 2px solid rgba(220, 235, 255, 0.4);
    border-radius: 6px;
    /* Sombras con brillo rosa/neón sutil */
    box-shadow: 0 0 25px rgba(247, 131, 172, 0.18), 
                inset 0 0 25px rgba(220, 235, 255, 0.05);
    
    padding: 20px;
    box-sizing: border-box;
    z-index: 50; 
    transform-origin: 100% 0%;
}

.wawa{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;       /* Clavado al ancho exacto de la columna */
    height: 40%;      /* Ajustado a la mitad superior exacta de la sección */
    
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(15, 12, 2, 0.85) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    
    border: 2px solid rgba(255, 215, 0, 0.5);
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.25), 
                inset 0 0 25px rgba(255, 215, 0, 0.08);
    
    padding: 15px;
    box-sizing: border-box;
    z-index: 50; 
    transform-origin: center top; 
}



.hidden {
    display: none !important;
}

/* Animaciones */
.animate-scale-in {
    animation: scale-in-ver-top 0.35s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.animate-scale-out {
    animation: scale-out-ver-top 0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

/* ─── ENCABEZADO Y TEXTOS SÓLO DEL SUEÑO ─── */
.dream-nail-theme .glass-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dream-nail-theme .panel-title {
    font-family: 'Cinzel', serif;
    color: #e3f2fd; /* Blanco azulado */
    font-size: 1.05rem;
    margin: 0;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(247, 131, 172, 0.6), 0 0 2px rgba(255, 255, 255, 0.8);
}

.dream-nail-theme .panel-divider {
    border: 0;
    height: 1px;
    /* Degradado rosa/blanco */
    background: linear-gradient(to right, transparent, rgba(247, 131, 172, 0.7), transparent);
    margin: 12px 0;
}

/* ─── BOTÓN DE MINIMIZAR EXCLUSIVO DEL SUEÑO (#minimize-dream-btn) ─── */
#minimize-dream-btn {
    background: rgba(247, 131, 172, 0.05);
    border: 1px solid rgba(220, 235, 255, 0.2);
    border-radius: 4px;
    color: #b0bec5;
    font-size: 12px;
    padding: 2px 12px;
    cursor: pointer;
    line-height: 1.2;
    transition: all 0.2s ease;
}

#minimize-dream-btn:hover {
    background: rgba(247, 131, 172, 0.2);
    color: #ffffff;
    box-shadow: 0 0 8px rgba(247, 131, 172, 0.4);
    transform: scale(1.05);
}

/* ─── SECCIÓN CHECKLIST LIMITADO AL TEMA DEL SUEÑO ─── */
.dream-nail-theme .checklist-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.dream-nail-theme .checklist-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 2px;
    cursor: pointer;
    border-bottom: 1px solid rgba(247, 131, 172, 0.04);
}

.dream-nail-theme .task-text {
    color: #eceff1;
    font-family: sans-serif;
    font-size: 0.9rem;
    position: relative;
    transition: color 0.3s ease;
}

/* Línea de tachado espiritual */
.dream-nail-theme .task-text::after {
    content: "";
    position: absolute;
    left: 0;
    top: 55%;
    width: 0%;
    height: 1.5px;
    background-color: rgba(247, 131, 172, 0.4);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Checkbox personalizado - Contenedor */
.dream-nail-theme .task-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid rgba(220, 235, 255, 0.3);
    border-radius: 3px;
    background: rgba(10, 10, 18, 0.6);
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.dream-nail-theme .task-checkbox:hover {
    border-color: rgba(247, 131, 172, 0.6);
    box-shadow: 0 0 6px rgba(247, 131, 172, 0.3);
}

.dream-nail-theme .task-checkbox:checked {
    background: rgba(25, 15, 35, 0.8); /* Fondo morado oscuro */
    border-color: rgba(247, 131, 172, 0.8);
    box-shadow: 0 0 10px rgba(247, 131, 172, 0.5);
}

/* Efecto Destello / Esencia Absorbida (✦) */
.dream-nail-theme .task-checkbox:checked::before {
    content: "✦"; /* Un destello místico en vez de una X */
    position: absolute;
    color: #fff; 
    font-size: 18px;
    top: 50%;
    left: 50%;
    text-shadow: 0 0 8px rgba(247, 131, 172, 1), 0 0 15px rgba(255, 255, 255, 0.8);
    animation: pop-essence 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* Reacción interactiva del texto */
.dream-nail-theme .task-checkbox:checked ~ .task-text {
    color: #546e7a; /* El texto pasa a un tono gris azulado apagado */
}

.dream-nail-theme .task-checkbox:checked ~ .task-text::after {
    width: 100%;
}

/* Animaciones de impacto de esencia */
@keyframes pop-essence {
    0% { transform: translate(-50%, -50%) scale(0) rotate(0deg); opacity: 0; }
    100% { transform: translate(-50%, -50%) scale(1.4) rotate(90deg); opacity: 1; }
}

@keyframes scale-in-ver-top {
    0% { transform: scaleY(0); opacity: 0; }
    100% { transform: scaleY(1); opacity: 1; }
}

@keyframes scale-out-ver-top {
    0% { transform: scaleY(1); opacity: 1; }
    100% { transform: scaleY(0); opacity: 0; }
}

/* ─── TEMÁTICA PROPIA PARA EL DREAM NAIL ─── */
.dreamnail-theme {
    /* Gradiente con tonos rosados de Esencia de Sueños */
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.12) 0%, rgba(12, 2, 15, 0.85) 100%);
    border: 2px solid rgba(255, 182, 193, 0.5);
    box-shadow: 0 0 20px rgba(238, 130, 238, 0.25), 
                inset 0 0 25px rgba(255, 192, 203, 0.08);
}

/* Título rosa místico para el panel */
.dreamnail-theme .panel-title {
    color: #ffb6c1;
    text-shadow: 0 0 8px rgba(238, 130, 238, 0.6);
}

.dreamnail-theme .panel-divider {
    background: linear-gradient(to right, transparent, #ffb6c1, transparent);
}

/* Botón de minimizar del Dream Nail */
#minimize-dream-btn {
    background: rgba(255, 182, 193, 0.08);
    border: 1px solid rgba(255, 182, 193, 0.3);
    border-radius: 4px;
    color: #d8a4b8;
    font-size: 12px;
    padding: 2px 12px;
    cursor: pointer;
    line-height: 1.2;
    transition: all 0.2s ease;
}

#minimize-dream-btn:hover {
    background: rgba(255, 105, 180, 0.25);
    color: #ffffff;
    box-shadow: 0 0 8px rgba(255, 105, 180, 0.5);
    transform: scale(1.05);
}

/* Checkbox personalizado para el Dream Nail (X Rosa/Blanca mística) */
.dream-task:checked {
    background: rgba(25, 5, 25, 0.8);
    border-color: rgba(255, 182, 193, 0.8);
    box-shadow: 0 0 8px rgba(238, 130, 238, 0.4);
}

.dream-task:checked::before {
    color: #ffb7e1; /* Rosa brillante tipo esencia */
    text-shadow: 0 0 6px rgba(255, 105, 180, 0.9), 0 0 2px #000;
}

.dream-task:checked ~ .task-text::after {
    background-color: rgba(255, 182, 193, 0.4);
}


/* ─── INTERACTIVIDAD PARA LAS MÁSCARAS (#mask) ─── */
#mask {
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(100%) opacity(0.4); /* Estado desactivado por defecto */
}

/* Cuando pasa a ser activa o clickeable (quitar grayscale) */
#mask:not(.disabled) {
    filter: none;
}

/* El feel de botón/interactivo al pasar el mouse */
#mask:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

#mask:active {
    transform: scale(0.95);
}