/* Fuente moderna estilo TikTok */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    background: rgb(0, 0, 0);
    /* celeste neón */
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    color: #111;
}

/* Título principal */
h1 {
    margin-top: 20px;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    animation: pop 0.4s ease;
}

@keyframes pop {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Tarjeta central */
.swiper {
    height: 80vh;
    /* usa todo el alto visible */
    width: 30rem;
    margin-top: 20px;
}

.wp-block-list {
    margin: 0%;
}

.swiper-slide {
    background: #fff;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    animation: fadeIn 0.4s ease;
}

/* Animación suave */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Estilo lista */
.swiper-slide li {
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.4;
}

/* Botones de navegación (estilo TikTok flechas minimalistas) */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    text-shadow: 0 0 10px #ff0050;
    transform: scale(0.8);
    transition: 0.2s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    transform: scale(1);
    text-shadow: 0 0 14px #ff0050, 0 0 20px aqua;
}

/* Scrollbar estilo neon TikTok */
.swiper-scrollbar-drag {
    background: linear-gradient(90deg, #ff0050, aqua);
    border-radius: 10px;
}

/* Footer */
footer {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.7;
    color: #ffffff;
}