/* ===========================================
   Video Styles
   =========================================== */

.video-thumbnail {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #667eea, #764ba2);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn-overlay {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.card:hover .play-btn-overlay {
    transform: scale(1.2);
    background: rgba(255, 255, 255, 1);
}

/* Video List (Admin) */
.video-list {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border);
}

.video-list__title {
    color: var(--primary);
    margin-bottom: 1rem;
}

.video-item {
    background: var(--bg);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.video-item:hover {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.1), rgba(6, 214, 208, 0.1));
}

.video-item__info strong {
    display: block;
}

.video-item__date {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.video-item__actions {
    display: flex;
    gap: 8px;
}
