* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0a0a0a;
  color: #f0f0f0;
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem 1rem;
}

.container {
  text-align: center;
  max-width: 600px;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
}

a {
  color: #00d9ff;
  text-decoration: none;
  border-bottom: 2px solid #00d9ff;
  transition: all 0.3s ease;
}

a:hover {
  color: #a78bfa;
  border-bottom-color: #a78bfa;
}
