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

:root {
  --bg-1: #12091d;
  --bg-2: #231038;
  --bg-3: #09050f;
  --panel: rgba(34, 15, 49, 0.8);
  --panel-2: rgba(55, 23, 68, 0.88);
  --panel-soft: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 210, 130, 0.18);
  --line-strong: rgba(255, 210, 130, 0.32);
  --gold: #ffd67a;
  --gold-2: #ffb648;
  --rose: #ff8fc7;
  --text: #fff8ef;
  --muted: #f3dfcb;
  --soft: #bfaec6;
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.34);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 18px;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top center, rgba(255, 182, 72, 0.18), transparent 18%),
    radial-gradient(circle at 80% 0%, rgba(255, 143, 199, 0.12), transparent 24%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 45%, var(--bg-3) 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08) 0 1px, transparent 1.5px),
    radial-gradient(circle at 80% 35%, rgba(255,255,255,0.06) 0 1px, transparent 1.5px),
    radial-gradient(circle at 60% 80%, rgba(255,255,255,0.05) 0 1px, transparent 1.5px);
  background-size: 140px 140px, 180px 180px, 220px 220px;
  opacity: .65;
}

body::after {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), transparent 14%, transparent 86%, rgba(255,255,255,0.03));
}

.page-shell {
  width: 100%;
  max-width: 470px;
  margin: 0 auto;
  padding: 18px 14px 120px;
}

.hero-card,
.content-card,
.notice-box,
.mini-card {
  position: relative;
  overflow: hidden;
}

.hero-card::before,
.content-card::before,
.notice-box::before,
.mini-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent 34%, transparent 66%, rgba(255,214,122,0.08));
}

.hero-card {
  padding: 28px 22px 24px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(66, 28, 83, 0.95) 0%, rgba(28, 10, 44, 0.94) 100%);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  text-align: center;
}

.hero-topline {
  display: inline-flex;
  padding: 8px 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 214, 122, 0.26);
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card h1 {
  font-size: 2.1rem;
  line-height: 1.08;
  margin-bottom: 14px;
  font-weight: 900;
  letter-spacing: 0.2px;
  text-shadow: 0 0 20px rgba(255, 182, 72, 0.18);
}

.hero-copy {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.8;
  max-width: 360px;
  margin: 0 auto;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 22px;
}

.primary-chip,
.status-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  border-radius: 18px;
  text-align: center;
}

.primary-chip {
  text-decoration: none;
  font-weight: 900;
  color: #2e1200;
  border: 1px solid rgba(255, 214, 122, 0.3);
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-2) 100%);
  box-shadow: 0 14px 28px rgba(255, 182, 72, 0.2);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.primary-chip:hover,
.primary-chip:active,
.floating-btn:hover,
.floating-btn:active {
  transform: translateY(-1px);
  filter: saturate(1.05);
}

.status-chip {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
  color: #ffeac2;
  font-size: 0.85rem;
  font-weight: 700;
}

.highlight-strip {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.mini-card {
  padding: 18px 16px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(50, 20, 68, 0.9), rgba(23, 10, 33, 0.94));
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 14px 28px rgba(0,0,0,0.2);
}

.mini-title {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.mini-card strong {
  display: block;
  color: var(--text);
  font-size: 0.97rem;
  line-height: 1.6;
}

.notice-box {
  margin-top: 20px;
  padding: 18px 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 214, 122, 0.14), rgba(255, 214, 122, 0.06));
  border: 1px solid rgba(255, 214, 122, 0.2);
  color: #fff0cf;
  line-height: 1.8;
  font-size: 0.91rem;
}

.content-card {
  margin-top: 22px;
  padding: 24px 18px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, var(--panel) 0%, var(--panel-2) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.alt-card {
  background: linear-gradient(180deg, rgba(27, 12, 40, 0.95), rgba(47, 18, 58, 0.88));
}

.section-head {
  margin-bottom: 14px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.content-card h2 {
  font-size: 1.34rem;
  line-height: 1.4;
}

.content-card p,
.info-list {
  color: var(--muted);
  line-height: 1.9;
  font-size: 0.95rem;
}

.content-card p + p {
  margin-top: 10px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.feature-item {
  padding: 16px 14px;
  border-radius: 18px;
  background: var(--panel-soft);
  border: 1px solid rgba(255,255,255,0.08);
}

.feature-item h3 {
  color: #fff3d5;
  font-size: 0.98rem;
  line-height: 1.4;
  margin-bottom: 8px;
}

.feature-item p {
  color: #ead7c1;
  font-size: 0.87rem;
  line-height: 1.7;
  margin: 0;
}

.info-list {
  margin-top: 12px;
  padding-left: 20px;
}

.info-list li::marker {
  color: var(--gold);
}

.footer {
  margin-top: 24px;
  padding-bottom: 10px;
  text-align: center;
  color: var(--soft);
  font-size: 0.84rem;
  line-height: 1.75;
}

.floating-btn-wrap {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: calc(100% - 28px);
  max-width: 442px;
  z-index: 9999;
  pointer-events: none;
}

.floating-btn {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid rgba(255, 214, 122, 0.22);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffd67a 0%, #ffb648 100%);
  color: #321700;
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 0 16px 30px rgba(255, 182, 72, 0.22);
  cursor: pointer;
  pointer-events: auto;
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}

@media (max-width: 380px) {
  .page-shell {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-card {
    padding: 24px 18px 22px;
  }

  .hero-card h1 {
    font-size: 1.82rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .content-card {
    padding: 22px 16px;
  }
}
