#scm-preloader {
  position: fixed;
  inset: 0;
  background-color: #0A1B3D;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeOut 1s ease 2.5s forwards;
}

.scm-logo-container {
  text-align: center;
  color: white;
  opacity: 1;
}

.scm-logo {
  width: 180px;
  height: auto;
/*  margin: 2rem auto; */
  margin: 1rem auto;
  animation:
    logoFadeIn 0.8s ease-out 0.3s forwards,
    zoomIn 2s ease-out 0.3s forwards;
  opacity: 0;
}

@keyframes zoomIn {
  from {
    transform: scale(0.95);
  }
  to {
    transform: scale(1);
  }
}

@media (min-width: 641px) {
  .scm-logo {
    width: 240px;
    margin: 3rem auto;
  }
}

@media (min-width: 1025px) {
  .scm-logo {
    width: 320px;
    margin: 4rem auto;
  }
}

.scm-line {
  height: 2px;
  width: 0%;
  margin: 0.5rem auto;
  background-color: white;
}

.top-line {
  animation: lineExpand 1s ease-out 0.2s forwards;
}

.bottom-line {
  animation: lineExpand 1s ease-out 0.8s forwards;
}

@keyframes lineExpand {
  to { width: 80%; }
}

@keyframes logoFadeIn {
  to { opacity: 1; }
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

.scm-slogan {
  margin-bottom: 2rem;
  color: white;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-shadow: 0 0 6px rgba(255,255,255,0.3);
  font-size: clamp(1.25rem, 6vw, 2.5rem);
  opacity: 0;
  transform: scale(0.6);
  animation: sloganZoom 1.2s ease-out forwards;
  animation-delay: 1.0s;
}

@keyframes sloganZoom {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  60% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
