@import url('https://fonts.googleapis.com/css2?family=Rubik+Bubbles&display=swap');
html,
body {
    position: relative;
    height: 100%;
}
body {
    font-family: 'Rubik Bubbles', 'Arial', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;
}

#countdown {
    position: absolute;
    z-index: 1000 !important;
    font-size: 3em;
    text-align: center;
    color: #fff;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    mix-blend-mode: soft-light; /* Blend modu */
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2); /* Text shadow efekti */
}
.swiper {
    position: absolute;
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    filter: blur(2px);
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-slide:before{
    z-index: 1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75); /* Overlay rengi ve şeffaflığı */
}
