/* Genel Sıfırlama */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-color: black;
}

/* Ana modül: Genişlik full, yükseklik 100px */
#card {
    position: relative;
    width: 100%;
    height: 100px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    z-index: 1; /* Varsayılan z-index */
}

/* Fullscreen Mod - Slider Overlay */
.full_screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: none; /* Başlangıçta gizlenmiş */
    z-index: 9999; /* Fullscreen modda en üstte */
    animation: fadeIn 0.5s ease-in-out; /* Giriş animasyonu */
}

/* Kapatma butonu */
.close_btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    z-index: 10000;
}

/* Zaman çizgisi */
.time_line {
    height: 2px;
    width: 100%;
    position: absolute;
    top: 20px;
    border-radius: 5px;
    background-color: #fff;
    animation: timeline 3s linear forwards;
}

@keyframes timeline {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

/* Fullscreen Modunda Alt Başlık */
.story_title {
    position: absolute;
    bottom: 100px;
    left: 0;
    width: 100%;
    text-align: left;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    padding: 5px 10px;
    letter-spacing: 0;
    box-sizing: border-box;
    cursor: pointer;
}

/* Hikaye Thumbnail Alanı */
.stories {
    height: 83%;
    width: 100%;
    border-bottom: 1px solid #f8f8f8;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    z-index: 2; /* Varsayılan z-index */
}

.stories::-webkit-scrollbar {
    display: none;
}

/* Hikaye Thumbnail (Küçük Resim) */
.story {
    border: 3px solid lightpink;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    overflow: hidden;
    display: inline-block;
    margin-right: 5px;
}

.story img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Tam Ekran Görünümde Fade Efekt */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Fullscreen Mod Açıkken Slider En Üstte */
.full_screen-active {
    display: block !important; /* Görünür hale getirildi */
    z-index: 1 !important; /* En üst katmana çıkarıldı */
}

/* Fullscreen Aktif Değilse Varsayılan */
.full_screen-inactive {
    display: none !important; /* Gizlendi */
    z-index: 1 !important; /* Alt katmanda kaldı */
}
