* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'Manrope';
  src: url('/fonts/Manrope-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Аналогично для других начертаний: */

@font-face {
  font-family: 'Manrope';
  src: url('/fonts/Manrope-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

#loading-screen {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
  z-index: 9999;
  user-select: none;
}

#lottie-container {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.progress-container {
  width: 300px;
  margin-bottom: 32px;
  position: fixed;
  bottom: 32px;
  text-align: center;
  border-radius: 16px;
  font-family: sans-serif;
  color: #27272A;
  user-select: none;
}

.progress-header {
  margin-bottom: 8px;
  color: var(--Text-text-tertiary, #A1A1AA);
  text-align: center;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.3px;
}

.progress-bar-wrapper {
  width: 100%;
  height: 60px;
  border-radius: 16px;
  padding: 4px;
}

.progress-bar {
  height: 100%;
  background-color: rgba(139, 92, 246, 0.16);
  border-radius: 12px;
  width: 0%;
  transition: width 0.3s ease;
  display: flex;
  align-items: end;
  color: rgba(139, 92, 246, 0.5);
  font-family: 'Manrope', sans-serif;
  font-weight: bold;
  font-size: 24px;
  padding: 0 8px 4px 8px;
  box-sizing: border-box;
}

.progress-text {
  color: var(--palette-alpha-brand-brand-50, rgba(139, 92, 246, 0.50));
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -0.3px;
  white-space: nowrap;
}


#progress-bar {
  width: 100%;
  height: 10px;
  background: #8B5CF6;
  border-radius: 5px;
  overflow: hidden;
}

#flutter-container {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out;
}