/* Enlarge the existing rem-based layout proportionally on desktop. */
@media (min-width: 1024px) {
  html {
    font-size: 18px;
  }
}

.marquee-track {
  flex-wrap: nowrap;
}

.marquee-group {
  display: flex;
  flex: 0 0 auto;
  white-space: nowrap;
}

.marquee-group > span {
  flex-shrink: 0;
}

.fuuxis-credit {
  padding: 0 5rem 1.5rem;
  text-align: center;
}

.fuuxis-credit a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  color: inherit;
}

.fuuxis-credit a:hover {
  text-decoration: underline;
}

.fuuxis-credit a:focus-visible {
  outline: 2px solid #a36aff;
  outline-offset: 6px;
  border-radius: 4px;
}

/* Display the original logo without its generous surrounding margins. */
.fuuxis-logo {
  position: relative;
  display: inline-block;
  overflow: hidden;
  flex: 0 0 35px;
  width: 35px;
  height: 34px;
}

.fuuxis-logo img {
  position: absolute;
  width: 89px;
  height: auto;
  max-width: none;
  left: -30px;
  top: -17px;
}

.prime-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  min-width: 0;
}

.prime-gallery > img,
.prime-gallery > video {
  display: block;
  width: 100%;
  min-height: 0;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  object-fit: cover;
}

.prime-gallery > img {
  aspect-ratio: 4 / 3;
  height: auto;
}

.prime-gallery > video {
  grid-row: span 2;
  height: 100%;
  aspect-ratio: 9 / 16;
  background: #08090b;
  object-fit: contain;
}

.footer-socials {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  border: 1px solid transparent;
  border-radius: 0.8rem;
  color: #fff;
  transition: transform 180ms ease, filter 180ms ease;
}

.footer-whatsapp {
  background: linear-gradient(120deg, #126c3b, #0b4d31);
  border-color: #2baf69;
}

.footer-instagram {
  background: linear-gradient(115deg, #63329a, #a82863 65%, #ad422e);
  border-color: #bf548f;
}

.footer-social > svg { flex-shrink: 0; }
.footer-social strong { display: block; font-size: 0.85rem; }
.footer-social small { display: block; margin-top: 0.2rem; font-size: 0.7rem; }
.footer-social-arrow { margin-left: auto; font-size: 1.2rem; }
.footer-social:hover { transform: translateY(-2px); filter: brightness(1.15); }
.footer-social:focus-visible { outline: 2px solid white; outline-offset: 4px; }

@media (prefers-reduced-motion: reduce) {
  .footer-social { transition: none; }
  .footer-social:hover { transform: none; }
}
