* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background: #f5f7fb;
    color: #1f2937;
    min-height: 100vh;
    overflow: hidden;
}

.splash-container {
    width: 100%;
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 30px;
    text-align: center;

    position: relative;
}

/* =========================
   LOGO
========================= */

.logo-wrapper {
    margin-bottom: 24px;

    animation: logoAppear 0.8s ease forwards;
}

.logo-icon {
    width: 105px;
    height: 105px;

    border-radius: 28px;

    background: linear-gradient(
        145deg,
        #1677ff,
        #0d5fd7
    );

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0 15px 35px rgba(22, 119, 255, 0.25);

    position: relative;
}

.logo-icon::after {
    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    border-radius: 50%;

    border: 1px solid rgba(22, 119, 255, 0.12);

    animation: pulse 2s infinite;
}

.logo-icon span {
    font-size: 48px;
}

/* =========================
   TITLE
========================= */

.app-title {
    font-size: 26px;
    font-weight: 700;

    color: #172033;

    letter-spacing: -0.5px;

    animation: fadeUp 0.8s ease 0.2s both;
}

.app-subtitle {
    margin-top: 8px;

    max-width: 500px;

    font-size: 13px;
    font-weight: 400;

    color: #7b8494;

    animation: fadeUp 0.8s ease 0.35s both;
}

/* =========================
   LOADING
========================= */

.loading-area {
    width: min(300px, 80%);

    margin-top: 40px;

    animation: fadeUp 0.8s ease 0.5s both;
}

.loading-bar {
    width: 100%;
    height: 5px;

    background: #e5eaf2;

    border-radius: 10px;

    overflow: hidden;
}

.loading-progress {
    width: 0%;
    height: 100%;

    background: linear-gradient(
        90deg,
        #1677ff,
        #4b9aff
    );

    border-radius: 10px;

    animation: loading 5s linear forwards;
}

.loading-text {
    margin-top: 12px;

    font-size: 11px;
    color: #98a1b2;
}

/* =========================
   FOOTER
========================= */

.footer {
    position: absolute;

    bottom: 25px;

    font-size: 10px;

    color: #a3abba;
}

/* =========================
   ANIMATION
========================= */

@keyframes loading {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

@keyframes logoAppear {
    from {
        opacity: 0;
        transform: scale(0.7);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }

    70% {
        transform: scale(1.15);
        opacity: 0;
    }

    100% {
        transform: scale(1.15);
        opacity: 0;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .logo-icon {
        width: 90px;
        height: 90px;
        border-radius: 24px;
    }

    .logo-icon span {
        font-size: 40px;
    }

    .app-title {
        font-size: 21px;
    }

    .app-subtitle {
        font-size: 11px;
        max-width: 300px;
    }

    .loading-area {
        margin-top: 32px;
    }
}