/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Nova Square", sans-serif;
  background: #000000;
  color: #ffffff;
  position: relative;
  min-height: 100vh;
}

/* Stars Background */
.stars-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  background-image: radial-gradient(1px 1px at 20px 30px, #fff, transparent),
    radial-gradient(1px 1px at 40px 70px, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(1px 1px at 90px 40px, #fff, transparent),
    radial-gradient(
      1px 1px at 130px 80px,
      rgba(255, 255, 255, 0.6),
      transparent
    ),
    radial-gradient(1px 1px at 160px 30px, #fff, transparent),
    radial-gradient(
      1px 1px at 200px 60px,
      rgba(255, 255, 255, 0.4),
      transparent
    ),
    radial-gradient(1px 1px at 250px 20px, #fff, transparent),
    radial-gradient(
      1px 1px at 300px 80px,
      rgba(255, 255, 255, 0.7),
      transparent
    );
  background-repeat: repeat;
  background-size: 400px 200px;
  animation: sparkle 8s linear infinite;
}

@keyframes sparkle {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-200px);
  }
}

/* Main Content */
.main-content {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.container {
  text-align: center;
  max-width: 1200px;
  width: 100%;
}

/* Logo Section */
.logo-section {
  margin-bottom: 4rem;
  position: relative;
}

.company-name {
  font-family: "Nova Square", sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
  animation: glow 3s ease-in-out infinite alternate;
}

.company-subtitle {
  font-family: "Nova Square", sans-serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.4em;
  margin-bottom: 2rem;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

@keyframes glow {
  from {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  }
  to {
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.6),
      0 0 40px rgba(255, 255, 255, 0.3);
  }
}

/* Coming Soon Section */
.coming-soon-section {
  animation: fadeInUp 1s ease-out 0.5s both;
}

.coming-soon-title {
  font-family: "Nova Square", sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.2em;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-content {
    padding: 1rem;
  }

  .logo-section {
    margin-bottom: 3rem;
  }

  .company-name {
    letter-spacing: 0.2em;
  }

  .company-subtitle {
    letter-spacing: 0.3em;
  }
}

@media (max-width: 480px) {
  .company-name {
    font-size: 3rem;
    letter-spacing: 0.1em;
  }

  .company-subtitle {
    font-size: 1.5rem;
    letter-spacing: 0.2em;
  }

  .coming-soon-title {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
  }
}

/* Loading Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

body {
  animation: fadeIn 1s ease-in;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

/* Falling Stars */
.falling-stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.falling-star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 6px #ffffff;
  animation: falling 4s linear infinite;
}

.falling-star:nth-child(1) {
  top: -10px;
  left: 20%;
  animation-delay: 0s;
  animation-duration: 3s;
}

.falling-star:nth-child(2) {
  top: -10px;
  left: 40%;
  animation-delay: 1s;
  animation-duration: 4s;
}

.falling-star:nth-child(3) {
  top: -10px;
  left: 60%;
  animation-delay: 2s;
  animation-duration: 3.5s;
}

.falling-star:nth-child(4) {
  top: -10px;
  left: 80%;
  animation-delay: 0.5s;
  animation-duration: 4.5s;
}

.falling-star:nth-child(5) {
  top: -10px;
  left: 10%;
  animation-delay: 1.5s;
  animation-duration: 3.8s;
}

@keyframes falling {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) translateX(50px);
    opacity: 0;
  }
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}
