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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.button {
  padding: 20px 60px;
  background: #3b82f6;
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
  cursor: pointer;
  border: none;
}

.button:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(59, 130, 246, 0.5);
}

.button:active {
  transform: translateY(0);
}

.footer {
  position: fixed;
  bottom: 20px;
  font-size: 13px;
  color: #94a3b8;
}

.footer a {
  color: #3b82f6;
  text-decoration: none;
  margin: 0 10px;
}

.footer a:hover {
  text-decoration: underline;
}

.content {
  max-width: 800px;
  text-align: center;
  padding: 40px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.content h1 {
  font-size: 32px;
  color: #1e293b;
  margin-bottom: 16px;
}

.content p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
}
