html {
    font-family: "Oxanium", "Space Grotesk", sans-serif;
}

.loading-app-container {
    height: 100%;
    width: 100%;
    display: flex;
    position: fixed;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 20% 20%, rgba(0, 244, 255, 0.18) 0%, rgba(0, 0, 0, 0) 36%),
        radial-gradient(circle at 82% 14%, rgba(58, 255, 180, 0.14) 0%, rgba(0, 0, 0, 0) 40%),
        linear-gradient(140deg, #020a16 0%, #03162b 55%, #0b1024 100%);
}

.ant-result {
    padding: 48px 32px;
    border-radius: 18px;
    border: 1px solid rgba(92, 240, 255, 0.35);
    background: rgba(3, 22, 45, 0.58);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35), 0 0 40px rgba(40, 235, 255, 0.2);
    backdrop-filter: blur(10px);
}

.ant-result-icon {
    margin-bottom: 24px;
    text-align: center;
}

.ant-result-title {
    color: #d5f8ff;
    font-size: 24px;
    line-height: 1.8;
    text-align: center;
}

.ant-result-extra {
    margin: 24px 0 0;
    text-align: center;
}


.anticon-spin,.anticon-spin:before {
    animation: loadingCircle 1s linear infinite;
    display: inline-block
}

.intel-powered-by {
    margin-top: 16px;
    text-align: center;
    color: #9feeff;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

@keyframes loadingCircle {
    to {
        transform: rotate(1turn)
    }
}
