/* Video Gallery Styles */
.video-section {
    margin-bottom: 2.5rem;
}

.video-section + .video-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.video-section-ai {
    padding: 1.25rem 1.25rem 1.5rem;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(113, 99, 158, 0.08) 0%, rgba(248, 249, 250, 0.5) 100%);
    border: 1px solid rgba(113, 99, 158, 0.2);
}

.video-section-videos {
    padding: 1.25rem 1.25rem 1.5rem;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(13, 110, 253, 0.07) 0%, rgba(248, 249, 250, 0.5) 100%);
    border: 1px solid rgba(13, 110, 253, 0.18);
}

.video-section-streamings {
    padding: 1.25rem 1.25rem 1.5rem;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(25, 135, 84, 0.08) 0%, rgba(248, 249, 250, 0.5) 100%);
    border: 1px solid rgba(25, 135, 84, 0.2);
}

.video-section-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.75rem;
}

.video-section-360 .video-section-title {
    color: #2c3e50;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.video-card {
    position: relative;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #000;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3rem;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.video-card:hover .video-play-icon {
    opacity: 1;
}

/* VR Badge for 360 videos */
.vr-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.vr-badge i {
    font-size: 1rem;
}

.ai-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(33, 37, 41, 0.85);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.hls-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(25, 135, 84, 0.9);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.video-info {
    padding: 12px 14px 14px;
    padding-right: 48px;
}

.video-card-shortlink {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    font-size: 0.8rem;
    padding: 0.35rem 0.5rem;
    line-height: 1;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
    background: #fff;
}

.video-card-shortlink:hover {
    background: #f8f9fa;
}

.video-title {
    font-weight: 600;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    color: #6c757d;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.video-info .video-details {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 0;
}

.video-details .badge {
    font-weight: 500;
    font-size: 0.75rem;
}

.page-title {
    margin: 20px 0;
    font-weight: 700;
    color: #333;
}

/* Empty state styles */
.empty-state {
    text-align: center;
    padding: 50px 20px;
    color: #6c757d;
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 576px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
} 