.videos-page {
    overflow: hidden;
}
.videos-page h2 {
    font-size: 40px;
    color: blue;
}

/* Title */
.line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ff5f6d, #ff9966);
}

/* Card */
.video-box {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: 0.3s ease;
    border: 1px solid black;
}

.video-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* Thumbnail */
.video-thumb {
    position: relative;
}

.video-thumb img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

/* Play Button */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: #fff;
    color: #ff0000;
    border-radius: 50%;
    font-size: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: 0.3s;
}

/* Duration */
.video-time {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 3px 10px;
    font-size: 14px;
    border-radius: 4px;
}

/* Text */
.video-info {
    padding: 18px;
}

.video-info h5 {
    font-size: 17px;
    font-weight: 600;
    margin: 0;
}
