/* Paginación Circular Personalizada - Estilo Moderno */

.videixx-pagination-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 3rem 0;
    margin: 2rem 0;
}

.videixx-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Estilos base para números y flechas */
.pagination-number,
.pagination-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
}

/* Hover para números y flechas */
.pagination-number:hover,
.pagination-arrow:hover {
    background-color: #1a1a1a;
    transform: scale(1.05);
}

/* Página actual - más grande con efecto de brillo azul */
.pagination-number.current {
    width: 65px;
    height: 65px;
    font-size: 1.25rem;
    font-weight: 700;
    background-color: #000000;
    box-shadow: 
        0 0 20px rgba(59, 130, 246, 0.6),
        0 0 40px rgba(59, 130, 246, 0.4),
        0 0 60px rgba(59, 130, 246, 0.2);
    position: relative;
    z-index: 10;
}

/* Efecto de resplandor adicional para la página actual */
.pagination-number.current::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    z-index: -1;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Puntos suspensivos */
.pagination-dots {
    color: #666;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 0 0.5rem;
    display: inline-flex;
    align-items: center;
}

/* Flecha deshabilitada */
.pagination-arrow.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* Contador de páginas y videos - Estilo original */
.pagination-counter {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    margin-top: 1.5rem;
    border-top: 2px solid rgba(59, 130, 246, 0.3);
    border-bottom: 2px solid rgba(59, 130, 246, 0.3);
}

.counter-text {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    color: #ccc;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.counter-label {
    color: #999;
    font-weight: 400;
    margin: 0 0.5rem;
}

.counter-value {
    color: #3b82f6;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 640px) {
    .pagination-number,
    .pagination-arrow {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }
    
    .pagination-number.current {
        width: 58px;
        height: 58px;
        font-size: 1.1rem;
    }
    
    .videixx-pagination {
        gap: 0.5rem;
    }
}

/* Asegurar que los SVG de las flechas estén centrados y tengan el tamaño correcto */
.pagination-arrow svg {
    width: 28px;
    height: 28px;
    display: block;
}
