body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(135deg, #1e1e1e, #2c2c2c);
  color: #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow-x: hidden;
}

header {
  text-align: center;
  padding: 2rem;
}

h1 {
  font-size: 3rem;
  letter-spacing: 0.1em;
  background: linear-gradient(to right, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pulse 3s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 1rem auto;
  text-align: center;
  color: #ccc;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.icon {
  width: 50px;
  height: 50px;
  background-color: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 0 5px #0072ff);
}

.icon:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 0 10px #00c6ff);
}

footer {
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #666;
}
