body {
    background-color: #fff;
    color: #000;
    font-family: "Quicksand", sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevents horizontal scrolling */
    min-height: 100vh;
    background-image: url(img/bgPutih2.png);
    background-size: cover;
}

.loader {
    font-size: 5px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2.5em;
    height: 2.5em;
    border-radius: 50%;
    margin: -1.25em 0 0 -1.25em;
    text-indent: -9999em;
    transform: translateZ(0);
    animation-fill-mode: both;
    animation: loader-animation 1.8s infinite ease-in-out;
    color: #4285f4; /* Warna biru Google Maps */
}

.loader:before,
.loader:after,
.loader-green {
    content: "";
    position: absolute;
    top: 0;
    width: 2.5em;
    height: 2.5em;
    border-radius: 50%;
    animation-fill-mode: both;
    animation: loader-animation 1.8s infinite ease-in-out;
}

.loader:before {
    left: -3.5em;
    color: #ea4335; /* Warna merah Google Maps */
    animation-delay: -0.32s;
}

.loader:after {
    left: 3.5em;
    color: #fbbc05; /* Warna kuning Google Maps */
    animation-delay: 0.32s;
}

.loader-green {
    top: 3.5em;
    left: -0.5em;
    color: #34a853; /* Warna hijau Google Maps */
    animation-delay: -0.64s;
}

@keyframes loader-animation {
    0%,
    80%,
    100% {
        box-shadow: 0 2.5em 0 -1.3em;
    }

    40% {
        box-shadow: 0 2.5em 0 0;
    }
}

.mobile-only {
    display: block;
}

.imgSiap {
    width: 320px;
    margin-top: -5em;
}

.text {
    text-align: center;
    margin-top: -3em;
    align-items: center;
    align-self: center;
}

.imgIcon {
    position: relative;
    top: -2em;
    margin: auto;
    width: 120px;
}

/* Media query untuk perangkat seluler */
@media only screen and (max-width: 600px) {
    body {
        background-color: #f2f1f1;
        font-family: Quicksand;
        overflow-x: hidden; /* Prevents horizontal scrolling */
        min-height: 100vh;
        margin: 0;
        background-image: url(img/bgPutihMobile.png);
        background-size: cover;
    }

    .mobile-only {
        display: block;
    }

    .imgSiap {
        margin-top: -7em;
        width: 220px;
    }

    .loader {
        margin-top: -14em;
    }

    .text {
        margin-top: -6em;
        text-align: center;
        align-items: center;
        align-self: center;
    }

    .text .kiri {
        top: 7em;
        vertical-align: center;
        align-content: center;
    }

    .imgIcon {
        position: relative;
        top: -1em;
        margin: auto;
    }

    .text .kiri img {
        width: 130px;
    }

    .text .kanan {
        top: 8em;
        left: 0;
    }

    .text .kanan p {
        font-size: 12px;
    }
}

/* progres bar */
.progress-container {
    width: 100%;
    background-color: #f3f3f3;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 20px;
}

.progress-bar {
    height: 20px;
    background-color: #4285f4; /* Warna biru */
    transition: width 1s linear;
}

#countdown-text {
    margin-top: 10px;
    font-family: "Quicksand", sans-serif;
    font-size: 16px;
    color: #333;
    text-align: center;
}
