/**
 * HPP Lobby — viewport overlay (1056×792, 4:3 @ 90% desk fit), decoupled from canvas.
 * Theme colors follow body.theme-royal-purple / body.theme-graphite (studio-themes.css).
 *
 * Layout: .oss-hpp-lobby__scroll is the vertical scrollport; head/foot are sticky so
 * card rows slide up behind the title bar. Each card shelf is
 * .oss-hpp-lobby__row > .oss-hpp-lobby__row-track (horizontal overflow / snap).
 */

:root {
  /* Defaults — royal purple builder stripes; overridden per theme in studio-themes.css */
  --hpp-lobby-bg: #3a236b;
  --hpp-lobby-head-bg: #231245;
  --hpp-lobby-foot-bg: #231245;
  --hpp-lobby-border: rgba(169, 140, 255, 0.28);
  --hpp-lobby-text: #f5f5f5;
  --hpp-lobby-close-fg: #f5f5f5;
  --hpp-lobby-scrim: rgba(8, 4, 18, 0.72);
  --hpp-card-icon: 9rem;
  --hpp-card-portrait-w: 6rem;
  --hpp-card-portrait-h: 9rem;
  /* Hub tile — unified card width (social was 9rem; −1rem avoids row scrollbar) */
  --hpp-hub-card-w: 8rem;
  --hpp-card-social-w: var(--hpp-hub-card-w);
  --hpp-card-app: var(--hpp-hub-card-w);
  --hpp-playbill-ratio: 3 / 4;
  --hpp-card-landscape-w: 11rem;
  --hpp-social-hover-scale: 1.5;
  --hpp-social-hover-ms: 0.15s;
  --hpp-footer-icon-size: 2.25rem;
  --hpp-footer-icon-gap: 1rem;
  /** Fine print flanking the center util cluster */
  --hpp-footer-compliance-size: 0.7rem;
  --hpp-footer-compliance-font: var(--oss-font-ui);
  /** @deprecated — compliance size replaces row text scale */
  --hpp-footer-row-size: var(--hpp-footer-compliance-size);
  --hpp-footer-legal-size: var(--hpp-footer-compliance-size);
  /** Equal vertical pad above/below the single footer row */
  --hpp-footer-row-pad-y: 0.4rem;
  /* Phosphor outline glyphs — 1:1 at util button size (2.25rem hit target) */
  --hpp-footer-phosphor-glyph-scale: 1;
  --hpp-footer-icon-hover-scale: 1.2;
  /* @deprecated aliases */
  --hpp-footer-social-icon-size: var(--hpp-footer-icon-size);
  --hpp-footer-util-gap: var(--hpp-footer-icon-gap);
  --hpp-social-link-gap: 1.5rem;
  /** @deprecated use --hpp-footer-row-pad-y */
  --hpp-footer-row1-pad: var(--hpp-footer-row-pad-y);
  /** Foot-bar rule — lavender on dark bg; lower alpha = subtler line */
  --hpp-footer-divider: rgba(169, 140, 255, 0.12);
  --hpp-fade-intro-ms: 700ms;
  --hpp-fade-quick-ms: 132ms;
  --hpp-hover-fade-ms: 140ms;
  --hpp-card-hover-ms: 105ms;
  --hpp-fade-ms: var(--hpp-fade-quick-ms);
}

.oss-hpp {
  display: block;
  position: fixed;
  inset: 0;
  /* Above q400 (20) and q400 popups (25); below globe translator (10000) */
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--hpp-fade-ms) ease-in-out;
}

.oss-hpp[hidden] {
  display: none !important;
}

.oss-hpp.oss-hpp--open {
  opacity: 1;
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  .oss-hpp {
    transition: none;
  }
}

.oss-hpp__scrim {
  position: absolute;
  inset: 0;
  background: var(--hpp-lobby-scrim);
}

.oss-hpp-lobby {
  position: fixed;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-sizing: border-box;
  background-color: var(--hpp-lobby-bg);
  color: var(--hpp-lobby-text);
  border: 1px solid var(--hpp-lobby-border);
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  /* Info + Privacy overlays use position:absolute; inset:0 */
  isolation: isolate;
}

