/* Modern dark landing page styles inspired by Anima */
:root {
  --primary: #5E77FF;
  --primary-dark: #4A61E4;
  --secondary: #FF7262;
  --text-dark: #FFFFFF;
  --text-light: #AAAAAA;
  --background: #0A0A0A;
  --background-alt: #111111;
  --background-card: #1A1A1A;
  --border: #333333;
  --success: #4CAF50;
  --radius: 8px;
  --gradient: linear-gradient(90deg, #5E77FF, #8A5FFF);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header styles */
.header {
  padding: 20px 0;
  background-color: var(--background);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 100px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--primary);
}

.primary-button {
  background: var(--gradient);
  color: white !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all 0.2s;
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(94, 119, 255, 0.3);
}

/* Hero section styles */
.hero {
  padding: 80px 0;
  background: var(--background);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(94, 119, 255, 0.05);
  top: -300px;
  left: -200px;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(138, 95, 255, 0.05);
  bottom: -200px;
  right: -100px;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-content {
  flex: 1;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-dark);
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 30px;
  max-width: 600px;
}

.tech-stack-icons {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-label {
  font-weight: 500;
  color: var(--text-light);
  margin-right: 10px;
}

.tech-icons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.tech-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--background-card);
  border: 1px solid var(--border);
  transition: all 0.2s;
  cursor: pointer;
}

.tech-icon:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: 0 5px 15px rgba(94, 119, 255, 0.15);
}

.tech-icon svg {
  width: 18px;
  height: 18px;
  color: var(--text-light);
}

.tech-icon:hover svg {
  color: var(--primary);
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.button {
  text-decoration: none;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all 0.2s;
  display: inline-block;
}

.secondary-button {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.secondary-button:hover {
  background-color: rgba(24, 160, 251, 0.1);
}

.hero-image {
  flex: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Features section styles */
.features {
  padding: 80px 0;
  background-color: var(--background-alt);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(94, 119, 255, 0.03);
  top: 50%;
  right: -250px;
  z-index: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: var(--background-card);
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(94, 119, 255, 0.1);
  border-color: var(--primary);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(94, 119, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  color: var(--primary);
  width: 30px;
  height: 30px;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* How to use section styles */
.how-to-use {
  padding: 80px 0;
  background-color: var(--background);
  position: relative;
  overflow: hidden;
}

.how-to-use::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(138, 95, 255, 0.03);
  bottom: -250px;
  left: -150px;
  z-index: 0;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.step-content p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Footer styles */
.footer {
  background-color: var(--background-alt);
  color: var(--text-dark);
  padding: 60px 0 20px;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-logo {
  max-width: 300px;
}

.footer-logo img {
  height: 40px;
  width: auto;
  margin-bottom: 15px;
}

.footer-logo p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-links-group h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: white;
}

.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-group a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links-group a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Additional dark theme styles */
.secondary-button {
  border-color: var(--primary);
}

.step {
  background-color: var(--background-card);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
}

/* Responsive styles */
@media (max-width: 768px) {
  .hero .container {
    flex-direction: column;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .tech-stack-icons {
    justify-content: center;
  }
  
  .tech-icons {
    justify-content: center;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-links {
    gap: 30px;
  }
  
  .navbar {
    flex-direction: column;
    gap: 20px;
  }
}
