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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #0f172a;
  color: #f1f5f9;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

h1 {
  font-size: 36px;
  margin-bottom: 12px;
}

.subtitle {
  font-size: 20px;
  color: #94a3b8;
  margin-bottom: 40px;
}

.links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.link {
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 10px;
  background: #1e293b;
  color: #f8fafc;
  font-size: 16px;
  transition: all 0.2s ease;
}

.email {
  padding: 12px 20px;
  border-radius: 10px;
  background: #1e293b;
  color: #f8fafc;
  font-size: 16px;
}

.link:hover {
  background: #334155;
  transform: translateY(-2px);
}
