:root{
  --accent:#65adbf;
  --accentLight:#d9e9ed;
  --text:#111827;
  --muted:#6b7280;
  --bg:#ffffff;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background:#ffffff;
  color:var(--text);
}

.page{
  max-width:560px;
  margin:0 auto;
  padding:28px 16px 56px;
}

.pageHeader{
  text-align:center;
  margin-bottom:24px;
}

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

.pageTitle{
  margin:0;
  font-size:44px;
  letter-spacing:-0.03em;
}

.pageSubtitle{
  margin:10px auto 0;
  max-width:460px;
  color:var(--muted);
  font-size:18px;
  line-height:1.45;
}

/* Section header matching Invite header */
.sectionHeader{
  text-align:center;
  margin:10px 0 18px;
}

.sectionHeaderTitle{
  margin:0;
  font-size:44px;
  letter-spacing:-0.03em;
}

.sectionHeaderSubtitle{
  margin:10px auto 0;
  max-width:460px;
  color:var(--muted);
  font-size:18px;
  line-height:1.45;
}

.card{
  background:var(--bg);
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 24px 70px rgba(0,0,0,.18);
  border:1px solid rgba(0,0,0,.06);
  margin-bottom:32px;
}

.hero img{
  display:block;
  width:100%;
  height:auto;
}

.content{
  padding:26px 22px 28px;
}

.sectionTitle{
  margin:0 0 14px;
  font-size:30px;
  letter-spacing:-0.02em;
}

.label{
  display:block;
  font-weight:800;
  margin:14px 0 12px;
  font-size:18px;
}

.labelRow{
  display:flex;
  align-items:center;
  gap:10px;
}

.icon{
  width:22px;
  height:22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:var(--text);
  opacity:.85;
}

.icon svg{
  width:22px;
  height:22px;
}

.select{
  width:100%;
  padding:14px;
  border-radius:12px;
  border:2px solid #cfd6dd;
  font-size:16px;
  background:#fff;
  margin-bottom:12px;
}

.select:focus{
  outline:none;
  border-color:var(--accent);
  box-shadow:0 0 0 4px rgba(101,173,191,.25);
}

.previewWrap{
  margin-top:14px;
}

.isHidden{
  display:none;
}

.previewLabel{
  font-size:13px;
  font-weight:800;
  font-style:italic;
  color:#2b6f80;
  margin:0 0 8px;
}

.preview{
  padding:16px;
  border-radius:12px;
  background:var(--accentLight);
  line-height:1.45;
}

.actions{
  margin-top:14px;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.btn{
  width:100%;
  padding:16px;
  border-radius:14px;
  font-size:18px;
  font-weight:900;
  cursor:pointer;
  text-align:center;
  text-decoration:none;
  border:2px solid transparent;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}

.btnPrimary{
  background:var(--accent);
  color:white;
  border-color:var(--accent);
}

.btnOutline{
  background:white;
  color:var(--accent);
  border-color:var(--accent);
}

.btnIcon{
  width:20px;
  height:20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.btnIcon svg{
  width:20px;
  height:20px;
}

.pageFooter{
  margin-top:8px;
  text-align:center;
  color:var(--muted);
  font-size:13px;
  letter-spacing:0.02em;
}

/* Social image thumbnail */
.socialThumbWrap{
  max-width:360px;
  margin:0 auto 14px;
}

.socialThumb{
  width:100%;
  display:block;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.06);
}

@media (max-width:420px){
  .content{padding:22px 16px;}
  .pageTitle{font-size:40px;}
  .sectionHeaderTitle{font-size:40px;}
  .sectionTitle{font-size:28px;}
}
