@font-face {
    font-family: 'NexaBold';
    src: url('NexaBold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'NexaRegular';
    src: url('NexaRegular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #DFE0E4;
}

#app-container {
    width: 100%;
    margin: 0 auto;
    height: 100%;
}

#app-preloader {
    max-width: 400px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;

    padding: 16px;
    background-color: #FFFFFF;
    color: #000000;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    padding: 24px;
}

#app-preloader-title {
    font-size: 1.2em;
    font-family: 'NexaBold';
    margin-bottom: 8px;
    text-align: center;
}

#app-preloader-text {
    font-size: 1em;
    font-family: 'NexaRegular';
    margin-bottom: 8px;
    text-align: center;
}

#app-preloader-error-title {
    font-size: 1.2em;
    font-family: 'NexaBold';
    margin-bottom: 8px;
    text-align: center;
}

#app-preloader-error-text {
    font-size: 1em;
    font-family: 'NexaRegular';
    margin-bottom: 8px;
}

#app-preloader-progress {
    text-align: center;
}