/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000; /* Pure black background */
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
}

/* Typography */
.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.subtitle {
  font-size: 1.1rem;
  color: #a1a1a1; /* Muted grey for the subtitle */
  margin-bottom: 30px;
}

/* Navigation Links */
.social-links {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.social-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s ease;
}

.social-links a i {
  font-size: 1.1rem;
}

.social-links a:hover {
  opacity: 0.7; /* Gentle fade on hover */
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
  .social-links {
    flex-direction: column;
    gap: 15px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
}