:root{
  --bg: #0b0f14;
  --card: #111826;
  --text: #e8eef6;
  --muted: #a9b4c2;
  --green: #16a34a;
  --red: #dc2626;
  --border: rgba(255,255,255,0.08);
}

*{ box-sizing: border-box; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 20% 10%, rgba(22,163,74,0.15), transparent 50%),
              radial-gradient(1200px 600px at 80% 10%, rgba(220,38,38,0.12), transparent 50%),
              var(--bg);
  color: var(--text);
}

.page{
  max-width: 720px;
  margin: 0 auto;
  padding: 18px 14px 28px;
}

.header{
  margin-bottom: 14px;
}

.brand{
  display:flex;
  gap: 12px;
  align-items:center;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
}

.brandtext{ min-width: 0; }
.title, .subtitle{
  overflow-wrap: anywhere;
  word-break: break-word;
}


.logo{
  width: 56px;
  height: 56px;
  border-radius: 14px;
  border: 1px dashed rgba(255,255,255,0.25);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow: hidden;              /* IMPORTANT: prevents image overflow */
  flex: 0 0 56px;                /* IMPORTANT: stops flex resizing */
}

.logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;           /* keeps full logo visible without cropping */
  display: block;                /* avoids baseline/inline spacing issues */
}


.title{
  font-size: 16px;
  font-weight: 750;
  line-height: 1.2;
}

.subtitle{
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
}

.card{
  border: 1px solid var(--border);
  background: rgba(17,24,38,0.92);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.btn{
  display:block;
  width: 100%;
  padding: 16px 14px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 800;
  text-align:center;
  text-decoration:none;
  border: none;
  user-select:none;
}

.btn-green{
  background: linear-gradient(180deg, rgba(22,163,74,1), rgba(14,122,53,1));
  color: white;
}

.btn-red{
  background: linear-gradient(180deg, rgba(220,38,38,1), rgba(153,27,27,1));
  color: white;
}

.btn-ghost{
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  margin-top: 10px;
}

.btn-facebook{
  background: linear-gradient(180deg, #1877F2, #166FE5); /* Facebook blue */
  color: #ffffff;
  border: none;
}

.btn-facebook:hover{
  filter: brightness(1.05);
}

.btn-facebook:active{
  filter: brightness(0.95);
}

.btn-area-check{
  background: #fe343d;
  color: #ffffff;
  border: none;
  font-weight: 900;
}

.btn-area-check:hover{
  filter: brightness(0.92);
}

.btn-area-check:active{
  transform: scale(0.98);
}

.section{
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.section-title{
  font-weight: 800;
  margin-bottom: 10px;
}

.pdfwrap{
  width: 100%;
  height: 520px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}

.pdf{
  width: 100%;
  height: 100%;
  border: 0;
}

.link{
  display:inline-block;
  margin-top: 10px;
  color: #8ab4ff;
  text-decoration: none;
  font-weight: 650;
}

.link:hover{ text-decoration: underline; }

.steps{
  margin: 0;
  padding-left: 18px;
  color: var(--text);
}

.steps li{
  margin: 8px 0;
  color: rgba(232,238,246,0.95);
}

.footer{
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
  text-align:center;
}
