/* --- ESTILOS VISUALES: PANTALLA INICIAL ROSA --- */
.pantalla-inicial {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: radial-gradient(ellipse at bottom, #4a0024 0%, #110008 100%);
    overflow: hidden;
}

.pastizal {
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 120%;
    height: 30vh;
    background: linear-gradient(to bottom, #d81b60 0%, #4a0024 100%);
    border-radius: 50% 50% 0 0;
    z-index: 2;
    box-shadow: 0 -10px 40px rgba(216, 27, 96, 0.4);
}

.contenido-inicial {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.titulo-neon {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    text-shadow: 0 0 10px #ff80ab, 0 0 20px #ff4081;
}

.btn-rosa {
    padding: 12px 30px;
    font-size: 1.2rem;
    font-family: 'Outfit', sans-serif;
    border: 1px solid rgba(255, 128, 171, 0.4);
    background: rgba(255, 64, 129, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 64, 129, 0.3);
}

.btn-rosa:hover {
    background: rgba(255, 64, 129, 0.4);
    box-shadow: 0 0 25px rgba(255, 64, 129, 0.8);
    transform: translateY(-2px);
}

/* --- BOTÓN MUTE --- */
.btn-mute {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 20;
    background: rgba(255, 64, 129, 0.1);
    border: 1px solid rgba(255, 128, 171, 0.4);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 64, 129, 0.2);
}

.btn-mute:hover {
    background: rgba(255, 64, 129, 0.4);
    transform: scale(1.1);
}

/* --- ANIMACIONES DE LAS ESTRELLAS --- */
#cielo-estrellado {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.capa-estrellas {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
}

.estrella {
    position: absolute;
    background-color: #fff;
    border-radius: 50%;
    animation: titilar linear infinite;
}

@keyframes titilar {
    0% { opacity: 0.1; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1.2); box-shadow: 0 0 5px #ff80ab; }
    100% { opacity: 0.1; transform: scale(0.5); }
}

.estrella-fugaz {
    position: absolute;
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 128, 171, 0));
    animation: caer 3s linear infinite;
    opacity: 0;
    transform: rotate(45deg);
}

@keyframes caer {
    0% { transform: translateY(-100px) translateX(100px) rotate(45deg); opacity: 1; }
    100% { transform: translateY(800px) translateX(-800px) rotate(45deg); opacity: 0; }
}