/* One vertical scroll — title + cards + socials share one column; head/foot stay pinned */
.oss-hpp-lobby__scroll {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: var(--oss-scrollbar-thumb, #f5f5f5) var(--hpp-lobby-bg);
  scrollbar-width: thin;
}

.oss-hpp-lobby__scroll::-webkit-scrollbar {
  width: 8px;
}

.oss-hpp-lobby__scroll::-webkit-scrollbar-track {
  background: transparent;
}

.oss-hpp-lobby__scroll::-webkit-scrollbar-thumb {
  background: var(--oss-scrollbar-thumb, rgba(245, 245, 245, 0.55));
  border-radius: 4px;
}

.oss-hpp-lobby__head {
  position: sticky;
  top: 0;
  z-index: 3;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 2.5rem 0.35rem;
  background: transparent;
  text-align: center;
  box-shadow: none;
}
.oss-hpp-lobby__marquee-link {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  line-height: 0;
  text-decoration: none;
}

.oss-hpp-lobby__marquee-link:focus-visible {
  outline: 2px solid var(--oss-ui-primary, #8c67d9);
  outline-offset: 3px;
  border-radius: 2px;
}

.oss-hpp-lobby__marquee {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 11rem;
  margin: 0 auto;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.oss-hpp-lobby__head .oss-hpp-title {
  display: block;
  margin: 0;
  padding: 0;
  height: 7rem;
  width: auto;
}

.oss-hpp-lobby__close {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 4;
  width: 1.75rem;
  height: 1.75rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.25);
  color: var(--hpp-lobby-close-fg);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.oss-hpp-lobby__close:hover {
  background: rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.45);
}

.oss-hpp-lobby__body {
  flex: 1 0 auto;
  min-height: 6rem;
  background: var(--hpp-lobby-bg);
}

.oss-hpp-lobby__cards {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 0.65rem 0.35rem 0.75rem;
  box-sizing: border-box;
}

/* Horizontal carousel row — one track per shelf of poster cards */
.oss-hpp-lobby__row {
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--oss-scrollbar-thumb, rgba(245, 245, 245, 0.55)) transparent;
}

.oss-hpp-lobby__row::-webkit-scrollbar {
  height: 6px;
}

.oss-hpp-lobby__row::-webkit-scrollbar-thumb {
  background: var(--oss-scrollbar-thumb, rgba(245, 245, 245, 0.45));
  border-radius: 3px;
}

.oss-hpp-lobby__row-track {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0.65rem;
  width: max-content;
  min-width: 100%;
  padding: 0.1rem 0.45rem 0.25rem;
  box-sizing: border-box;
}

.oss-hpp-lobby__category {
  min-width: 0;
}

.oss-hpp-lobby__row-title {
  margin: 1rem 0 1.35rem;
  padding: 0 0.45rem;
  font-family: var(--oss-font-ui);
  font-size: var(--oss-type-hpp-h3-heading-size, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--oss-popup-title-text, rgba(235, 225, 255, 0.92));
}

.oss-hpp-lobby__empty-hint {
  margin: -0.35rem 0 1.1rem;
  padding: 0 0.75rem;
  font-family: var(--oss-font-ui);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.01em;
  text-align: center;
  color: rgba(235, 225, 255, 0.72);
}

.oss-hpp-lobby__row-title--with-paw {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35em;
  transform-origin: center center;
  cursor: default;
  transition:
    transform var(--hpp-hover-fade-ms) ease,
    text-shadow var(--hpp-hover-fade-ms) ease,
    color var(--hpp-hover-fade-ms) ease;
}

.oss-hpp-lobby__row-title--with-paw:hover {
  transform: scale(1.12);
  color: var(--oss-ui-white, #f5f5f5);
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.5),
    0 0 22px rgba(169, 140, 255, 0.42);
}

.oss-hpp-lobby__row-title-paw {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter var(--hpp-hover-fade-ms) ease;
}

.oss-hpp-lobby__row-title--with-paw:hover .oss-hpp-lobby__row-title-paw {
  filter:
    brightness(0) invert(1)
    drop-shadow(0 0 6px rgba(255, 255, 255, 0.85))
    drop-shadow(0 0 14px rgba(169, 140, 255, 0.55));
}

@media (prefers-reduced-motion: reduce) {
  .oss-hpp-lobby__row-title--with-paw:hover {
    transform: none;
  }
}

.oss-hpp-lobby__row--grid {
  overflow-x: hidden;
}

.oss-hpp-lobby__row--grid .oss-hpp-lobby__row-track {
  width: 100%;
  max-width: 100%;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 0.35rem;
}

.oss-hpp-lobby__row--grid .oss-hpp-hub-slot,
.oss-hpp-lobby__row--grid > .oss-hpp-lobby__row-track > .oss-hpp-card--hub-tile {
  flex: 1 1 0;
  min-width: 0;
  max-width: var(--hpp-hub-card-w);
  width: min(var(--hpp-hub-card-w), calc((100% - 4 * 0.35rem) / 5));
}

.oss-hpp-card {
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(169, 140, 255, 0.35);
  border-radius: 6px;
  background: rgba(20, 10, 40, 0.45);
  color: var(--hpp-lobby-text);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  box-sizing: border-box;
  text-align: center;
  transition:
    background var(--hpp-card-hover-ms) ease,
    border-color var(--hpp-card-hover-ms) ease,
    box-shadow var(--hpp-card-hover-ms) ease,
    transform var(--hpp-card-hover-ms) ease;
}

.oss-hpp-card:hover:not(:disabled) {
  background: rgba(58, 35, 107, 0.72);
  border-color: rgba(169, 140, 255, 0.55);
}

.oss-hpp-card:focus-visible {
  outline: 2px solid var(--oss-accent, #a98cff);
  outline-offset: 2px;
}

.oss-hpp-card.is-active {
  border-color: var(--oss-accent, #a98cff);
  box-shadow: 0 0 0 2px rgba(169, 140, 255, 0.35);
  background: rgba(58, 35, 107, 0.85);
}

.oss-hpp-card--icon {
  width: var(--hpp-card-icon);
  min-height: var(--hpp-card-icon);
  padding: 0.45rem 0.35rem 0.5rem;
}

.oss-hpp-card--social {
  position: relative;
  z-index: 1;
  transform-origin: center center;
  transition:
    transform var(--hpp-social-hover-ms) ease,
    box-shadow var(--hpp-social-hover-ms) ease;
}

.oss-hpp-card--hub-tile {
  width: var(--hpp-hub-card-w);
  padding: 0.35rem 0.35rem 0.4rem;
  gap: 0.25rem;
}

.oss-hpp-card--social.oss-hpp-card--hub-tile {
  aspect-ratio: 4 / 5;
  height: auto;
}

.oss-hpp-card--playbill.oss-hpp-card--hub-tile {
  aspect-ratio: auto;
  height: auto;
}

.oss-hpp-hub-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  flex: 0 0 auto;
  width: var(--hpp-hub-card-w);
  max-width: 100%;
}

.oss-hpp-hub-slot .oss-hpp-card--hub-tile {
  width: 100%;
}

.oss-hpp-lobby__category[data-hpp-category='socials'] .oss-hpp-lobby__row-track {
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}

.oss-hpp-card--hub-tile .oss-hpp-card__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  overflow: hidden;
  border-radius: 4px;
  border: 1px dashed rgba(169, 140, 255, 0.35);
  background: rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  transition:
    background var(--hpp-card-hover-ms) ease,
    border-color var(--hpp-card-hover-ms) ease,
    box-shadow var(--hpp-card-hover-ms) ease;
}

.oss-hpp-card--hub-tile .oss-hpp-card__media--poster {
  aspect-ratio: var(--hpp-playbill-ratio);
  flex: 0 0 auto;
}

.oss-hpp-card__media--has-poster {
  background: rgba(0, 0, 0, 0.2);
}

.oss-hpp-card__poster-tint {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--hpp-card-poster-tint, transparent);
}

