/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  min-height: 100vh;
  background: #0e0f12;
  color: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* LAYOUT */
.container {
  width: 100%;
  max-width: 420px;
  padding: 20px;
  text-align: center;
}

.card {
  background: #16181d;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

/* TESTI */
h1 {
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 12px;
}

.subtitle {
  font-size: 15px;
  margin-bottom: 12px;
  color: #ffffff;
}

.text {
  font-size: 14px;
  color: #9ca3af;
  margin-bottom: 24px;
  line-height: 1.5;
}

/* BOTTONE */
.btn {
  display: inline-block;
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #FFD700, #c9a600);
  color: #0e0f12;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

/* FOOTER */
.footer {
  margin-top: 18px;
  font-size: 12px;
  color: #6b7280;
}
