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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.content {
  text-align: center;
  color: white;
  animation: fadeIn 1.5s ease-in;
}

.title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.coming-soon {
  margin-bottom: 2rem;
}

.text {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.5) 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shine 3s ease-in-out infinite;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes socialFadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes shine {
  from {
    background-position: 200% center;
  }

  to {
    background-position: 0% center;
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .title {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }

  .text {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .text {
    font-size: 1.5rem;
  }
}

/* Social icon styles */
.social {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 6px;
  pointer-events: auto;
  animation: socialFadeIn 1.5s ease-in;
}

.social a {
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  transition: background 180ms ease, transform 120ms ease;
  text-decoration: none;
}

.social a:hover,
.social a:focus {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-3px);
}

.social svg {
  width: 20px;
  height: 20px;
  display: block;
}

@media (max-width: 480px) {
  .social {
    bottom: calc(max(12px, env(safe-area-inset-bottom)));
  }

  .social a {
    width: 40px;
    height: 40px;
  }
}