#splash-window {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    width: 750px;
    height: 450px;
    background: rgba(255, 255, 255, 1); /* Arka planı beyaz yapalım */
    border-radius: 10px; /* Pencere köşelerini yuvarlayalım */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Gölgelendirme efekti */
}

.splash-content {
    text-align: center;
}

.splash-image {
    width: 100%;
    height: auto;
    max-width: 770px; /* Resmin genişliği 700px'yi geçmesin */
    border: 25px solid white; /* Beyaz çerçeve */
}

.close-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background-color: #ff5733; /* Turuncu arka plan */
    color: white;
    border-radius: 50%; /* Daire şekli */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    border: none;
}

.close-btn:hover {
    background-color: #ff4500; /* Hover durumunda renk değişimi */
}

.close-btn:focus {
    outline: none; /* Focus durumunda kenarlık göstermesin */
}

#promo-text {
    font-size: 36px; /* Yazı boyutunu büyütüyoruz */
    font-weight: bold; /* Yazıyı kalın yapıyoruz */
    color: #ff5733; /* Turuncu renk (isteğe bağlı olarak farklı bir turuncu tonu seçilebilir) */
    text-align: center; /* Yazıyı ortalıyoruz */
    margin-top: 15px; /* Üstten biraz boşluk bırakıyoruz */
}
