* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  background: #232323;
  color: #f5f5f5;
}

body {
  min-height: 100vh;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 48px 24px 40px;
  text-align: center;
}

.logo {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  margin: 0 auto 40px;
}

h1 {
  margin: 0 0 24px;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
}

.subtext {
  margin: 0 auto 40px;
  max-width: 460px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #bdbdbd;
}

.cta-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  padding: 16px 24px;
  border-radius: 24px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: 0.96;
}

.btn-primary {
  background: #f0c419;
  color: #111111;
}

.btn-secondary {
  border: 2px solid rgba(255, 255, 255, 0.18);
  color: #f5f5f5;
  background: transparent;
}

.footer {
  padding: 28px 16px 36px;
  text-align: center;
  color: #d0d0d0;
  font-size: 0.95rem;
}