.video-card {
    background-color: #fff;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    padding: 15px 20px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.video-card video {
    position: relative;
    z-index: 10;
}
.video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/portal/krste/img/bg-overlay.png'); /* New world map image */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 0.09; /* Opacity from the image */
    z-index: 1;
}

.video-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #003865;
    margin-bottom: 15px;
    text-align: center;
}

.video-player {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.video-description {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 15px;
    text-align: center;
    flex-grow: 1;
}


.video-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.video-tags .tag {
    flex: 1;
    text-align: center;
    background-color: #d5f5e3;
    color: #27ae60;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

.video-tags .tag:last-child {
    background-color: #d6e4f2;
    color: #003865;
}
