body {
  background-color: black;
  color: white;
  font-family: Arial, sans-serif;
  margin: 0;
}

.navbar {
  background-color: #222;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: white;
}

/* Center nav links except Login */
.nav-links {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 15px;
}

/* Gradient buttons for Home, About, Contact */
.nav-links a {
  color: white;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: bold;
  background: linear-gradient(135deg, #ff4d4d, #ff9900, #00ccff);
  background-size: 200% auto;
  transition: all 0.4s ease;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

.nav-links a:hover {
  background-position: right center;
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

/* Login aligned to right and styled differently */
.navbar .login-link {
  margin-left: auto;
  color: white;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: bold;
  background: linear-gradient(135deg,#ff9900, #007bff, #6610f2);
  background-size: 200% auto;
  transition: all 0.4s ease;
  box-shadow: 0 0 8px rgba(102, 16, 242, 0.3);
}

.navbar .login-link:hover {
  background-position: right center;
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(102, 16, 242, 0.5);
}

.content {
  text-align: center;
  margin-top: 100px;
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 10px rgba(102, 16, 242, 0.3); }
  50% { transform: scale(1.05); box-shadow: 0 0 20px rgba(102, 16, 242, 0.6); }
  100% { transform: scale(1); box-shadow: 0 0 10px rgba(102, 16, 242, 0.3); }
}

.navbar .login-link {
  margin-left: auto;
  color: white;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: bold;
  background: linear-gradient(135deg,#ff9900, #007bff, #6610f2);
  background-size: 200% auto;
  transition: all 0.4s ease;
  animation: pulse 2.5s infinite;
}

.navbar .login-link:hover {
  background-position: right center;
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(102, 16, 242, 0.7);
}
