.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.video-modal-content {
    position: relative;
    width: 80%;
    max-width: 960px;
    margin: 50px auto;
    background: #000;
    padding: 10px;
}

.video-modal video {
    width: 100%;
    height: auto;
    display: block;
}

.video-modal .close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 10000;
}

/* Play butonu üzerine gelince el simgesi */
.cat-play-btn a {
    cursor: pointer;
}

/* Çarpı butonuna hover */
.video-modal .close {
    cursor: pointer;
    transition: color 0.3s;
}

.video-modal .close:hover {
    color: #f00; /* üzerine gelince renk değişimi opsiyonel */
}


/* Gölge, radius ve animasyonlu hover efekti */
.hover-shadow-radius img {
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover durumunda büyüme ve daha yoğun gölge */
.hover-shadow-radius img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.img-top {
  display: flex;
  align-items: flex-start;
  margin-top: 69px;
}