/* Global Styles */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
  color: #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  animation: fadeIn 1s ease-in-out;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Typography */
h1 {
  font-family: 'Courier New', Courier, monospace;
  font-size: 2.5rem;
  color: #ff0055;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

h2 {
  font-weight: normal;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #cccccc;
}

h3 {
  color: #ff0055;
  font-size: 1.5rem;
  margin-top: 3rem;
}

h4 {
  font-size: 1rem;
  color: #888;
  margin: 3rem 0 1rem;
}

p {
  max-width: 600px;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
  font-size: 1rem;
}

.intro {
  padding: 0 1rem;
}

/* Logo */
.logo {
  max-width: 180px;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

/* CTA Button */
.cta-button {
  background: #ff0055;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #e6004d;
}

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

.social-links a {
  color: #ff0055;
  text-decoration: none;
  font-size: 1rem;
}

.social-links a:hover {
  text-decoration: underline;
}

/* Featured Sections */
.featured {
  width: 90%;
  max-width: 960px;
  margin: 2rem auto;
  padding: 1rem 0;
  border-top: 1px solid #333;
}

.feature-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.feature-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(255, 0, 85, 0.4);
  transition: transform 0.3s ease;
}

.feature-img:hover {
  transform: scale(1.05);
}

.feature-content {
  max-width: 500px;
  text-align: left;
}

/* Footer */
footer.coming-soon {
  border-top: 1px solid #333;
  width: 100%;
  padding: 2rem 0;
  text-align: center;
}

/* Responsive */
@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }

  .feature-row {
    flex-direction: column;
    text-align: center;
  }

  .feature-content {
    text-align: center;
  }
}
