html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.swiper-container {
    margin-top: 62px;
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: 90%;
    object-fit: cover;
    object-position: center;
    transition: transform 1s ease;
}

/* Arka plan katmanı */
.background-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    box-sizing: border-box;
    pointer-events: none;
}

.animated-texts {
    color: white;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 6px;
    text-align: left;
    margin-left: 100px;
    z-index: 11;
    pointer-events: auto;
}

.custom-nav-buttons {
    position: absolute;
    bottom: 80px;
    left: 123px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 20;
    pointer-events: auto;
}

.custom-nav-button {
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 0.5px solid white;
    outline: 0.5px solid black;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 21;
}

.custom-nav-button i {
    font-size: 20px;
}

/* MOBİL DÜZENLEMELER */
@media (max-width: 767.98px) {
    .swiper-container {
        height: 550px;
    }

    /* Overlay yapısını mobilde butonlarla yan yana gelecek şekilde değiştiriyoruz */
    .overlay-content {
        justify-content: flex-end; /* En alta indirir */
        align-items: flex-start;
        padding-bottom: 29px; /* Alt boşluk */
        padding-left: 60px; /* Butonların genişliği + boşluk kadar soldan itiyoruz */
    }

    .animated-texts {
        margin-left: 0;
        margin-bottom: 0;
        font-size: 16px;
        max-width: 90%;
    }

    .animated-texts h2 {
        font-size: 18px;
        margin: 5px 0 0 0;
    }

    /* Butonları mobilde tam istediğin koordinata (sol alt) sabitliyoruz */
    .custom-nav-buttons {
        bottom: 30px;
        left: 20px;
        flex-direction: column; /* Oklar üst üste kalsın */
        gap: 9px;
    }
}