/* === VIDEOS PAGE STYLES === */
.videos-container {
    padding: 20px 10px;
}

.video-item {
    background: #1f1f1f;
    border-radius: 10px;
    margin-bottom: 25px;
    overflow: hidden;
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    border-color: #1e90ff;
}

.video-thumbnail {
    width: 100%;
    aspect-ratio: 16/9;
    background: #2d2d2d;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3rem;
    background: rgba(30, 144, 255, 0.8);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-thumbnail:hover .video-play-btn {
    background: rgba(30, 144, 255, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 20px;
}

.video-title {
    color: #1e90ff;
    margin: 0 0 10px 0;
    font-size: 1.2rem;
}

.video-description {
    color: #cccccc;
    margin: 0 0 15px 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #888;
    font-size: 0.9rem;
}

.video-duration {
    display: flex;
    align-items: center;
    gap: 5px;
}

.video-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Video Categories */
.video-categories {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: none;
}

.video-categories::-webkit-scrollbar {
    display: none;
}

.video-category {
    padding: 8px 16px;
    background: #1f1f1f;
    border: 1px solid #333;
    border-radius: 20px;
    color: #e0e0e0;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.video-category:hover,
.video-category.active {
    background: #1e90ff;
    color: white;
    border-color: #1e90ff;
}

@media (max-width: 768px) {
    .video-play-btn {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}