.avatar {
  border-radius: 50%;
  overflow: hidden;
  object-fit: cover;
  flex-shrink: 0;
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dark-control {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--sr);
  transition: border-color var(--dur-micro) ease;
}
.picker-overlay {
  opacity: 0;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  z-index: 1;
  cursor: pointer;
}
.phone-field {
  display: flex;
  gap: 8px;
}
.phone-field .phone-cc {
  width: auto;
  flex: 0 0 auto;
  max-width: 46%;
}
.phone-field .phone-number {
  flex: 1 1 auto;
  min-width: 0;
}
.avatar-thumbnail {
  width: 32px;
  height: 32px;
  border: 1px solid var(--white);
}
.switch-toggle {
  display: block;
  width: 44px;
  height: 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  position: relative;
  cursor: pointer;
  appearance: none;
  padding: 0;
  touch-action: manipulation;
}
.switch-thumb {
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(2px, -50%);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s ease;
}
.switch-toggle.is-on .switch-thumb {
  transform: translate(22px, -50%);
  background: var(--primary);
}
.switch-toggle:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.switch-toggle.switch-toggle--unavailable {
  opacity: 0.55;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(255, 193, 7, 0.25);
}
input[type=checkbox] {
  accent-color: var(--primary);
}
.hs-step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.15);
  color: var(--primary);
  font-size: var(--s);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hs-screenshot {
  max-width: 220px;
  border-radius: var(--sr);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.hs-tabs {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0;
}
.hs-tab {
  padding: 6px 12px;
  font-size: var(--s);
  color: rgba(255, 255, 255, 0.5);
  border-bottom: 2px solid transparent;
  background: none;
  cursor: pointer;
  transition: color var(--dur-fast), border-color var(--dur-fast);
}
.hs-tab.is-active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.form-validation-popover {
  position: fixed;
  z-index: 10000;
  max-width: min(320px, calc(100vw - 24px));
  padding: 10px 12px;
  border-radius: var(--sr);
  background: var(--darker-grey);
  border: 1px solid var(--red);
  color: var(--white);
  font-family: var(--tertiary-font);
  font-size: var(--s);
  letter-spacing: var(--tertiary-tracking);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  pointer-events: none;
  animation: form-validation-popover-in 0.18s ease;
  line-height: 1.35;
}
.form-validation-popover .icon {
  color: var(--red);
}
@keyframes form-validation-popover-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
label.invalid > span:first-child {
  color: #ca1b2d;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.form-validation-popover__text {
  margin: 0;
}
.sort-dropdown-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sort-menu {
  min-width: 140px;
}
.sort-menu li {
  border-radius: 6px;
  white-space: nowrap;
}
.sort-menu li[aria-selected=true] {
  color: var(--primary);
}
.expand-chevron {
  transition: transform var(--dur-fast, 0.2s) var(--ease-smooth, ease);
}
button[aria-expanded=true] .expand-chevron {
  transform: rotate(180deg);
}
input.invalid,
textarea.invalid {
  border-color: var(--red);
  outline-color: var(--red);
}
.notify-intro {
  opacity: 0.75;
}
.notify-ticketed-btn {
  justify-content: center;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background,
    color,
    border-color 0.15s ease;
}
.notify-ticketed-btn:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}
.notify-ticketed-btn.is-selected {
  background: rgba(255, 193, 7, 0.2);
  border-color: var(--primary);
  color: var(--primary);
}
.notify-tag {
  cursor: pointer;
  appearance: none;
  border: 1px solid transparent;
}
.notify-tag:hover {
  background: rgba(255, 193, 7, 0.2);
  border-color: rgba(255, 193, 7, 0.4);
}
.notify-no-options {
  opacity: 0.5;
}
.settings-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 0;
  width: 100%;
  cursor: pointer;
  transition: background 0.15s ease;
}
a.settings-item {
  text-decoration: none;
  color: inherit;
}
.settings-item > div {
  display: flex;
  align-items: center;
  gap: 16px;
}
.settings-item span {
  font-size: var(--l);
}
.settings-item:hover {
  background: rgba(255, 255, 255, 0.06);
}
.settings-item.red {
  color: var(--red);
}
.notify-setting-row {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.04);
}
.notify-remove-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  padding: 4px;
}
.notify-remove-btn:hover {
  color: var(--red);
}
#gig-map {
  isolation: isolate;
}
#gig-map .leaflet-popup-content-wrapper {
  background: var(--black);
  color: var(--white);
  border-radius: var(--sr);
  padding: 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}
#gig-map .leaflet-popup-tip-container {
  width: 24px;
  height: 12px;
  margin-left: -12px;
  overflow: visible;
}
#gig-map .leaflet-popup-tip {
  width: 0;
  height: 0;
  padding: 0;
  margin: 0 auto;
  background: transparent !important;
  border: none;
  box-shadow: none !important;
  transform: none;
  pointer-events: none;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid var(--black);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}
