body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #020617;
  color: #e5e7eb;
}

}
.logo {
  width: 180px;
  max-width: 90%;
  margin-bottom: 20px;
}

header {
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.85)),
    url("background.jpg") center / cover no-repeat;
  padding: 80px 20px;
}


header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #9ca3af;
}

.btn {
  padding: 15px 30px;
  background: #dc2626;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 60px 20px;
}

.card {
  background: #111827;
  padding: 25px;
  border-radius: 8px;
}

.servers {
  padding: 60px 20px;
}

.server {
  background: #020617;
  margin: 20px auto;
  padding: 25px;
  max-width: 600px;
  border-radius: 8px;
}

code {
  background: #111827;
  padding: 6px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 10px;
}

footer {
  padding: 30px;
  background: #020617;
  color: #6b7280;
}
/* Logo Glow Animation */
.logo {
  width: 180px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 15px rgba(255, 200, 120, 0.4));
  animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
  0% {
    filter: drop-shadow(0 0 10px rgba(255, 180, 80, 0.3));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 35px rgba(255, 200, 120, 0.8));
    transform: scale(1.03);
  }
  100% {
    filter: drop-shadow(0 0 10px rgba(255, 180, 80, 0.3));
    transform: scale(1);
  }
}
.card {
  background: #020617;
  border-radius: 10px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}
