.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background-color: white;
    padding: 0;
    border-radius: 8px;
    text-align: center;
    position: relative;
    width: 90%; /* Mobil uyumluluk için genişliği yüzde olarak belirledim */
    max-width: 600px; /* PC için maksimum genişlik */
    aspect-ratio: 16 / 9; /* YouTube videoları için oran */
    display: flex;
    justify-content: center;
    align-items: center;
}

.close {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 24px;
    background: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
}

iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* Mobil için ekstra düzenleme */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-width: 400px; /* Mobilde fazla geniş olmaması için */
    }
}
