body {
  background: linear-gradient(rgba(11, 18, 32, 0.8), rgba(11, 18, 32, 0.9)),
    url("../images/home_background.png") center/cover no-repeat fixed;
}

.neural-network {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  opacity: 0.3;
}

.neuron {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #22d3ee;
  border-radius: 50%;
  box-shadow: 0 0 10px #22d3ee;
  animation: pulse 2s infinite alternate;
}

.connection {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, #22d3ee, transparent);
  animation: flow 3s infinite linear;
  opacity: 0.6;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.5);
    opacity: 1;
  }
}

@keyframes flow {
  0% {
    transform: scaleX(0);
  }
  50% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}

.slideshow-container {
  position: relative;
  max-width: 100%;
  margin: auto;
  background: rgba(17, 24, 39, 0.4);
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  overflow: hidden;
}

.slides {
  display: none;
  padding: 2rem;
  text-align: center;
  min-height: 300px;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slides.active {
  display: flex;
  opacity: 1;
}

.slide-content {
  max-width: 600px;
  margin: 0 auto;
}

.dots-container {
  text-align: center;
  padding: 20px;
  background: rgba(17, 24, 39, 0.6);
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 5px;
  background-color: var(--muted);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.dot.active,
.dot:hover {
  background-color: var(--accent);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
}

.hero-section {
  text-align: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--panel-border);
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 12px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
}

.stat-label {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text);
  font-size: 2rem;
  font-weight: 600;
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
  text-align: center;
}

.feature-description {
  color: var(--muted);
  line-height: 1.6;
}

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

