
body {
    margin: 0;
    padding: 0;
}
/* Main Screen Design */
.main-screen {
  position: relative;
  padding: 0px;
  margin: 0px;
  width: 100%;
  height: 100vh;
  background: linear-gradient(321.49deg, #001C33 11.39%, #03090F 85.9%);
  overflow: hidden;
}

/* Stars */
.stars {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
}

/* Gradient overlay 1 */
.gradient-overlay-1 {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
}

/* Gradient overlay 2 - New branding with glow animation */
.gradient-overlay-2 {
  position: absolute;
  width: 150%;
  /* height: 100%; */
  right: -25%;
  bottom: 0px;
  background: radial-gradient(60% 80% at 85% 120%, #4756A0 0%, rgba(15, 0, 64, 0) 70%);
  animation: glowPulse 8s ease-in-out infinite;
}

@keyframes glowPulse {
  0% {
    transform: translateX(0);
    opacity: 0.8;
  }
  50% {
    transform: translateX(-5%);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 0.8;
  }
}

/* Content */
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 66px;
  position: absolute;
  width: 100%;
}

/* Countdown number */
.countdown-number {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  color: #00F0FF;
}

/* Logo */
.logo {
  /* width: 206px;
  height: 228px; */
  flex: none;
  order: 1;
  flex-grow: 0;
  margin-top: 10%;
  img {
    width: 150px;
  }
}

/* Vector */
/* .vector {
  position: absolute;
  width: 204.35px;
  height: 226.46px;
  left: 0.82px;
  top: 0.81px;
  background: linear-gradient(0deg, rgba(224, 165, 0, 0.5), rgba(224, 165, 0, 0.5)), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), conic-gradient(from 0deg at 50% 50%, #D8A900 0deg, #F8D03F 73.44deg, #FFD84C 149.4deg, #D8A900 307.44deg, #FFEDAF 343.44deg, #D8A900 360deg);
  box-shadow: 0px 1.29507px 2.43473px #090C27;
} */

/* Frame 67 */
.frame-67 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
  gap: 0;
  flex: none;
  order: 2;
  flex-grow: 0;
  width: 680px;
}

.announcement {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0.1em;
  color: #FFFFFF;
}

.announcement a {
  color: #00F0FF;
  text-decoration: none;
}

.announcement a:hover {
  text-decoration: underline;
}
