/* Estilos generales */
body {
    margin: 0;
    padding: 0;
    background: #000;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
}

/* Texto con fondo de imagen */
p {
    font-size: 9px;
    line-height: 9px;
    text-align: justify;
    background: url(image.png) no-repeat center/cover;
    background-attachment: fixed;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(225, 225, 255, 0);
}

/* Contenedor del popup */
.popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

/* Mostrar el popup */
.popup-container.show {
    display: flex;
}

/* Contenido del popup */
.popup-content {
    background: white;
    color: rgb(105, 125, 163);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 90%;
    max-width: 350px;
    box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.2);
}

/* Estilos de los botones */
.popup-content button {
    background: linear-gradient(45deg, #a9ceff, #82aadf);
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 10px;
    margin: 10px;
    transition: 0.3s;
}

.popup-content button:hover {
    transform: scale(1.1);
}

/* Texto del mensaje */
.birthday-text {
    font-size: 11px;
    color: rgba(164, 206, 255, 0.8);
    text-shadow: 2px 2px 5px rgba(178, 224, 255, 0.8);
}

/* Ajustes para dispositivos móviles */
@media (max-width: 480px) {
    p {
        font-size: 7px;
        line-height: 8px;
    }

    .popup-content {
        width: 90%;
        max-width: 300px;
    }
}

/* Animación de aparición */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
