/* WildDragon shared home gender tabs */
html body #gender-tabs-container.home-gender-wrapper {
  --wd-tab-ink: #171421;
  --wd-tab-muted: #696274;
  --wd-tab-line: rgba(124, 58, 237, 0.16);
  --wd-tab-active: #7c3aed;
  --wd-tab-surface: rgba(255, 255, 255, 0.94);
  position: relative !important;
  z-index: 40;
  display: flex !important;
  align-items: stretch;
  width: 100% !important;
  max-width: min(100%, 1440px);
  height: clamp(54px, 4.4vw, 72px) !important;
  margin: 0 auto;
  padding: 0;
  visibility: visible !important;
  opacity: 1 !important;
  background: var(--wd-tab-surface);
  border-bottom: 1px solid var(--wd-tab-line);
  box-shadow: 0 14px 34px rgba(31, 21, 48, 0.05);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
}

html body #gender-tabs-container #gender-tabs-nonce {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

html body #gender-tabs-container .comboMenu {
  position: relative;
  display: flex !important;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0 !important;
}

html body #gender-tabs-container .tab-btn {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  height: 100%;
  padding: 0 20px !important;
  color: var(--wd-tab-ink);
  background: transparent !important;
  border: 0 !important;
  border-radius: 0;
  font-family: inherit;
  font-size: clamp(18px, 1.25vw, 25px);
  font-weight: 850 !important;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none !important;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.18s ease, background-color 0.18s ease;
}

html body #gender-tabs-container .comboMenu.home-active-tab-class::after,
html body #gender-tabs-container .comboMenu:has(.tab-btn[aria-selected="true"])::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: var(--wd-tab-active);
}

html body #gender-tabs-container .comboMenu.home-active-tab-class .tab-btn,
html body #gender-tabs-container .tab-btn[aria-selected="true"] {
  color: var(--wd-tab-ink);
  font-weight: 900 !important;
}

html body #gender-tabs-container .tab-btn:hover,
html body #gender-tabs-container .tab-btn:focus-visible {
  color: var(--wd-tab-active);
  outline: none;
}

html body #gender-tabs-container .ripple {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  background: rgba(124, 58, 237, 0.16);
  transform: scale(0);
  animation: wd-tab-ripple 0.48s ease-out;
}

@keyframes wd-tab-ripple {
  to {
    opacity: 0;
    transform: scale(4);
  }
}

@media (max-width: 767px) {
  html body #gender-tabs-container.home-gender-wrapper {
    width: 100vw !important;
    max-width: 100vw;
    height: 58px !important;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    border-radius: 0;
  }

  html body #gender-tabs-container .tab-btn {
    padding: 0 10px !important;
    font-size: clamp(21px, 7vw, 30px);
    line-height: 1;
  }
}