#gig-map .leaflet-popup-content {
  padding: 12px 0;
  margin: 12px 14px;
  min-height: unset;
  color: inherit;
}
#gig-map .leaflet-popup-close-button {
  color: var(--white);
  padding: 8px 10px 0 0;
}
#gig-map .leaflet-popup-close-button:hover {
  color: var(--primary);
}
.gig-map-popup {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gig-map-popup__venue {
  font-family: var(--secondary-font);
  font-size: var(--s);
  font-weight: 700;
  color: var(--white, #fff);
  line-height: 1.3;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.gig-map-popup__avatar {
  width: 32px;
  height: 32px;
}
.gig-map-popup__genre {
  color: var(--white, #fff) !important;
  opacity: 0.8;
  font-size: 11px;
}
.gig-map-popup__item-info strong.has-color {
  color: var(--primary);
}
.gig-map-popup__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 200px;
  overflow-y: auto;
}
.gig-map-popup__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.gig-map-popup__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.gig-map-popup__item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.gig-map-popup__item-info strong,
.gig-map-popup__item-info small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.gig-map-popup__view-btn {
  padding: 4px 10px;
  border: 1px solid var(--primary, #ffc107);
  border-radius: var(--lr);
  color: var(--primary, #ffc107);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--dur-fast) ease, color var(--dur-fast) ease;
}
.gig-map-popup__view-btn:hover {
  background-color: var(--primary, #ffc107);
  color: var(--black, #000);
}
.gig-map-popup__pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.gig-map-popup__page-info {
  font-size: 12px;
  opacity: 0.7;
}
.gig-map-popup__page-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--lr);
  color: var(--white, #fff);
  font-size: 18px;
  cursor: pointer;
  transition: border-color var(--dur-fast) ease, color var(--dur-fast) ease;
}
.gig-map-popup__page-btn:hover:not(:disabled) {
  border-color: var(--primary, #ffc107);
  color: var(--primary, #ffc107);
}
.gig-map-popup__page-btn:disabled {
  opacity: 0.3;
  cursor: default;
}
.gig-map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5000;
  border-radius: var(--sr);
  cursor: pointer;
  transition: opacity 0.2s ease;
  pointer-events: auto;
}
.gig-map-overlay.hidden {
  display: none;
}
.gig-map-overlay__button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--primary, #ffc107);
  color: var(--black, #000);
  border: none;
  border-radius: var(--mr);
  font-size: var(--m-base, 16px);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}
.gig-map-overlay__button:hover {
  background: var(--primary-light, #ffd966);
}
.gig-map-overlay__icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
}
.consent-banner {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translate(-50%, 150%);
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(680px, calc(100vw - 24px));
  padding: 16px 20px;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--lr);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  transition: transform var(--dur-fast) var(--ease-smooth);
}
.consent-banner.show {
  transform: translate(-50%, 0);
}
@media (max-width: 640px) {
  .consent-banner {
    bottom: 8px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
}
.map-picker-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 var(--side-padding);
  animation: fade-in 0.15s ease;
}
@media (min-width: 480px) {
  .map-picker-backdrop {
    align-items: center;
  }
}
.map-picker {
  background: var(--secondary-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  overflow: hidden;
  animation: slide-up 0.2s var(--ease-smooth);
}
.map-picker-title {
  padding: 16px 20px 12px;
  font-size: var(--s);
  font-family: var(--secondary-font);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  opacity: 0.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.map-picker-option {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--dur-fast) ease;
}
.map-picker-option:last-child {
  border-bottom: none;
}
.map-picker-option:hover,
.map-picker-option:active {
  background: rgba(255, 255, 255, 0.06);
}
.map-picker-option span {
  font-weight: 500;
}
.map-picker-cancel {
  display: block;
  width: 100%;
  padding: 14px;
  text-align: center;
  background: none;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  opacity: 0.6;
  cursor: pointer;
  font-size: var(--s);
  transition: opacity var(--dur-fast) ease;
}
.map-picker-cancel:hover {
  opacity: 1;
}
.setup-checklist {
  background: rgba(255, 215, 0, 0.06);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: var(--mr);
  padding: var(--box-padding);
}
.setup-checklist-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--primary);
}
.setup-checklist-title {
  font-size: var(--l);
  font-weight: 700;
  line-height: 1.2;
}
.setup-checklist-sub {
  font-size: var(--m);
  opacity: 0.6;
  margin-top: 2px;
}
.setup-checklist-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.setup-checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--m);
}
.setup-checklist-item.done {
  color: var(--grey);
  opacity: 0.5;
}
.setup-icon-check {
  color: var(--primary);
}
.setup-icon-circle {
  color: rgba(255, 255, 255, 0.35);
}
.checklist-action-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}
.setup-checklist-item a,
.setup-checklist-item .checklist-action-btn {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  transition: color var(--dur-micro) ease;
}
.setup-checklist-item a:hover,
.setup-checklist-item .checklist-action-btn:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}
.setup-checklist-item s {
  text-decoration-color: rgba(255, 255, 255, 0.4);
}
.genre-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-height: 200px;
  overflow-y: auto;
}
.genre-option {
  padding: 6px 12px;
  border-radius: var(--sr);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: white;
  cursor: pointer;
  font-size: var(--sm);
  transition: all var(--dur-fast) var(--ease-smooth);
}
.genre-option:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.genre-option.selected {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--black);
}
.req-genre-suggestions {
  max-height: none;
  overflow: visible;
}
.setup-checklist-item.newly-done {
  animation: fade-up var(--dur-enter) var(--ease-spring) var(--anim-delay, 0ms) both;
}
.setup-checklist-item.newly-done .setup-icon-check {
  animation: check-pop 0.55s var(--ease-spring) calc(var(--anim-delay, 0ms) + 250ms) both;
}
.setup-checklist-item.newly-done s {
  text-decoration: none;
  position: relative;
}
.setup-checklist-item.newly-done s::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  width: 0;
  animation: strikethrough-draw 0.4s var(--ease-smooth) calc(var(--anim-delay, 0ms) + 500ms) both;
}
.admin-verify {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 720px;
  padding-top: 32px;
  padding-bottom: 64px;
}
.admin-verify-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}
.admin-verify-facts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.admin-verify-fact {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.admin-verify-fact .grey {
  font-size: var(--s);
}
