html, body { margin: 0; padding: 0; }
body { background: var(--color2, #1e22aa); min-height: 100vh; }

.screen { display: none; min-height: 100vh; }
.screen.is-visible { display: block; }

/* queue progress fill */
.animation__progress {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: rgba(255,255,255,0.25);
  border-radius: 14px;
  z-index: 0;
}
.animation__btn { position: relative; overflow: hidden; }
.animation__btn-text { position: relative; z-index: 1; }

@keyframes queueFill {
  from { width: 0%; }
  to   { width: 100%; }
}

/* list items are anchors — remove default link decoration */
.list-item,
.list-item:hover,
.list-item:focus,
.list-item:visited {
  text-decoration: none;
  color: inherit;
}

/* light up the gift icon on hover */
.list-item:hover .list-item__btn svg path {
  transition: stroke 0.2s;
  stroke: var(--color1);
}

/* final CTA styling */
.animation-fortune__btn_active { cursor: pointer; text-align: center; }

/* ---------- site footer ---------- */
.site-footer {
  background: #212539;
  color: #fff;
  font-size: 14px;
  line-height: 1.3;
  padding: 24px 20px;
}
.site-footer__container {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px 40px;
  align-items: start;
}
.site-footer__brand { font-weight: 700; font-size: 18px; }
.site-footer__extra-top { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; opacity: 0.85; }
.site-footer__dot { display: inline-block; width: 3px; height: 3px; border-radius: 50%; background: currentColor; opacity: 0.6; }
.site-footer__extra-bottom { opacity: 0.85; }
.site-footer__links { display: flex; flex-direction: column; gap: 8px; }
.site-footer__link-row { display: flex; flex-wrap: wrap; gap: 6px; align-items: baseline; }
.site-footer__title { opacity: 0.75; }
.site-footer__link { color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.3); }
.site-footer__link:hover { border-bottom-color: #fff; }

@media (max-width: 720px) {
  .site-footer__container { grid-template-columns: 1fr; gap: 16px; }
  .site-footer { font-size: 13px; }
}
