/**
 * Visionary Engine - Frontend Styles
 */

/* Video Container */
.ve-video-container {
    max-width: 100%;
    margin: 0 auto;
}

/* Video Player */
.ve-video-player {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.ve-video {
    width: 100%;
    height: auto;
    display: block;
}

/* Content Warning Gate */
.ve-content-warning {
    background: rgba(0, 0, 0, 0.95);
    padding: 60px 30px;
    text-align: center;
    border-radius: 8px;
}

.ve-warning-content {
    max-width: 600px;
    margin: 0 auto;
}

.ve-warning-content h3 {
    color: #fff;
    font-size: 28px;
    margin: 0 0 20px 0;
}

.ve-warning-content p {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.ve-warning-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.ve-warning-accept,
.ve-warning-decline {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
}

.ve-warning-accept:hover,
.ve-warning-decline:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Series Switcher */
.ve-series-switcher {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    margin-top: 15px;
    border-radius: 8px;
}

.ve-series-switcher h4 {
    color: #fff;
    margin: 0 0 15px 0;
    font-size: 18px;
}

.ve-episodes-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.ve-episode-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ve-episode-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.ve-episode-item.active {
    background: #3b82f6;
}

.ve-episode-number {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-weight: 600;
    color: #fff;
}

.ve-episode-title {
    flex: 1;
    color: #fff;
    font-size: 14px;
}

/* CTA Buttons */
.ve-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
    justify-content: center;
}

.ve-cta-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ve-cta-solid {
    background: #3b82f6;
}

.ve-cta-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
}

.ve-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Download Links */
.ve-download-links {
    margin-top: 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.ve-download-links h4 {
    margin: 0 0 15px 0;
    font-size: 18px;
}

.ve-download-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ve-download-btn {
    padding: 10px 20px;
    background: #10b981;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ve-download-btn:hover {
    background: #059669;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .ve-content-warning {
        padding: 40px 20px;
    }
    
    .ve-warning-content h3 {
        font-size: 22px;
    }
    
    .ve-warning-actions {
        flex-direction: column;
    }
    
    .ve-warning-accept,
    .ve-warning-decline {
        width: 100%;
    }
    
    .ve-episodes-list {
        grid-template-columns: 1fr;
    }
    
    .ve-cta-buttons {
        flex-direction: column;
    }
    
    .ve-cta-btn {
        width: 100%;
        text-align: center;
    }
}
