/* src/css/loading.css */

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main-bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.creator-credit {
    position: absolute; /* Membuat posisi elemen independen */
    bottom: 30px;       /* Jarak 30px dari bawah layar */
    left: 50%;          /* Posisikan 50% dari kiri */
    transform: translateX(-50%); /* Geser ke kiri sejauh 50% dari lebar elemen itu sendiri, untuk membuatnya pas di tengah */
    
    /* Style untuk menata teks di dalamnya */
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--main-text-color);
    opacity: 0.8;
}

/* Style untuk baris pertama "Di Buat oleh" */
.creator-credit span:first-child {
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Style untuk baris kedua "Arief Syafrudin" */
.creator-credit span:last-child {
    font-size: 1.1rem;
    font-weight: 600;
}
/* END: Style untuk teks kredit vertikal */

/* START: Penyesuaian untuk layar mobile (opsional tapi disarankan) */
@media screen and (max-width: 768px) {
    .creator-credit {
        font-size: 0.8rem;
        bottom: 100px;
        right: 5px;
    }
}