/* full page entrance popup - content directly covers the page */
.hg-entry-pop-lock{
  overflow:hidden!important;
}
.hg-entry-pop-mask{
  position:fixed;
  inset:0;
  z-index:2147483000;
  width:100vw;
  min-height:100vh;
  min-height:100dvh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:72px 20px 34px;
  box-sizing:border-box;
  background:#fff;
  color:#111827;
}
.hg-entry-pop-card{
  width:100%;
  max-width:620px;
  min-height:auto;
  border:0;
  border-radius:0;
  background:transparent;
  color:#111827;
  box-shadow:none;
  padding:0;
  position:static;
  overflow:visible;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  animation:hgEntryPopIn .22s ease-out both;
}
.hg-entry-pop-card:before,
.hg-entry-pop-card:after,
.hg-entry-pop-visual{
  display:none!important;
}
.hg-entry-pop-close{
  position:fixed;
  right:10px;
  top:10px;
  width:24px;
  height:24px;
  border:1px solid rgba(17,24,39,.18);
  border-radius:50%;
  background:#fff;
  color:#111827;
  cursor:pointer;
  font-size:15px;
  line-height:20px;
  z-index:2147483001;
  padding:0;
  box-shadow:0 4px 10px rgba(15,23,42,.08);
}
.hg-entry-pop-close:hover{
  transform:scale(1.04);
}
.hg-entry-pop-title{
  position:relative;
  z-index:1;
  margin:0 0 14px;
  font-size:32px;
  font-weight:900;
  letter-spacing:.3px;
  color:#111827;
}
.hg-entry-pop-desc{
  position:relative;
  z-index:1;
  margin:0 auto 26px;
  max-width:560px;
  color:#374151;
  font-size:16px;
  line-height:1.95;
}
.hg-entry-pop-actions{
  position:relative;
  z-index:1;
  width:100%;
  max-width:330px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.hg-entry-pop-actions a{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:48px;
  padding:0 16px;
  border-radius:999px;
  text-decoration:none!important;
  color:#151515!important;
  font-weight:900;
  background:linear-gradient(135deg,#fff0b8,#f59e0b 54%,#ffd86f);
  box-shadow:0 10px 22px rgba(245,158,11,.24);
  transition:transform .18s ease,filter .18s ease,box-shadow .18s ease;
}
.hg-entry-pop-actions a:hover{
  transform:translateY(-2px);
  filter:brightness(1.04);
  box-shadow:0 14px 28px rgba(245,158,11,.32);
}
@keyframes hgEntryPopIn{
  from{opacity:0;transform:translateY(12px)}
  to{opacity:1;transform:translateY(0)}
}
@media(max-width:520px){
  .hg-entry-pop-mask{padding:58px 18px 26px}
  .hg-entry-pop-title{font-size:24px}
  .hg-entry-pop-desc{font-size:14px;line-height:1.8;margin-bottom:20px}
  .hg-entry-pop-actions{max-width:100%;gap:10px}
  .hg-entry-pop-actions a{min-height:44px}
}
