#gpp-preloader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: var(--gpp-bg);
    z-index: 999999;
    overflow: hidden;
}

/* CENTER CONTENT */
.gpp-loader-inner{
    position: relative;
    z-index: 10;

    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* TEXT */
.gpp-loader-text{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;

    gap: 6px;

    color: var(--gpp-text);
    font-size: var(--gpp-font-size);
    font-weight: var(--gpp-font-weight,700);
    line-height: 1.1;
    text-align: center;

    padding: 0 20px;
}

/* LETTER */
.gpp-letter{
    display: inline-block;
    will-change: transform, opacity;
}

/* PERCENTAGE */
.gpp-progress{
    margin-top: 30px;

    color: var(--gpp-text);

    font-size: calc(var(--gpp-font-size) * 0.28);

    font-weight: 500;
    letter-spacing: 2px;

    text-align: center;
}

/* MOBILE OPTIMIZATION */
@media(max-width:768px){

    .gpp-loader-text{
        gap: 4px;
        line-height: 1.2;
    }

    .gpp-progress{
        margin-top: 22px;
    }

}
.gpp-svg {
    position: absolute;

    width: 100%;
    height: 100%;

    top: 0;
    left: 0;

    z-index: 1;
}

#gpp-svg-path {
    fill: var(--gpp-bg, #002c72);
}

.gpp-glitter-layer {
    position: absolute;

    inset: 0;

    z-index: 5;

    pointer-events: none;

    background: linear-gradient(
        120deg,
        transparent 10%,
        rgba(255,255,255,0.15) 30%,
        rgba(255,255,255,0.4) 50%,
        rgba(255,255,255,0.15) 70%,
        transparent 90%
    );

    background-size: 250% 100%;

    animation: gppShimmer 2.5s linear infinite;
}

@keyframes gppShimmer {

    from {
        background-position: -250% 0;
    }

    to {
        background-position: 250% 0;
    }
}

body.gpp-lock-scroll {
    overflow: hidden !important;
}

@media(max-width:768px){

    .gpp-letter {
        font-size: clamp(28px, 12vw, 60px);
    }

    .gpp-progress {
        font-size: 15px;
    }
}