.oss-hpp-card__poster-img {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.oss-hpp-card--hub-tile:hover:not(:disabled) .oss-hpp-card__media:not(.oss-hpp-card__media--social-brand) {
  background: rgba(0, 0, 0, 0.28);
  border-color: rgba(169, 140, 255, 0.52);
}

.oss-hpp-card--hub-tile.is-active .oss-hpp-card__media {
  border-color: var(--oss-accent, #a98cff);
  background: rgba(58, 35, 107, 0.55);
  box-shadow:
    0 0 12px rgba(169, 140, 255, 0.55),
    inset 0 0 0 1px rgba(169, 140, 255, 0.35);
}

.oss-hpp-hub-slot:has(.oss-hpp-card.is-active) .oss-hpp-card__label {
  color: var(--oss-ui-white, #f5f5f5);
  text-shadow:
    0 0 8px rgba(169, 140, 255, 0.95),
    0 0 16px rgba(169, 140, 255, 0.55);
}

.oss-hpp-hub-slot:has(.oss-hpp-card.is-active) .oss-hpp-playbill__number {
  color: var(--oss-ui-white, #f5f5f5);
  filter:
    drop-shadow(0 0 4px rgba(169, 140, 255, 0.95))
    drop-shadow(0 0 10px rgba(169, 140, 255, 0.5));
}

.oss-hpp-card--hub-tile .oss-hpp-card__label {
  flex-shrink: 0;
  transform-origin: center center;
  transition:
    transform var(--hpp-card-hover-ms) ease,
    color var(--hpp-card-hover-ms) ease,
    text-shadow var(--hpp-card-hover-ms) ease;
}

.oss-hpp-card--hub-tile:hover:not(:disabled) .oss-hpp-card__label,
.oss-hpp-hub-slot:hover .oss-hpp-card__label {
  transform: scale(1.08);
  color: var(--oss-ui-white, #f5f5f5);
  text-shadow:
    0 0 8px rgba(169, 140, 255, 0.95),
    0 0 16px rgba(169, 140, 255, 0.55);
}

.oss-hpp-card--playbill.oss-hpp-card--soon,
.oss-hpp-card--app.oss-hpp-card--soon {
  opacity: 0.78;
  cursor: default;
}

.oss-hpp-hub-slot:has(.oss-hpp-card--soon):hover,
.oss-hpp-card--playbill.oss-hpp-card--soon:hover,
.oss-hpp-card--app.oss-hpp-card--soon:hover {
  opacity: 1;
}

.oss-hpp-card__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
  pointer-events: none;
}

.oss-hpp-card__media--playing > i {
  opacity: 0;
}

@media (hover: hover) {
  .oss-hpp-card--social.is-hover-preview {
    z-index: 4;
    transform: scale(var(--hpp-social-hover-scale));
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
  }
}

@media (prefers-reduced-motion: reduce) {
  .oss-hpp-card--social {
    transition: none;
  }

  .oss-hpp-card--social.is-hover-preview {
    transform: none;
  }
}

.oss-hpp-card--social .oss-hpp-card__media--social-brand {
  background: var(--hpp-social-brand-bg, rgba(0, 0, 0, 0.2));
  border-style: solid;
  border-color: color-mix(in srgb, var(--hpp-social-brand-bg) 55%, #f5f5f5 45%);
}

.oss-hpp-card--social .oss-hpp-card__media--social-brand--instagram {
  --hpp-social-brand-bg: transparent;
  background: linear-gradient(
    135deg,
    #f9ce34 0%,
    #f09433 18%,
    #e6683c 32%,
    #dc2743 52%,
    #cc2366 72%,
    #bc1888 88%,
    #833ab4 100%
  );
  border-color: rgba(245, 245, 245, 0.38);
}

.oss-hpp-card--hub-tile:hover:not(:disabled) .oss-hpp-card__media--social-brand:not(.oss-hpp-card__media--social-brand--instagram) {
  background: var(--hpp-social-brand-bg);
  border-color: color-mix(in srgb, var(--hpp-social-brand-bg) 45%, #f5f5f5 55%);
  filter: brightness(1.06);
}

.oss-hpp-card--hub-tile:hover:not(:disabled) .oss-hpp-card__media--social-brand--instagram {
  filter: brightness(1.08);
}

.oss-hpp-card--social .oss-hpp-card__media .oss-hpp-card__social-icon {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
  opacity: 1;
}

.oss-hpp-card--playbill .oss-hpp-card__media .oss-hpp-card__playbill-paw {
  position: relative;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
  opacity: 1;
  pointer-events: none;
  user-select: none;
  filter: brightness(0) invert(1);
}

@keyframes oss-hpp-studio-paw-pulse {
  0%,
  100% {
    filter: brightness(0) invert(1) drop-shadow(0 0 0 transparent);
    transform: scale(1);
  }
  50% {
    filter: brightness(0)
      invert(1)
      drop-shadow(0 0 10px rgba(245, 245, 245, 0.75))
      drop-shadow(0 0 20px rgba(169, 140, 255, 0.55));
    transform: scale(1.08);
  }
}

.oss-hpp--awaiting-pick .oss-hpp-card__playbill-paw--studio {
  animation: oss-hpp-studio-paw-pulse 1.8s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .oss-hpp--awaiting-pick .oss-hpp-card__playbill-paw--studio {
    animation: none;
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(245, 245, 245, 0.45));
  }
}

.oss-hpp-card--social .oss-hpp-card__media i {
  font-size: 2.1rem;
  line-height: 1;
  opacity: 0.88;
}

.oss-hpp-playbill__status {
  display: block;
  width: 100%;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-align: center;
  color: rgba(235, 225, 255, 0.88);
  transform-origin: center center;
  transition:
    transform var(--hpp-card-hover-ms) ease,
    color var(--hpp-card-hover-ms) ease,
    text-shadow var(--hpp-card-hover-ms) ease;
}

.oss-hpp-playbill__status[data-playbill-status='now-playing'] {
  color: #c9ffb8;
}

.oss-hpp-playbill__status[data-playbill-status='sneak-preview'] {
  color: #ffe8a8;
}

.oss-hpp-playbill__status[data-playbill-status='coming-soon'] {
  color: rgba(235, 225, 255, 0.62);
}

.oss-hpp-playbill__number {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.15rem;
  line-height: 1;
  color: rgba(235, 225, 255, 0.78);
  transform-origin: center center;
  transition:
    transform var(--hpp-card-hover-ms) ease,
    color var(--hpp-card-hover-ms) ease,
    filter var(--hpp-card-hover-ms) ease;
}

.oss-hpp-playbill__number i {
  display: block;
}

.oss-hpp-hub-slot:hover .oss-hpp-playbill__number {
  transform: scale(1.16);
  color: var(--oss-ui-white, #f5f5f5);
  filter:
    drop-shadow(0 0 4px rgba(169, 140, 255, 0.95))
    drop-shadow(0 0 10px rgba(169, 140, 255, 0.5));
}

.oss-hpp-hub-slot:hover .oss-hpp-playbill__status {
  transform: scale(1.1);
}

.oss-hpp-hub-slot:hover .oss-hpp-playbill__status[data-playbill-status='sneak-preview'] {
  color: #fff4c8;
  text-shadow:
    0 0 8px rgba(255, 220, 120, 0.95),
    0 0 14px rgba(255, 200, 80, 0.55);
}

.oss-hpp-hub-slot:hover .oss-hpp-playbill__status[data-playbill-status='coming-soon'] {
  color: var(--oss-ui-white, #f5f5f5);
  text-shadow:
    0 0 8px rgba(169, 140, 255, 0.95),
    0 0 14px rgba(169, 140, 255, 0.5);
}

.oss-hpp-hub-slot:hover .oss-hpp-playbill__status[data-playbill-status='now-playing'] {
  color: #e8ffe0;
  text-shadow:
    0 0 8px rgba(160, 255, 140, 0.95),
    0 0 14px rgba(120, 230, 100, 0.55);
}

.oss-hpp-card--landscape {
  width: var(--hpp-card-landscape-w);
  aspect-ratio: 16 / 9;
  padding: 0.45rem 0.5rem;
}

.oss-hpp-card--portrait {
  width: var(--hpp-card-portrait-w);
  padding: 0.35rem 0.35rem 0.45rem;
}

.oss-hpp-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
}

.oss-hpp-card__icon i {
  font-size: 2.75rem;
  line-height: 1;
  opacity: 0.92;
}

.oss-hpp-card__icon--large i {
  font-size: 3.85rem;
}

.oss-hpp-card__icon--mirror i {
  transform: scaleX(-1);
}

.oss-hpp-card__label {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: rgba(245, 245, 245, 0.92);
}

.oss-hpp-card__text {
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 0.15rem;
  color: rgba(245, 245, 245, 0.95);
}

.oss-hpp-card__frame {
  display: block;
  width: 100%;
  height: var(--hpp-card-portrait-h);
  border-radius: 4px;
  border: 1px dashed rgba(169, 140, 255, 0.4);
  background: rgba(0, 0, 0, 0.18);
  box-sizing: border-box;
}

.oss-hpp-card--soon {
  opacity: 0.55;
  cursor: default;
}

.oss-hpp-card:disabled {
  opacity: 0.5;
  cursor: default;
}

.oss-hpp-social-spotlight {
  margin: 0 0.45rem 0.5rem;
  min-height: 0;
  border-radius: 6px;
  border: 1px dashed rgba(169, 140, 255, 0.35);
  background: rgba(0, 0, 0, 0.15);
}

.oss-hpp-social-spotlight:not([hidden]) {
  min-height: 4rem;
}

.oss-hpp-lobby__foot {
  position: sticky;
  bottom: 0;
  z-index: 3;
  flex-shrink: 0;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: var(--hpp-footer-row-pad-y) 0.75rem;
  background: var(--hpp-lobby-foot-bg);
  color: var(--oss-ui-white, #f5f5f5);
  font-size: var(--hpp-footer-compliance-size, 0.7rem);
  font-family: var(--hpp-footer-compliance-font);
  box-shadow: 0 -1px 0 var(--hpp-lobby-border);
}

.oss-hpp-lobby__foot-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0;
}

.oss-hpp-lobby__foot-bar .oss-hpp-lobby__copyright {
  justify-self: start;
  grid-column: 1;
  align-self: center;
  text-align: left;
}

.oss-hpp-lobby__foot-center,
.oss-hpp-lobby__foot-left {
  justify-self: center;
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--hpp-footer-icon-gap);
  min-width: 0;
}

.oss-hpp-lobby__foot-util {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: var(--hpp-footer-icon-size);
  height: var(--hpp-footer-icon-size);
  margin: 0;
  padding: 0;
  opacity: 0.9;
  transition: opacity var(--hpp-hover-fade-ms) ease, transform var(--hpp-hover-fade-ms) ease, filter var(--hpp-hover-fade-ms) ease;
  border: none;
  background: none;
  color: var(--oss-ui-white, #f5f5f5);
  cursor: pointer;
}

.oss-hpp-lobby__foot-util i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--hpp-footer-icon-size);
  height: var(--hpp-footer-icon-size);
  font-size: var(--hpp-footer-icon-size);
  line-height: 1;
  transform: scale(var(--hpp-footer-phosphor-glyph-scale));
  transform-origin: center center;
  transition: transform var(--hpp-hover-fade-ms) ease, filter var(--hpp-hover-fade-ms) ease;
}

.oss-hpp-lobby__foot-util:hover {
  opacity: 1;
}

.oss-hpp-lobby__foot-util:hover i {
  transform: scale(calc(var(--hpp-footer-phosphor-glyph-scale) * var(--hpp-footer-icon-hover-scale)));
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.8));
}

.oss-hpp-lobby__foot-util.is-active {
  opacity: 1;
}

.oss-hpp-lobby__foot-util.is-active i {
  color: var(--oss-accent, #a98cff);
  filter: drop-shadow(0 0 8px rgba(169, 140, 255, 0.85));
}

.oss-hpp-lobby__foot-legal {
  justify-self: end;
  grid-column: 3;
  align-self: center;
  margin: 0;
  font-size: inherit;
  font-family: inherit;
  line-height: 1.2;
  text-align: right;
  color: rgba(245, 245, 245, 0.88);
}

.oss-hpp-lobby__legal-link {
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
}

.oss-hpp-lobby__legal-link:hover {
  text-decoration: underline;
}

.oss-hpp-lobby__copyright {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: 400;
  color: rgba(245, 245, 245, 0.88);
  line-height: 1.2;
  user-select: none;
  pointer-events: none;
  text-align: left;
  white-space: nowrap;
}

#btn-hpp-translate {
  position: relative;
  z-index: 1;
}

.oss-hpp-lobby__social {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--hpp-social-link-gap);
}

.oss-hpp-lobby__category[data-hpp-category='socials'] .oss-hpp-lobby__social {
  justify-content: center;
  margin: 0.15rem 0 0.35rem;
  padding: 0 0.45rem;
}

.oss-hpp-lobby__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  color: var(--hpp-lobby-text);
  text-decoration: none;
  opacity: 0.9;
  transition: opacity var(--hpp-hover-fade-ms) ease, transform var(--hpp-hover-fade-ms) ease, filter var(--hpp-hover-fade-ms) ease;
}

.oss-hpp-lobby__social-link:hover {
  opacity: 1;
  text-decoration: none;
}

