* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #eee;
  font-family: "Georgia", "Times New Roman", serif;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.construction-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 165, 0, 0.1);
  border: 2px solid #ffa500;
  border-radius: 25px;
  padding: 0.5rem 1.5rem;
  font-weight: bold;
  animation: pulse 2s infinite;
}

.construction-icon {
  font-size: 1.2rem;
}

.construction-text {
  color: #ffa500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
}

.hero-section {
  text-align: center;
  margin-bottom: 2rem;
}

.name {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: bold;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #49ffac, #ffffff, #49ffac);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient 3s ease infinite;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.name:hover {
  transform: scale(1.05);
}

@keyframes gradient {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.title {
  font-size: clamp(1.2rem, 4vw, 2rem);
  color: #49ffac;
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 2px;
}

.status-message {
  margin: 2rem 0;
}

.description {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.coming-soon {
  margin: 3rem 0;
  background: rgba(73, 255, 172, 0.05);
  border-left: 4px solid #49ffac;
  padding: 2rem;
  border-radius: 8px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.coming-soon h3 {
  color: #49ffac;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.features-list {
  list-style: none;
  text-align: left;
}

.features-list li {
  padding: 0.5rem 0;
  font-size: 1.1rem;
  opacity: 0.9;
}

.connect-section {
  text-align: center;
  padding: 2rem 0;
}

.connect-title {
  font-size: 2rem;
  color: #49ffac;
  margin-bottom: 1rem;
}

.connect-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.social-link {
  display: flex;
  height: 3rem;
  align-items: center;
  gap: 0.5rem;
  color: #eee;
  text-decoration: none;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.social-link:hover {
  transform: translateY(-3px);
  border-color: #49ffac;
  background: rgba(73, 255, 172, 0.1);
  box-shadow: 0 10px 25px rgba(73, 255, 172, 0.2);
}

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

.footer {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
}

.footer-text {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.progress-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.progress-bar {
  width: 200px;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 60%;
  background: linear-gradient(90deg, #49ffac, #00ff88);
  border-radius: 3px;
  animation: progress 3s ease-in-out infinite;
}

@keyframes progress {
  0%,
  100% {
    width: 50%;
  }
  50% {
    width: 70%;
  }
}

.progress-text {
  font-size: 0.9rem;
  color: #49ffac;
  font-weight: bold;
}

.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #49ffac;
  transition: all 0.1s ease;
  transform: translate(-50%, -50%);
  pointer-events: none;
  mix-blend-mode: difference;
  z-index: 9999;
  opacity: 0.8;
}

.cursor.hovered {
  width: 60px;
  height: 60px;
  background-color: rgba(73, 255, 172, 0.3);
  border: 2px solid #49ffac;
  opacity: 1;
}

@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }

  .social-links {
    flex-direction: column;
    align-items: center;
  }

  .social-link {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .coming-soon {
    padding: 1.5rem;
    margin: 2rem 0;
  }

  .construction-badge {
    padding: 0.4rem 1rem;
  }

  .construction-text {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .features-list li {
    font-size: 1rem;
  }

  .description {
    font-size: 1rem;
  }

  .progress-bar {
    width: 150px;
  }
}
