/* Genel sıfırlamalar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Sayfanın genel stili */
body {
    font-family: 'Poppins', sans-serif;
    background-color: red;  /* Kırmızı arka plan */
    color: white;  /* Beyaz yazılar */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    position: relative;
    overflow: hidden;
    flex-direction: column;
      font-family: 'Poppins', sans-serif;
    font-feature-settings: 'calt' 0; /* Bağlantılı karakter özelliklerini kapatır */
      font-family: 'Poppins', sans-serif;
    font-feature-settings: 'calt' 0;
}

/* Konteynerin stilini ayarlama */
.container {
    background: rgba(0, 0, 0, 0.6);  /* Hafif siyah transparan arka plan */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    width: 320px;
    z-index: 10;
}
h1.neon-text {
    font-size: 2.5rem;
    font-weight: bold; /* Kalın yazı */
    color: red; /* Beyaz renk */
    text-shadow: none; /* Neon efektini kaldırmak için text-shadow özelliğini kaldırdık */
}


/* Neon yanıp sönme animasyonu */
@keyframes neonPulse {
    0% {
        text-shadow: 
            0 0 5px #fff,
            0 0 10px #fff,
            0 0 20px #ff007f,
            0 0 30px #ff007f,
            0 0 40px #ff007f,
            0 0 50px #ff007f,
            0 0 75px #ff007f;
    }
    50% {
        text-shadow: 
            0 0 10px #fff,
            0 0 20px #fff,
            0 0 30px #ff007f,
            0 0 40px #ff007f,
            0 0 50px #ff007f,
            0 0 60px #ff007f,
            0 0 90px #ff007f;
    }
    100% {
        text-shadow: 
            0 0 5px #fff,
            0 0 10px #fff,
            0 0 20px #ff007f,
            0 0 30px #ff007f,
            0 0 40px #ff007f,
            0 0 50px #ff007f,
            0 0 75px #ff007f;
    }
}

/* Hemen Başla butonunun stilini ve hover efektini ayarlama */
.cta-btn {
    padding: 15px 30px;
    background-color: #000; /* Siyah arka plan */
    color: white; /* Beyaz yazı rengi */
    border: 2px solid #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transition: left 0.3s ease;
}

.cta-btn:hover::before {
    left: 0;
}

.cta-btn:hover {
    transform: scale(1.1); /* Hover efektinde buton büyür */
}

/* Arka planda kayan yazılar */
.scrolling-background-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.500); /* Şeffaf beyaz renk */
    font-size: 80px;
    font-weight: bold;
    animation: scrollText 150s linear infinite; /* Kayan yazının hızı ve süresi */
    white-space: nowrap;
    text-align: center;
}

/* Kayan yazı animasyonu */
@keyframes scrollText {
    0% {
        transform: translateX(100%);  /* Başlangıçta sağdan başlasın */
    }
    100% {
        transform: translateX(-100%);  /* Sonra sola kayarak kaybolsun */
    }
}

/* Ödeme yapılmadı mesajının gizlenmesi */
.hidden {
    display: none;
}
.alert-text {
    font-family: 'Poppins', sans-serif;  /* Daha güzel bir font kullanmak için */
    font-weight: 600;  /* Daha kalın bir yazı */
    font-size: 24px;  /* Uygun büyüklükte bir yazı */
    text-transform: capitalize;  /* Sadece ilk harfleri büyük yapmak için */
    color: #ffffff;  /* Beyaz yazı rengi */
    text-align: center;  /* Ortalamak */
    margin: 20px 0;  /* Üst ve alt boşluklar */
}




/* Ödeme yapılmadı mesajı görünür olduğunda stil */
#paymentMessage {
    font-size: 20px;
    margin-top: 20px;
    color: red;  /* Kırmızı renkte */
    font-weight: bold;
}


h1 {
    font-size: 32px;
    font-weight: 600;
    color: #ffffff; /* Sarı tonlarında düz renk */
    text-align: center;
    margin-bottom: 10px;
}

h2 {
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
}