/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background: linear-gradient(135deg, #121212 0%, #1a1a2e 100%);
  color: #e0e0e0;
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header styles */
.header {
  text-align: center;
  margin-bottom: 3rem;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.header-logo {
  width: 80px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.15));
  transition: transform 0.3s ease;
}

.header-logo:hover {
  transform: scale(1.05);
}

.header-text {
  text-align: left;
}

.logo {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
  letter-spacing: 1px;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.tagline {
  font-size: 1.1rem;
  color: #aaaaaa;
  margin-bottom: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

/* Main content */
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  animation: fadeIn 0.6s ease forwards;
}

.hero-section {
  background: #1e1e1e;
  border-radius: 12px;
  padding: 3rem;
  width: 100%;
  max-width: 800px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 5px solid #f59e0b;
  margin-bottom: 3rem;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  right: 0;
  height: 5px;
  background: #f59e0b;
  border-radius: 5px 5px 0 0;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.6);
}

.hero-icon {
  font-size: 3rem;
  color: #f59e0b;
  margin-bottom: 1.5rem;
}

.hero-logo {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
  transition: transform 0.3s ease;
}

.hero-logo:hover {
  transform: scale(1.05);
}

.hero-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

.hero-description {
  color: #b0b0b0;
  margin-bottom: 2rem;
  line-height: 1.5;
  font-size: 1.1rem;
}

/* Features section */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.feature {
  background: #1e1e1e;
  border-radius: 12px;
  padding: 1.5rem;
  width: 100%;
  max-width: 250px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.feature-description {
  color: #b0b0b0;
  font-size: 0.9rem;
}

/* CTA button */
.cta-button {
  background: #2d2d3a;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  text-decoration: none;
  margin-top: 1rem;
}

.cta-button:hover {
  background: #f59e0b;
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.5);
}

/* Social links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #2d2d3a;
  color: #ffffff;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #f59e0b;
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(245, 158, 11, 0.3);
}

/* Footer styles */
.footer {
  text-align: center;
  color: #777;
  padding-top: 2rem;
  border-top: 1px solid #333;
  margin-top: auto;
}

.footer-link {
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #f59e0b;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 1rem;
  }

  .header-text {
    text-align: center;
  }

  .header-logo {
    width: 70px;
  }

  .logo {
    font-size: 2rem;
  }

  .hero-section {
    padding: 2rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .features {
    flex-direction: column;
    align-items: center;
  }

  .feature {
    max-width: 100%;
  }

  .container {
    padding: 1.5rem;
  }
}
