
/* Loadit viral floating background (money + bitcoin) */
#loadit-float-canvas{
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  /* Above page visuals so 2026/confetti is clearly visible (still non-interactive). */
  z-index: 5;
  pointer-events: none;
}
/* keep countdown above the floating layer */
.page{ position: relative; z-index: 1; }

/* Party hat on the Loadit logo (New Year vibe) */
.logo-home-link{ position: relative; display: inline-block; }
.logo-home-link::after{
  content: "🥳";
  position: absolute;
  top: -14px;
  left: -10px;
  font-size: 22px;
  transform: rotate(-14deg);
  pointer-events: none;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.45));
}


/* New Year 2026 countdown (CST)
   NOTE: mounted inside <header> so it never covers page content. */
header{ flex-wrap: wrap; }
#ny-countdown{
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  bottom: auto;
  transform: none;
  z-index: 10;
  margin-top: 10px;
  margin-left: auto;
  background: rgba(2,6,23,0.78);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 10px 14px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.92);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  max-width: min(92vw, 680px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

@media (max-width: 520px){
  #ny-countdown{
    margin-top: 10px;
    margin-left: 0;
    max-width: min(92vw, 360px);
  }
  #ny-countdown .ny-time{ font-size: 16px; }
}
#ny-countdown .ny-title{
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 4px;
}
#ny-countdown .ny-time{
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}
#ny-countdown .ny-sub{
  font-size: 12px;
  opacity: 0.85;
  margin-top: 4px;
}
#ny-countdown .ny-close{
  position: absolute;
  right: 10px;
  top: 8px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  line-height: 1;
  font-size: 18px;
}
#ny-countdown .ny-close:active{ transform: scale(0.98); }
#ny-countdown.ny-hidden{ display:none; }
