.loaderPage {
    min-width: 100%;
    min-height: 100%;
    background-color: #62347e;
    position: fixed;
    top: 0;
    left: 0;
}
.ametistSvg {
    position: absolute;
    top: 36%;
    left: 0%;
    max-width: 40%;
    transform: translateX(-91.5%);
    animation-name: ametistMove; /* Kullanılacak keyframe adı */
    animation-duration: 1.7s; /* Animasyonun süresi */
    animation-timing-function: ease-out; /* Animasyon hızı (başta hızlı, sonda yavaşlar) */
    animation-delay: 0.2s; /* Animasyonun başlamadan önceki gecikmesi */
    animation-iteration-count: 1; /* Animasyonun kaç kez tekrarlanacağı (1 kez) */
    animation-fill-mode: forwards; 
}
.amtSvg {
    position: absolute;
    top: 36%;
    left: 0%;
    max-width: 40%;
    transform: translateX(242%);
    animation-name: amtMove; /* Kullanılacak keyframe adı */
    animation-duration: 1.7s; /* Animasyonun süresi */
    animation-timing-function: ease-out; /* Animasyon hızı (başta hızlı, sonda yavaşlar) */
    animation-delay: 0.2s; /* Animasyonun başlamadan önceki gecikmesi */
    animation-iteration-count: 1; /* Animasyonun kaç kez tekrarlanacağı (1 kez) */
    animation-fill-mode: forwards; 
}
@keyframes ametistMove {
    0% {
        transform: translateX(-91.5%); /* Başlangıç konumu */
        opacity: 0;
    }
    15% {
        transform: translateX(21%); /* Başlangıç konumu */
        opacity: 0.5;
    }
    40% {
        transform: translateX(21%); /* Başlangıç konumu */
        opacity: 1;
    }
    70% {
        transform: translateX(44%); /* Başlangıç konumu */
        opacity: 1;
    }
    75% {
        transform: translateX(45.5%); /* Bitiş konumu (100 piksel sağa) */
        opacity: 1;
    }
    100% {
        transform: translateX(45.5%);
        opacity: 0;
    }
}

@keyframes amtMove {
    0% {
        transform: translateX(242%); /* Başlangıç konumu */
        opacity: 0;
    }
    15% {
        transform: translateX(130%); /* Başlangıç konumu */
        opacity: 0.5;
    }
    40% {
        transform: translateX(130%); /* Başlangıç konumu */
        opacity: 1;
    }
    70% {
        transform: translateX(107%); /* Başlangıç konumu */
        opacity: 1;
    }
    75% {
        transform: translateX(106%); /* Bitiş konumu (100 piksel sağa) */
        opacity: 1;
    }
    100% {
        transform: translateX(106%); 
        opacity: 0;
    }
}
.animated-text {
    font-size: 6vw; /* Ekran genişliğine göre ayarlanır, kocaman yapar */
    text-align: center;
    line-height: 1.2;
    word-break: break-word; /* Uzun kelimelerin satır atlamasını sağlar */
    padding: 4%;
    color: white;
    font-weight:bold;
    font-family: 'Arial Black',
    
}

.animated-text span {
    opacity: 0; /* Başlangıçta tüm kelimeler gizli */
    transition: opacity 0.4s ease-in-out; /* Her kelime için yumuşak geçiş */
    display: inline-block; /* Her kelimenin ayrı bir blok gibi davranmasını sağlar */
    margin-right: 1vw; /* Kelimeler arasında boşluk */
}