body {
  margin: 0;
  font-family: "Segoe UI", Helvetica, Arial, sans-serif;
  background: linear-gradient(135deg, #0d0d0d, #1c1c1c);
  color: #f2f2f2;
  text-align: center;
  padding: 40px;
}

header {
  padding: 40px 0;
}

h1 {
  font-size: 3rem;
  margin: 0;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-top: 15px;
  color: #ccc;
}

.content {
  margin-top: 60px;
}

.content p {
  font-size: 1.1rem;
  color: #ddd;
  line-height: 1.6;
}

.cta {
  margin-top: 40px;
}

a.button {
  background: linear-gradient(90deg, #0072ff, #00c6ff);
  color: white;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0px 4px 15px rgba(0, 114, 255, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.button:hover {
  transform: scale(1.05);
  box-shadow: 0px 6px 20px rgba(0, 114, 255, 0.7);
}

footer {
  margin-top: 100px;
  font-size: 0.9rem;
  color: #888;
}
