﻿html {
    scroll-behavior: smooth;
}

body, h1, h2, h3, h4, h5, h6 {
    font-family: "Consolas", "Roboto", "Courier New", "Menlo", "Monaco", "Liberation Mono", monospace;
    font-weight: 700;
    line-height: 1.2;
}

html, body {
    background-color: #131313;
    color: #b2b0bf;
}

@media (max-width: 768px) {
    h1, .mud-typography-h1 {
        font-size: 2rem;
    }

    h2, .mud-typography-h2 {
        font-size: 1.5rem;
    }

    h3, .mud-typography-h3 {
        font-size: 1.25rem;
    }

    h4, .mud-typography-h4 {
        font-size: 1.1rem;
    }

    h5, .mud-typography-h5 {
        font-size: 1rem;
    }

    h6, .mud-typography-h6 {
        font-size: 0.9rem;
    }

    body, .mud-typography-body1, .mud-typography-body2 {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .mud-button {
        font-size: 0.5rem;
        padding: 6px 12px;
        min-width: 0;
    }
}

#app-loading {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #131313;
    z-index: 9999;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #292838;
    border-top: 6px solid #ff185d;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

