.server-features {
  padding: 5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.server-features h2 {
  font-size: 2.5rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 0.6rem;
  text-shadow: 0 0 12px rgba(124,58,237,0.3);
  animation: fadeInUp 0.8s ease;
}

.features-sub {
  text-align: center;
  color: var(--light-400);
  max-width: 620px;
  margin: 0 auto 3rem;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.feature-box {
  background: var(--dark-300);
  border-radius: var(--border-radius-lg);
  padding: 2.2rem 1.8rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(124,58,237,0.15);
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at center, rgba(124,58,237,0.10), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.feature-box:hover::before { opacity: 1; }
.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  border-color: var(--primary);
}

.feature-box .icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  color: var(--primary);
}
.feature-box h3 { color: var(--light); font-size: 1.4rem; margin-bottom: 0.8rem; }
.feature-box p { color: var(--light-400); opacity: 0.95; }

@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-box { padding: 1.6rem; }
}
