* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  min-height: 100vh;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.045) 0,
      rgba(255,255,255,.045) 1px,
      transparent 1px,
      transparent 64px
    ),
    #030303;
  color: white;
    font-family: "Rajdhani", sans-serif;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero {
  position: relative;
  width: min(1100px, 90vw);
  text-align: center;
  transform: translateY(-80px);
  animation: fadeIn 1.8s ease forwards;
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 520px;
  background: radial-gradient(
    ellipse,
    rgba(255,255,255,.08) 0%,
    rgba(255,255,255,.025) 42%,
    transparent 72%
  );
  filter: blur(60px);
  z-index: -1;
}

.logo {
  width: min(1050px, 92vw);
  filter: drop-shadow(0 0 16px rgba(255,255,255,.22));
  animation: glow 4s ease-in-out infinite;
}

.inning {
  margin-top: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
    letter-spacing: 8px;
  font-size: 22px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
}

.inning span {
  width: 120px;
  height: 1px;
  background: rgba(255,255,255,.25);
}

.inning p {
  letter-spacing: 7px;
  color: rgba(255,255,255,.86);
  font-size: 15px;
}

.coming-soon {
  margin-top: 18px;
  letter-spacing: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.48);
}

.est {
  margin-top: 105px;
  letter-spacing: 5px;
  font-size: 13px;
  color: rgba(255,255,255,.32);
}

.soundtrack-btn {
  margin-top: 35px;

  background: none;
  border: none;

  color: rgba(255,255,255,.35);

  font-family: "Rajdhani", sans-serif;
  font-size: 13px;
  letter-spacing: 4px;

  cursor: pointer;

  transition: all .3s ease;
}

.soundtrack-btn:hover {
  color: rgba(255,255,255,.9);
  text-shadow: 0 0 10px rgba(255,255,255,.15);
}

@keyframes glow {
  0%,
  100% {
    filter:
      drop-shadow(0 0 12px rgba(255,255,255,.22))
      drop-shadow(0 0 26px rgba(255,255,255,.10));
  }

  50% {
    filter:
      drop-shadow(0 0 20px rgba(255,255,255,.38))
      drop-shadow(0 0 42px rgba(255,255,255,.16));
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-60px);
  }

  to {
    opacity: 1;
    transform: translateY(-80px);
  }
}