/**
 * EXCENTRICA - Ads Player Styles
 * Estilos para el reproductor de videos publicitarios
 */

/* Container del player */
.ads-player-wrapper {
    position: relative;
    background: linear-gradient(135deg, #1e1e2e 0%, #0f0f1a 100%);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(168, 85, 247, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Video container */
.ads-player-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
}

.ads-player-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Titulo del anuncio */
.ads-player-title {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #e2e8f0;
    background: rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Link de mas info */
.ads-player-link {
    display: block;
    text-align: center;
    padding: 0.6rem 1rem;
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ads-player-link:hover {
    background: linear-gradient(135deg, #c084fc 0%, #a855f7 100%);
    color: #fff;
}

/* Badge de publicidad */
.ads-player-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 2px 8px;
    background: rgba(0, 0, 0, 0.7);
    color: #94a3b8;
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    z-index: 10;
}

/* Dots de navegacion */
.ads-player-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
}

.ads-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.ads-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.ads-dot.active {
    background: #a855f7;
    transform: scale(1.2);
}

/* Estado vacio */
.ads-player-empty {
    padding: 2rem 1rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(124, 58, 237, 0.05) 100%);
    border: 1px dashed rgba(168, 85, 247, 0.3);
    border-radius: 12px;
}

.ads-player-empty-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.5));
}

.ads-player-empty h4 {
    color: #e2e8f0;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.ads-player-empty p {
    color: #94a3b8;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.ads-player-empty .btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
}

/* Widget sidebar - Ajuste para sidebars */
.widget .ads-player-wrapper {
    border-radius: 8px;
}

.widget .ads-player-title {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
}

.widget .ads-player-link {
    padding: 0.5rem;
    font-size: 0.8rem;
}

