* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }
body {
  font-family: system-ui, -apple-system, sans-serif;
  background: #171a28;
  color: #e0e0e0;
  display: flex;
  justify-content: center;
}

.page-wrap {
  width: 100%;
  max-width: 430px;
  min-height: 100%;
  background: #171a28;
}

.hero-link { display: block; cursor: pointer; overflow: hidden; }
.hero-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
  background: #171a28;
  animation: hero-pulse 2.5s ease-in-out infinite;
}

@keyframes hero-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.content {
  padding: 2rem 1.5rem 4rem;
  max-width: 100%;
  margin: 0 auto;
}

.content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #ccc;
  margin: 1.5rem 0 0.5rem;
}

.table-wrap { overflow-x: auto; margin: 1rem 0 2rem; }
.table-wrap table { margin: 0; min-width: 380px; }

.content p {
  line-height: 1.65;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.content h1 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.content h2 {
  font-size: 1.35rem;
  margin: 2rem 0 1rem;
  color: #fff;
}

.content ul {
  margin: 0 0 1rem 1.25rem;
  line-height: 1.7;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}

.cta-btn {
  display: inline-block;
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: opacity 0.2s;
}

.cta-btn:hover { opacity: 0.9; }
.cta-btn.primary { background: #e85a1a; }
.cta-btn.secondary { background: #1e2235; border: 1px solid #2a3047; }

.content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 2rem;
  font-size: 0.95rem;
}

.content th,
.content td {
  padding: 10px 12px;
  text-align: left;
  border: 1px solid #2a3047;
}

.content th { background: #1e2235; color: #fff; }
.content tr:nth-child(even) { background: #1c1f32; }

.faq-item { margin-bottom: 1.25rem; }
.faq-item strong { display: block; margin-bottom: 0.35rem; }
