@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap');

body {
  margin: 0;
}

html {
  overflow-x: hidden;
  overflow-y: scroll;
}

.loading {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #16202E; 
  background: -webkit-linear-gradient(to left, #16202E, #0D1117);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.loading-text {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 6vw, 3.6rem);
  font-weight: bolder;
  text-align: center;
  -webkit-text-stroke: #fff 2px;
  letter-spacing: 10px;
  color: transparent;
  position: relative;
  text-shadow: 0px 0px 16px #CECECE;
  text-transform: uppercase;
  animation: flicker 1.8s infinite ease-in-out;
}

.sub-text {
  font-size: clamp(1rem, 3vw, 1.2rem);
  text-shadow: 0px 0px 16px #CECECE;
  color: #ffffffce;
  line-height: 40px;
  letter-spacing: 10px;
}

@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    opacity: 1;
    text-shadow: 0 0 16px #ccc, 0 0 12px #eee;
  }

  20%, 22%, 24%, 55% {
    opacity: 0.3;
    text-shadow: 0 0 4px #888;
  }

  70% {
    opacity: 0.7;
    text-shadow: 0 0 8px #aaa;
  }
}
