/* CSS Styles */
@import url("https://fonts.googleapis.com/css2?family=Exo+2:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Courier+New:wght@400&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #1a1a2e;
  color: #e6e6e6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-image: radial-gradient(
      circle at 25% 25%,
      #00fffb 0%,
      transparent 50%
    ),
    radial-gradient(circle at 75% 75%, #9d00ff 0%, transparent 50%);
}

.container {
  text-align: center;
  padding: 2rem;
  max-width: 800px;
  position: relative;
  z-index: 1;
}

h1 {
  font-size: 3.5rem;
  font-family: "Exo 2", sans-serif;
  font-weight: bold;
  margin: 0;
  padding: 0.5rem;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(200deg, #00fffb, #9d00ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: fadeIn 1s ease-in-out;
  animation-delay: 0.5s;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
}

h2 {
  font-size: 2rem;
  font-family: "Exo 2", sans-serif;
  font-weight: bold;
  margin: 0;
  padding: 0.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.logo {
  font-family: "Exo 2", sans-serif;
  width: 130px;
  height: 130px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, #00fffb, #9d00ff);
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 25px rgba(78, 84, 200, 0.5);
  transform: rotate(45deg);
}

.logo-inner {
  transform: rotate(-45deg);
  font-size: 2rem;
  font-weight: bold;
  color: white;
}

p {
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: #b8b8b8;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.countdown-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 10px;
  min-width: 80px;
  backdrop-filter: blur(5px);
}

.countdown-number {
  font-size: 2rem;
  font-weight: bold;
  color: #8f94fb;
  text-shadow: 0 0 10px rgba(143, 148, 251, 0.5);
  transition: all 0.3s ease;
  text-align: center;
  margin-bottom: 0.5rem;
  font-family: "Courier New", Courier, monospace;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.countdown-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #b8b8b8;
  margin-top: 0.5rem;
  text-align: center;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  opacity: 0.8;
  text-shadow: 0 0 5px rgba(143, 148, 251, 0.3);
  font-family: "Courier New", Courier, monospace;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.social-link {
  color: #e6e6e6;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: #8f94fb;
  transform: translateY(-3px);
}

.construction-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: pulse 2s infinite;
  color: #8f94fb;
  text-shadow: 0 0 10px rgba(143, 148, 251, 0.5);
  transform: rotate(15deg);
  display: inline-block;
  animation: pulse 1.5s infinite;
  animation-delay: 0.5s;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  animation-name: pulse;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.floating-pixel {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: rgba(143, 148, 251, 0.6);
  border-radius: 2px;
  animation: float 10s infinite linear;
  opacity: 0;
  box-shadow: 0 0 10px rgba(143, 148, 251, 0.5);
  z-index: 0;
}

@media (max-width: 600px) {
  h1 {
    font-size: 2.5rem;
  }

  .logo {
    width: 100px;
    height: 100px;
  }

  .logo-inner {
    font-size: 1.5rem;
  }

  p {
    font-size: 1rem;
  }

  .countdown-item {
    min-width: 60px;
  }

  .countdown-number {
    font-size: 1.5rem;
  }

  .social-link {
    font-size: 1.2rem;
  }
}

@media (max-width: 400px) {
  body {
    background-image: radial-gradient(
        circle at 25% 25%,
        rgba(20, 108, 148) 0%,
        transparent 50%
      ),
      radial-gradient(
        circle at 75% 75%,
        rgba(191, 64, 191, 0.2) 0%,
        transparent 50%
      );
  }

  h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 5px rgba(78, 84, 200, 0.3);
  }

  .logo {
    width: 90px;
    height: 90px;
    margin-bottom: 1rem;
    margin-top: 1rem;
  }

  .logo-inner {
    font-size: 1.2rem;
  }

  p {
    font-size: 1rem;
    font-weight: 550;
    line-height: 1.4;
    margin-bottom: 1rem;
    margin-top: 1rem;
  }

  .countdown-item {
    max-width: 80px;
    margin: auto;
    padding: 0.5rem;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
  }

  .countdown-number {
    font-size: 1.2rem;
    line-height: 1.2;
    padding: 0.5rem;
  }
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}
