html,
body {
  margin: 0;
}

body.ra-intro-active {
  overflow: hidden !important;
}

#ra-intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  overflow: hidden;
  background: #031927;
  opacity: 1;
  visibility: visible;
  transition: opacity 460ms ease, visibility 460ms ease;
}

#ra-intro-overlay.is-leaving {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#ra-intro-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #031927;
  pointer-events: none;
}

#ra-intro-progress {
  position: absolute;
  left: 50%;
  bottom: clamp(30px, 7vh, 76px);
  width: min(420px, calc(100% - 44px));
  transform: translateX(-50%);
  color: rgba(234, 247, 246, 0.96);
  font-family: Inter, Arial, sans-serif;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

#ra-intro-progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#ra-intro-progress-track {
  height: 4px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(216, 255, 248, 0.22);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

#ra-intro-progress-fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #92e7dd 0%, #e9ffd7 100%);
  box-shadow: 0 0 16px rgba(173, 255, 238, 0.7);
  transition: width 100ms linear;
}

@media (max-width: 560px) {
  #ra-intro-progress-label {
    font-size: 11px;
  }
}