/* Red, White, and Blue theme (global template + user links only) */
:root{
  --lh-bg: #ffffff;
  --lh-text: #0b1b3a;
  --lh-muted: #4b5b74;
  --lh-border: rgba(11,27,58,0.14);
  --lh-blue: #1d4ed8;
  --lh-blue-dark: #1e40af;
  --lh-red: #dc2626;
}

html, body { height: 100%; }
body.lhsaas-public{
  margin:0;
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(29,78,216,0.08), transparent 60%),
    radial-gradient(900px 500px at 50% 110%, rgba(220,38,38,0.06), transparent 55%),
    var(--lh-bg);
  color: var(--lh-text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.lhsaas-wrap{
  max-width: 720px;
  margin: 0 auto;
  padding: 22px 18px 34px;
  text-align: center;
}

.lhsaas-hero{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--lh-border);
  background: #f6f8ff;
  box-shadow: 0 14px 28px rgba(11,27,58,.10);
}

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

.lhsaas-title{
  margin: 16px 0 4px;
  font-size: 28px;
  letter-spacing: .2px;
}

.lhsaas-subtitle{
  margin: 0 0 14px;
  color: var(--lh-muted);
  font-size: 14px;
}

.lhsaas-marquee{
  margin: 14px auto 18px;
  border-radius: 14px;
  border: 1px solid var(--lh-border);
  background: linear-gradient(180deg, rgba(29,78,216,0.08), rgba(255,255,255,0.92));
  box-shadow: 0 10px 22px rgba(11,27,58,.08);
  overflow: hidden;
  padding: 10px 12px;
}

.lhsaas-marquee-inner{
  display: inline-flex;
  gap: 28px;
  white-space: nowrap;
  align-items: center;
  animation: lhsaas-scroll 18s linear infinite;
  will-change: transform;
}

.lhsaas-marquee-inner span{
  color: var(--lh-red);
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 800;
}

@keyframes lhsaas-scroll{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-45%); }
}

.lhsaas-panel{ max-width: 560px; margin: 0 auto; }

.lhsaas-buttons{
  display:flex;
  flex-direction:column;
  gap: 12px;
  margin-top: 6px;
}

.lhsaas-btn{
  display:block;
  padding: 14px 16px;
  border-radius: 14px;
  text-decoration:none;
  color: #ffffff;
  font-weight: 900;
  letter-spacing: .3px;
  border: 1px solid rgba(29,78,216,0.25);
  background: linear-gradient(180deg, var(--lh-blue), var(--lh-blue-dark));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.25),
    0 14px 22px rgba(11,27,58,0.14);
  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
}

.lhsaas-btn:hover{
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.30),
    0 18px 28px rgba(11,27,58,0.18);
  filter: saturate(1.03);
}

.lhsaas-btn:active{
  transform: translateY(0px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.20),
    0 10px 16px rgba(11,27,58,0.14);
}

.lhsaas-cta{
  margin-top: 10px;
  border: 1px solid rgba(220,38,38,0.35);
  background: linear-gradient(180deg, var(--lh-red), #b91c1c);
}

.lhsaas-top{
  border: 1px solid rgba(220,38,38,0.35);
  background: linear-gradient(180deg, var(--lh-red), #b91c1c);
}

@media (max-width: 520px){
  .lhsaas-wrap{ padding: 16px 14px 28px; }
  .lhsaas-title{ font-size: 24px; }
  .lhsaas-btn{ padding: 13px 14px; }
}


.lhsaas-footer{
  margin-top: 26px;
  padding: 18px 0 10px;
  border-top: 1px solid var(--lh-border);
}

.lhsaas-footer-inner{
  max-width: 720px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}

.lhsaas-footer-copy{
  color: var(--lh-muted);
  font-size: 12px;
}

.lhsaas-footer-links{
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.lhsaas-footer-links a{
  color: var(--lh-blue);
  font-size: 12px;
  text-decoration: none;
  font-weight: 700;
}

.lhsaas-footer-links a:hover{
  text-decoration: underline;
}
