:root {
  --toolbar-padding: 20px;
  --toolbar-spacing: 20px;
  --color-background: #080A0C;
  --color-text-primary: #FFFFFF;
  --color-text-secondary: rgba(255, 255, 255, 0.50);
  --info-spacing: 15px;
  --min-width: 350px;
  --min-thumbnail-height: 350px;
  --bottom-wrapper-height: 90px;
}

body {
  margin: 0;
  font-family: "Avenir", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: var(--color-background);
  color: #e6eef0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;
  height: auto;
  min-width: var(--min-width);
  overflow-x: hidden;
  overflow-y: auto;
}

.loading-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    position: relative;
}

.logo {
    width: 220px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.progress-bar {
    width: 250px;
    height: 15px;
    border: 2px solid #fff;
    position: absolute;
    top: calc(50% + 150px);
    left: 50%;
    transform: translateX(-50%);
    border-radius: 9999px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.progress-fill {
    height: 88%;
    width: 0%;
    background: #fff;
    border-radius: 9999px;
    transition: width 0.2s ease;
    margin-left: 1px;
    margin-right: 1px;
}

.animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.lottie-container {
    width: 250px;
    height: 250px;
    position: absolute;
    top: calc(50% + 150px);
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
}

#lottie-animation {
    width: 100%;
    height: 100%;
    scale: 0.4;
}