.guestServiceCredit {
  display: flex;
  justify-content: center;
  margin: 22px auto 0;
  padding: 8px 0 4px;
}

.guestServiceCredit__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 6px;
  max-width: 100%;
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 999px;
  color: color-mix(in srgb, var(--color-muted) 86%, var(--color-text) 14%);
  font-size: 0.78rem;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  opacity: 0.72;
  transition: background 0.16s ease, color 0.16s ease, opacity 0.16s ease;
}

.guestServiceCredit__link:hover,
.guestServiceCredit__link:focus-visible {
  background: color-mix(in srgb, var(--color-accent) 8%, transparent);
  color: var(--color-accent);
  opacity: 1;
}

.guestServiceCredit__link:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--color-accent) 38%, transparent);
  outline-offset: 2px;
}

.guestServiceCredit__brand {
  color: var(--color-text);
  font-weight: 750;
}

html.guestMenuPage.hasGuestTheme .guestServiceCredit__link {
  background: rgba(255, 255, 255, 0.42);
}

html.guestMenuPage.hasGuestTheme .guestServiceCredit__link:hover,
html.guestMenuPage.hasGuestTheme .guestServiceCredit__link:focus-visible {
  background: rgba(255, 255, 255, 0.74);
}

.guestMenuBeginner .guestServiceCredit {
  margin-top: 30px;
  padding-bottom: 0;
}

.guestMenuBeginner .guestMenuBody--creditFixed {
  padding-bottom: calc(92px + env(safe-area-inset-bottom, 0px));
}

.guestServiceCredit--fixed {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 88;
  width: 100%;
  margin: 0;
  padding: 7px 14px calc(8px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 -8px 24px rgba(32, 22, 17, 0.07);
  backdrop-filter: blur(16px);
  pointer-events: none;
}

.guestServiceCredit--fixed .guestServiceCredit__link {
  margin: 0 auto;
  min-height: 26px;
  padding: 2px 4px;
  border-radius: 0;
  opacity: 0.82;
  pointer-events: auto;
}

.guestServiceCredit--fixed .guestServiceCredit__link:hover,
.guestServiceCredit--fixed .guestServiceCredit__link:focus-visible {
  background: transparent;
  opacity: 1;
}

html.guestMenuPage.hasGuestTheme .guestServiceCredit--fixed {
  background: rgba(255, 255, 255, 0.84);
}

html.guestMenuPage.hasGuestTheme .guestServiceCredit--fixed .guestServiceCredit__link {
  background: transparent;
}

html.guestMenuBeginner.hasGuestSelectionList .guestServiceCredit--fixed {
  z-index: 91;
}

@media (max-width: 380px) {
  .guestServiceCredit__link {
    padding-inline: 8px;
    font-size: 0.74rem;
  }
}
