body {
    font-family: 'Heebo', system-ui, sans-serif;
}
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow-x: hidden;
    background: linear-gradient(135deg, #0a0f25 60%, #1e3c72 100%);
}

.loading-box {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    font-size: 1rem;
}
.spinner {
    width:55px;
    height: 55px;
    border: 5px solid rgba(59, 130, 246, 0.2);
    border-top-color: #3B82F6;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-bottom: 12px;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.stat-text {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    color: #93C5FD;
}
.glass-modal {
    position: absolute;
    background:rgba(0,0,0,.8);
    background:
            linear-gradient(
                    180deg,
                    rgba(3, 7, 18, 0.78),
                    rgba(3, 7, 18, 0.92)
            );
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background-image:
            radial-gradient(
                    rgba(59, 130, 246, 0.05) 1px,
                    transparent 1px
            );
    background-size: 22px 22px;
    z-index: 10;
    pointer-events: auto;
    transition: opacity 0.25s ease;
    z-index:-1;
}


