@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@500&family=Inter:wght@400;500;600;700&family=Parkinsans:wght@300;400;500;600;700&family=Poppins:wght@400;500&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --ui-scale: 1;
  --page-gutter: 24px;
  --page-block-gap: 32px;
  --section-gap: 24px;
  --space-xl: 40px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --panel-pad: 24px;
  --panel-radius: 20px;
  --text-sm: 13px;
  --text-body: 14px;
  --text-md: 16px;
  --text-title: 20px;
  --text-display: 28px;
  --select2-option-hover-gradient: linear-gradient(138deg, #d338ec 0%, #7516a9 100%);
  --select2-option-active-gradient: linear-gradient(138deg, #e040ff 0%, #8518b8 100%);
  --select2-option-selected-gradient: var(--select2-option-hover-gradient);
  --select2-option-selected-gradient-light: var(--select2-option-hover-gradient);
  --btn-purple-gradient: linear-gradient(138deg, #d338ec 0%, #7516a9 100%);
  --btn-purple-gradient-hover: linear-gradient(138deg, #e040ff 0%, #8518b8 100%);
}

/*
  Design targets ~1440px. Below 1400px, fluidly shrink the whole UI
  (text, gaps, padding, boxes) so layouts stay proportional on laptops.
  Mobile (≤768) keeps its dedicated breakpoints unzoomed.
*/
@media (max-width: 1399.98px) {
  :root {
    --ui-scale: clamp(0.88, calc(100vw / 1400px), 1);
    --page-gutter: clamp(14px, 1.7vw, 24px);
    --page-block-gap: clamp(18px, 2.2vw, 32px);
    --section-gap: clamp(14px, 1.7vw, 24px);
    --space-xl: clamp(24px, 2.8vw, 40px);
    --space-2xl: clamp(28px, 3.2vw, 48px);
    --space-3xl: clamp(32px, 4vw, 64px);
    --panel-pad: clamp(14px, 1.7vw, 24px);
    --panel-radius: clamp(12px, 1.25vw, 20px);
    --text-sm: clamp(11px, 0.95vw, 13px);
    --text-body: clamp(13px, 1vw, 14px);
    --text-md: clamp(14px, 1.15vw, 16px);
    --text-title: clamp(16px, 1.4vw, 20px);
    --text-display: clamp(22px, 2vw, 28px);
  }
}

@media (max-width: 1399.98px) and (min-width: 769px) {
  html {
    zoom: var(--ui-scale);
  }

  /*
    Select2 hit-testing breaks under CSS zoom (menus flash open then close).
    Keep New Order / Add Funds at 1x so category/service/method selects work.
  */
  html:has(.neworder-page),
  html:has(.addfunds-page),
  html:has(.child-panel-page) {
    zoom: 1;
  }
}

body {
  margin: 0;
  background: #0e0a16;
  font-family:
    'Inter',
    system-ui,
    -apple-system,
    sans-serif;
}

.container-scroller {
  min-height: 100vh;
}

.bfnav-shell {
  position: sticky;
  top: 0;
  z-index: 11000;
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  background: #1a161e;
  padding: 20px 0;
  transition: top 0.32s ease;
}

.bfnav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--page-gutter);
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
}

.bfnav-masthead-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bfnav-masthead-inner:has(.bfnav-dropdown-panel.is-open),
.bfnav-masthead:has(.bfnav-dropdown-panel.is-open) {
  overflow: visible;
}

/* Slide masthead off-screen via sticky top — avoid height collapse (causes scroll shake). */
.bfnav-shell.is-top-hidden {
  top: calc(-1 * var(--bfnav-hide-offset, 0px));
}

.bfnav-shell.is-top-hidden .bfnav-masthead {
  pointer-events: none;
}

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

.bfnav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
  min-width: 0;
}

.bfnav-logo {
  display: block;
  height: 48px;
  width: 279px;
  max-width: 40%;
  flex-shrink: 1;
  min-width: 0;
}

.bfnav-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.bfnav-logo .bfnav-logo-img--light {
  display: none;
}

.bfnav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1 1 auto;
  justify-content: flex-end;
}

.bfnav-actions-desktop {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bfnav-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid #cd36e7;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  flex-shrink: 0;
  color: #fff;
}

.bfnav-burger-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 22px;
}

.bfnav-burger-icon span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 1px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.bfnav-burger.is-open .bfnav-burger-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.bfnav-burger.is-open .bfnav-burger-icon span:nth-child(2) {
  opacity: 0;
}

.bfnav-burger.is-open .bfnav-burger-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.bfnav-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s;
}

.bfnav-drawer-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.bfnav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 410;
  width: min(320px, 100%);
  max-width: 100%;
  height: 100vh;
  height: 100dvh;
  background: #1a161e;
  border-left: 1px solid rgba(205, 54, 231, 0.35);
  box-shadow: -12px 0 32px rgba(0, 0, 0, 0.4);
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 0.25s ease,
    visibility 0.25s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.bfnav-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.bfnav-drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 20px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bfnav-drawer-user {
  min-width: 0;
}

.bfnav-drawer-name {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.bfnav-drawer-email {
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  margin-top: 4px;
}

.bfnav-drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
}

.bfnav-drawer-close:hover {
  background: rgba(238, 179, 249, 0.15);
}

.bfnav-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bfnav-drawer-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bfnav-drawer-section-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bfnav-drawer-balance {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #cd36e7;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.bfnav-drawer-balance img {
  width: 15px;
  height: 20px;
  flex-shrink: 0;
}

.bfnav-drawer-currencies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bfnav-drawer-currency {
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid rgba(205, 54, 231, 0.35);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.bfnav-drawer-currency:hover,
.bfnav-drawer-currency.is-active {
  background: rgba(238, 179, 249, 0.15);
  border-color: #cd36e7;
}

.bfnav-drawer-add-funds {
  display: block;
  padding: 12px 16px;
  border-radius: 8px;
  background: #bd0edc;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
}

.bfnav-drawer-add-funds:hover {
  background: #ce16ed;
}

.bfnav-drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bfnav-drawer-nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 8px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

.bfnav-drawer-nav a:hover {
  background: rgba(238, 179, 249, 0.12);
}

.bfnav-drawer-logout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid rgba(205, 54, 231, 0.35);
  background: rgba(205, 54, 231, 0.08);
  color: #ce16ed;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.bfnav-drawer-logout img {
  width: 20px;
  height: 20px;
}

.bfnav-drawer-logout:hover {
  background: rgba(205, 54, 231, 0.16);
}

body.bfnav-drawer-open {
  overflow: hidden;
}

.rtl-navbar .bfnav-drawer {
  right: auto;
  left: 0;
  border-left: none;
  border-right: 1px solid rgba(205, 54, 231, 0.35);
  box-shadow: 12px 0 32px rgba(0, 0, 0, 0.4);
  transform: translateX(-100%);
}

.rtl-navbar .bfnav-drawer.is-open {
  transform: translateX(0);
}

.bfnav-theme-switch {
  position: relative;
  display: block;
  width: 79px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.bfnav-theme-switch__track {
  position: absolute;
  left: 10px;
  top: 4px;
  width: 68px;
  height: 29px;
  border-radius: 14px;
  border: 0.5px solid #bd0edc;
  background: linear-gradient(90deg, #000000 30%, #242424 100%);
  box-sizing: border-box;
  pointer-events: none;
}

.bfnav-theme-switch__label {
  position: absolute;
  top: 50%;
  left: 53px;
  transform: translate(-50%, -50%);
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
  pointer-events: none;
  transition: left 0.2s ease;
}

.bfnav-theme-switch__knob {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #bd0edc;
  box-shadow: 0 2.5px 5px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
  pointer-events: none;
}

.bfnav-theme-switch__knob img,
.bfnav-theme-switch__knob svg {
  width: 23px;
  height: 23px;
}

.bfnav-theme-switch__knob .bfnav-theme-switch__icon--moon {
  display: block;
}

.bfnav-theme-switch__knob .bfnav-theme-switch__icon--sun {
  display: none;
}

.bfnav-theme-switch.is-light .bfnav-theme-switch__knob .bfnav-theme-switch__icon--moon {
  display: none;
}

.bfnav-theme-switch.is-light .bfnav-theme-switch__knob .bfnav-theme-switch__icon--sun {
  display: block;
}

.bfnav-theme-switch.is-light .bfnav-theme-switch__knob {
  transform: translateX(43px);
}

.bfnav-theme-switch.is-light .bfnav-theme-switch__label {
  left: 30px;
}

.bfnav-balance {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: auto;
  min-width: 100px;
  max-width: 190px;
  height: 48px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid #cd36e7;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2.5px);
  -webkit-backdrop-filter: blur(2.5px);
  color: #fff;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  box-sizing: border-box;
}

.bfnav-balance-content {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.bfnav-balance-amount {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bfnav-balance-currency {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  opacity: 0.85;
}

.bfnav-balance-icon {
  width: 15px;
  height: 20px;
  flex-shrink: 0;
}

.bfnav-balance-icon img,
.bfnav-chevron img,
.bfnav-icon-btn img,
.bfnav-nav-icon img,
.bfnav-more-arrow img {
  display: block;
  width: 100%;
  height: 100%;
}

.bfnav-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.bfnav-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.bfnav-icon-btn img {
  width: 48px;
  height: 48px;
}

.bfnav-logout-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.bfnav-logout-bg {
  position: absolute;
  inset: 0;
  width: 44px;
  height: 44px;
}

.bfnav-logout-icon {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 24px;
  height: 24px;
  transform: scaleY(-1) rotate(180deg);
}

.bfnav-divider {
  width: 100%;
  height: 2px;
  line-height: 0;
}

.bfnav-divider img {
  display: block;
  width: 100%;
  height: 2px;
}

.bfnav-menu {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bfnav-menu-item {
  flex: 1 1 0;
  min-width: 0;
}

.bfnav-menu-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  min-height: 50px;
  padding: 14px 10px;
  border-radius: 11px;
  border: none;
  background: rgba(238, 179, 249, 0.08);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.bfnav-menu-link:not(.is-active):not(:hover) {
  border: 1px solid rgba(238, 179, 249, 0.35);
}

.bfnav-menu-link:hover {
  background: var(--btn-purple-gradient);
  background-image: var(--btn-purple-gradient);
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  color: #fff;
}

.bfnav-menu-link.is-active {
  background: var(--btn-purple-gradient);
  background-image: var(--btn-purple-gradient);
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.bfnav-menu-link.is-active::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 4px 0 12px rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.bfnav-nav-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  overflow: hidden;
}

.bfnav-more-arrow {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.bfnav-account-dropdown,
.bfnav-more-dropdown {
  position: relative;
}

.bfnav-account-dropdown:has(.bfnav-dropdown-panel.is-open),
.bfnav-more-dropdown:has(.bfnav-dropdown-panel.is-open),
.bfnav-balance-dropdown:has(.bfnav-dropdown-panel.is-open) {
  z-index: 12100;
}

.bfnav-dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  padding: 8px 0;
  border-radius: 12px;
  background: #252030;
  border: 1px solid rgba(205, 54, 231, 0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  color: #fff;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition:
    opacity 0.15s ease,
    transform 0.15s ease,
    visibility 0.15s;
}

.bfnav-dropdown-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bfnav-dropdown-panel a {
  display: block;
  padding: 10px 16px;
  color: inherit;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

#account-panel a.bfnav-account-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bfnav-account-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: currentColor;
}

.bfnav-account-link-icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.bfnav-dropdown-panel a:hover {
  background: rgba(238, 179, 249, 0.12);
}

.bfnav-dropdown-user {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bfnav-dropdown-name {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.bfnav-dropdown-email {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  margin-top: 2px;
}

.bfnav-more-dropdown .bfnav-dropdown-panel {
  left: auto;
  right: 0;
  min-width: 207px;
  width: max-content;
  padding: 0;
  background: #303030;
  border: 1px solid rgba(189, 14, 220, 0.5);
  border-radius: 12px;
}

.bfnav-more-dropdown .bfnav-dropdown-panel a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px 12px 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
}

.bfnav-more-dropdown .bfnav-dropdown-panel a:not(.is-active):hover {
  background: var(--btn-purple-gradient);
  background-image: var(--btn-purple-gradient);
  color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.bfnav-more-dropdown .bfnav-dropdown-panel a.is-active,
.bfnav-more-dropdown .bfnav-dropdown-panel a.is-active:hover {
  background: #bd0edc;
  color: #fff;
}

.bfnav-more-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  overflow: hidden;
}

.bfnav-more-icon img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.bfnav-balance-dropdown {
  flex-shrink: 0;
}

.bfnav-balance-panel {
  width: 200px;
  min-width: 200px;
  padding: 8px 6px;
  overflow: hidden;
}

.bfnav-balance-panel-head {
  padding: 4px 12px 8px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.bfnav-balance-panel-scroll {
  max-height: 320px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0;
}

.bfnav-balance-panel-scroll::-webkit-scrollbar {
  width: 4px;
}

.bfnav-balance-panel-scroll::-webkit-scrollbar-thumb {
  background: rgba(205, 54, 231, 0.45);
  border-radius: 4px;
}

.bfnav-balance-panel .bfnav-balance-option,
.bfnav-balance-panel .bfnav-balance-option.dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 2px 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: transparent;
  color: #fff !important;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
}

.bfnav-balance-code,
.bfnav-balance-symbol {
  pointer-events: none;
  color: inherit;
}

.bfnav-balance-code {
  font-weight: 600;
}

.bfnav-balance-symbol {
  font-weight: 500;
  text-align: right;
}

.bfnav-balance-option--static {
  color: rgba(255, 255, 255, 0.85);
}

.bfnav-balance-panel .bfnav-balance-option:hover,
.bfnav-balance-panel .bfnav-balance-option.dropdown-item:hover,
.bfnav-balance-panel .bfnav-balance-option.dropdown-item:focus {
  background: rgba(238, 179, 249, 0.12);
  color: #fff;
}

.bfnav-balance-panel .bfnav-balance-option.is-active,
.bfnav-balance-panel .bfnav-balance-option.is-active:hover,
.bfnav-balance-panel .bfnav-balance-option.dropdown-item.is-active,
.bfnav-balance-panel .bfnav-balance-option.dropdown-item.is-active:hover {
  background: rgba(238, 179, 249, 0.22);
  color: #fff;
}

.bfnav-balance-add {
  display: block;
  padding: 12px 16px;
  border-top: 1px solid rgba(205, 54, 231, 0.25);
  color: #ce16ed;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  background: rgba(205, 54, 231, 0.08);
}

.bfnav-balance-add:hover {
  background: rgba(205, 54, 231, 0.16);
  color: #e040f5;
}

.page-content {
  max-width: 1440px;
  margin: var(--page-block-gap) auto;
  padding: 0 var(--page-gutter);
  color: rgba(255, 255, 255, 0.85);
  overflow: visible;
}

.bfnav-footer {
  max-width: 1440px;
  margin: 0 auto var(--page-block-gap);
  padding: 0 var(--page-gutter);
}

.bfnav-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  border: 1px solid rgba(132, 132, 132, 0.35);
  border-radius: 16px;
  background: rgba(26, 22, 30, 0.72);
}

.bfnav-footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
}

.bfnav-footer-nav a {
  color: #b7b7b8;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.15s ease;
}

.bfnav-footer-nav a:hover,
.bfnav-footer-nav a:focus {
  color: #fff;
  text-decoration: none;
}

.bfnav-footer-credit {
  margin: 0;
  color: #848484;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  white-space: nowrap;
}

.bfnav-footer-credit a {
  color: #bd0edc;
  font-weight: 500;
  text-decoration: none;
}

.bfnav-footer-credit a:hover,
.bfnav-footer-credit a:focus {
  color: #d338ec;
  text-decoration: underline;
}

.page-content h1 {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-display);
  font-weight: 600;
  margin: 0 0 var(--section-gap);
}

.page-content p {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-md);
  line-height: 1.6;
  margin: 0;
}

.bfnav-shell--guest .bfnav-inner {
  gap: 0;
}

.bfnav-guest-menu {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bfnav-guest-menu-item {
  flex-shrink: 0;
}

.bfnav-guest-menu .bfnav-menu-link {
  width: auto;
  padding: 14px 16px;
}

.bfnav-logout-btn {
  display: block;
  text-decoration: none;
}

@media (max-width: 1200px) {
  .bfnav-menu-link {
    font-size: 15px;
    min-height: 48px;
    padding: 12px 9px;
  }
}

@media (max-width: 992px) {
  .bfnav-top {
    gap: 12px;
  }

  .bfnav-actions {
    gap: 8px;
  }

  .bfnav-logo {
    max-width: 35%;
  }

  .bfnav-balance {
    min-width: 90px;
    max-width: 130px;
    padding: 0 12px;
    font-size: 15px;
  }

  .bfnav-balance-panel {
    width: 180px;
    min-width: 180px;
  }

  .bfnav-menu {
    flex-wrap: wrap;
  }

  .bfnav-menu-item {
    flex: 1 1 calc(33.333% - 11px);
  }
}

@media (max-width: 768px) {
  .bfnav-shell {
    padding: 16px 0;
  }

  .bfnav-logo {
    width: 160px;
    height: 40px;
    max-width: none;
    flex-shrink: 0;
  }

  .bfnav-actions-desktop,
  .bfnav-burger,
  .bfnav-divider,
  .bfnav-menu,
  .bfnav-account-dropdown:not(.bfnav-balance-dropdown) {
    display: none;
  }

  .bfnav-tabbar,
  .bfnav-sheet {
    display: flex;
  }

  .bfnav-footer {
    display: none;
  }

  .page-content {
    padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  }

  /* Keep Crisp chat above the fixed mobile tabbar */
  .cc-165wh[data-full-view='true'] .cc-lk42u .cc-13wro {
    z-index: calc(var(--crisp-customization-container-index) + 1) !important;
    bottom: 70px !important;
    right: 4px !important;
  }

  .bfnav-actions {
    gap: 8px;
  }

  .bfnav-balance-dropdown {
    order: 1;
  }

  .bfnav-theme-switch {
    order: 2;
  }

  .bfnav-balance {
    min-width: 84px;
    max-width: 112px;
    height: 40px;
    padding: 0 8px;
    font-size: 13px;
  }

  .bfnav-icon-btn,
  .bfnav-icon-btn img {
    width: 40px;
    height: 40px;
  }

  body.bfnav-sheet-open .bfnav-tabbar-item.is-active:not(#bfnav-more-tab) {
    color: rgba(255, 255, 255, 0.62);
  }

  body.bfnav-sheet-open
    .bfnav-tabbar-item.is-active:not(#bfnav-more-tab)
    .bfnav-tabbar-icon
    img {
    opacity: 0.7;
    filter: none;
  }
}

@media (max-width: 640px) {
  .bfnav-inner {
    padding: 0 16px;
    gap: 16px;
  }

  .bfnav-masthead-inner {
    gap: 16px;
  }

  .bfnav-top {
    gap: 8px;
  }

  .bfnav-logo {
    width: 140px;
    height: 36px;
  }

  .bfnav-theme-switch {
    width: 70px;
    height: 32px;
  }

  .bfnav-theme-switch__track {
    left: 9px;
    top: 3px;
    width: 60px;
    height: 26px;
    border-radius: 13px;
  }

  .bfnav-theme-switch__knob {
    width: 32px;
    height: 32px;
  }

  .bfnav-theme-switch__knob img,
  .bfnav-theme-switch__knob svg {
    width: 20px;
    height: 20px;
  }

  .bfnav-theme-switch__label {
    font-size: 11px;
    left: 46px;
  }

  .bfnav-theme-switch.is-light .bfnav-theme-switch__knob {
    transform: translateX(38px);
  }

  .bfnav-theme-switch.is-light .bfnav-theme-switch__label {
    left: 25px;
  }

  .bfnav-menu-item {
    flex: 1 1 calc(50% - 8px);
  }

  .bfnav-menu-link {
    font-size: 14px;
    padding: 14px 8px;
  }
}

@media (max-width: 360px) {
  .bfnav-inner {
    padding: 0 12px;
  }

  .bfnav-logo {
    width: 120px;
    height: 32px;
  }
}

@media (min-width: 769px) {
  .bfnav-tabbar,
  .bfnav-sheet {
    display: none;
  }
}

.bfnav-tabbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 430;
  align-items: stretch;
  justify-content: space-between;
  height: calc(58px + env(safe-area-inset-bottom, 0px));
  padding: 4px 4px calc(4px + env(safe-area-inset-bottom, 0px));
  background: #1a161e;
  border-top: 1px solid rgba(205, 54, 231, 0.35);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.28);
}

.bfnav-tabbar-item {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 0;
  padding: 4px 2px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.bfnav-tabbar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}

.bfnav-tabbar-icon img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
  opacity: 0.7;
}

.bfnav-tabbar-label {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bfnav-tabbar-item.is-active,
#bfnav-more-tab.is-active {
  color: #ce16ed;
}

.bfnav-tabbar-item.is-active .bfnav-tabbar-icon img,
#bfnav-more-tab.is-active .bfnav-tabbar-icon img {
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(22%) sepia(90%) saturate(4500%)
    hue-rotate(277deg) brightness(98%) contrast(101%);
}

.bfnav-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: calc(58px + env(safe-area-inset-bottom, 0px));
  top: auto;
  z-index: 425;
  flex-direction: column;
  max-height: min(
    70dvh,
    calc(100dvh - 90px - env(safe-area-inset-bottom, 0px))
  );
  overflow: hidden;
  background: #252030;
  border: 1px solid rgba(205, 54, 231, 0.35);
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -16px 40px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s;
}

.bfnav-sheet.is-open {
  display: flex;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.bfnav-sheet-user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bfnav-sheet-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #bd0edc;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

.bfnav-sheet-user-meta {
  min-width: 0;
}

.bfnav-sheet-name {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.bfnav-sheet-email {
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  margin-top: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bfnav-sheet-nav {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0 0 8px;
}

.bfnav-sheet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 12px;
}

.bfnav-sheet-grid a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 84px;
  padding: 12px 8px;
  border-radius: 12px;
  border: 1px solid rgba(205, 54, 231, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
}

.bfnav-sheet-grid a:hover {
  background: rgba(238, 179, 249, 0.12);
  border-color: rgba(206, 22, 237, 0.55);
}

.bfnav-sheet-grid a.is-active,
.bfnav-sheet-grid a.is-active:hover {
  background: #bd0edc;
  border-color: #bd0edc;
  color: #fff;
}

.bfnav-sheet-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.bfnav-sheet-icon img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.bfnav-sheet-logout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 4px 12px 8px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(205, 54, 231, 0.35);
  background: rgba(205, 54, 231, 0.08);
  color: #ce16ed !important;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.bfnav-sheet-logout:hover {
  background: rgba(205, 54, 231, 0.16);
}

.bfnav-sheet-logout .bfnav-sheet-icon img {
  width: 20px;
  height: 20px;
}

body.bfnav-sheet-open {
  overflow: hidden;
}

/* API page */
.api-page {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  width: 100%;
  padding-bottom: var(--space-xl);
}

.api-card {
  background: #1a161e;
  border: 1px solid #cd36e7;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
}

.api-card-header {
  background: #bd0edc;
  display: flex;
  align-items: center;
  min-height: 83px;
  padding: 20px;
}

.api-card-title {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.48;
  color: #fff;
}

.api-card-body {
  padding: 32px;
}

.api-info-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.api-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 20px;
}

.api-info-label,
.api-info-value,
.api-param-name,
.api-param-desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #f5f6f7;
}

.api-info-value {
  text-align: right;
}

.api-link {
  color: #ce16ed;
  font-weight: 600;
  text-decoration: none;
}

.api-link:hover {
  text-decoration: underline;
}

.api-row-divider {
  height: 1px;
  background: rgba(205, 54, 231, 0.35);
  width: 100%;
}

.api-row-divider--params {
  margin: 20px 0;
}

.api-method-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 12px;
}

.api-method-card > .api-card-header {
  border-radius: 10px 10px 0 0;
}

.api-type-select-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 32px;
}

.api-type-select-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.api-type-select-field {
  position: relative;
  max-width: 652px;
}

.api-type-select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 56px;
  padding: 16px 48px 16px 30px;
  border-radius: 12px;
  border: 1px solid #bd0edc;
  background: linear-gradient(
    180deg,
    rgba(205, 54, 231, 0.1) 0%,
    rgba(108, 9, 158, 0.1) 100%
  );
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  cursor: pointer;
}

.api-type-select:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(205, 54, 231, 0.35);
}

.api-type-select-arrow {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.api-type-select-arrow img {
  display: block;
  width: 100%;
  height: 100%;
}

.api-table-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 32px;
}

.api-table-head span {
  display: flex;
  align-items: center;
  height: 56px;
  padding: 16px 30px;
  border-radius: 12px;
  border: 1px solid #bd0edc;
  background: linear-gradient(
    180deg,
    rgba(205, 54, 231, 0.1) 0%,
    rgba(108, 9, 158, 0.1) 100%
  );
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
}

.api-params-body {
  padding: 20px 62px;
}

.api-param-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 67px;
  align-items: center;
  min-height: 20px;
}

.api-example-card {
  background: #17111b;
  border-color: transparent;
}

.api-code-wrap {
  padding: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.api-code-block {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #ebecef;
  white-space: pre-wrap;
  word-break: break-word;
  background: transparent;
  border: none;
  padding: 0;
}

.api-php-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 56px;
  padding: 16px 30px;
  border-radius: 12px;
  border: 1px solid #bd0edc;
  background: linear-gradient(
    180deg,
    rgba(205, 54, 231, 0.15) 0%,
    rgba(108, 9, 158, 0.15) 100%
  );
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  transition: background 0.15s ease;
}

.api-php-link:hover {
  background: linear-gradient(
    180deg,
    rgba(205, 54, 231, 0.25) 0%,
    rgba(108, 9, 158, 0.25) 100%
  );
  color: #fff;
}

@media (max-width: 768px) {
  .api-card-body,
  .api-params-body {
    padding: 20px 16px;
  }

  .api-table-head {
    padding: 0 16px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .api-type-select-wrap {
    padding: 0 16px;
  }

  .api-info-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .api-info-value {
    text-align: left;
  }

  .api-param-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .api-card-title {
    font-size: 20px;
  }
}

/* API — light mode */
html[data-theme='light'] .api-card {
  border: none;
  background: #fff;
  box-shadow: 0 8px 24px rgba(42, 36, 48, 0.06);
}

html[data-theme='light'] .api-card-header {
  background: #bd0edc;
}

html[data-theme='light'] .page-content h2.api-card-title,
html[data-theme='light'] .api-card-title {
  color: #fff;
}

html[data-theme='light'] .api-info-label,
html[data-theme='light'] .api-info-value,
html[data-theme='light'] .api-param-name,
html[data-theme='light'] .api-param-desc {
  color: #111;
}

html[data-theme='light'] .api-link {
  color: #bd0edc;
}

html[data-theme='light'] .api-row-divider {
  background: #eeeeee;
}

html[data-theme='light'] .api-type-select-label {
  color: #4a4a4a;
}

html[data-theme='light'] .api-type-select {
  border: 1px solid #bd0edc;
  background: #f5e6fb;
  color: #111;
}

html[data-theme='light'] .api-type-select:focus {
  box-shadow: none;
}

html[data-theme='light'] .api-type-select option {
  background: #fff;
  color: #111;
}

html[data-theme='light'] .api-type-select-arrow img {
  filter: brightness(0);
}

html[data-theme='light'] .api-table-head span {
  border: 1px solid #bd0edc;
  background: #f5e6fb;
  color: #111;
}

html[data-theme='light'] .api-example-card {
  background: #fff;
  border: none;
}

html[data-theme='light'] .api-code-wrap {
  background: #fff;
}

html[data-theme='light'] .api-code-block {
  color: #111;
}

html[data-theme='light'] .api-php-link {
  border: 1px solid #bd0edc;
  background: #f5e6fb;
  color: #111;
}

html[data-theme='light'] .api-php-link:hover {
  background: #f0d4f8;
  color: #111;
}

/* FAQ page */
.faq-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3xl);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: var(--space-xl);
}

.faq-tabs-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

.faq-tabs {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11.25px;
  height: 72px;
  padding: 14px;
  border: 1.125px solid #852aff;
  border-radius: 999px;
  background: rgba(14, 16, 19, 0.7);
  box-shadow:
    inset 0 -4px 20px rgba(125, 25, 175, 0.5),
    inset 0 4px 20px rgba(125, 25, 175, 0.5);
}

.faq-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  padding: 12px 24px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-family: 'Parkinsans', sans-serif;
  font-size: 15.75px;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s ease;
}

.faq-tab.is-active {
  background: #bd0edc;
}

.faq-tab:hover:not(.is-active) {
  background: rgba(238, 179, 249, 0.12);
}

.faq-section {
  width: 100%;
  padding: 48px;
  border: 1px solid rgba(143, 42, 205, 0.7);
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.5);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.faq-item-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 24px;
  border: 1px solid #a279d7;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.faq-item.is-open .faq-item-inner {
  gap: 8px;
}

.faq-item-header {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faq-question {
  flex: 1;
  min-width: 0;
  font-family: 'Parkinsans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
}

.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  padding: 6px;
  border-radius: 40px;
  background: #bd0edc;
}

.faq-icon {
  display: block;
  width: 25px;
  height: 25px;
}

.faq-icon-minus {
  display: none;
}

.faq-item.is-open .faq-icon-plus {
  display: none;
}

.faq-item.is-open .faq-icon-minus {
  display: block;
}

.faq-panels {
  width: 100%;
}

.faq-panel {
  width: 100%;
}

.faq-panel:not(.is-active) {
  display: none;
}

.faq-panel.is-active {
  animation: faq-panel-in 0.35s ease;
}

@keyframes faq-panel-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-item.is-open .faq-answer-wrap {
  grid-template-rows: 1fr;
}

.faq-answer {
  overflow: hidden;
  min-height: 0;
  width: 100%;
}

.faq-answer p {
  margin: 0;
  padding-top: 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.2px;
  color: #dec4ff;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    padding-top 0.35s ease;
}

.faq-item.is-open .faq-answer p {
  padding-top: 4px;
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .faq-tabs {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    height: auto;
    gap: 8px;
    padding: 10px;
    border-radius: 20px;
  }

  .faq-tab {
    height: 40px;
    padding: 10px 16px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .faq-page {
    gap: 20px;
    padding-bottom: 16px;
  }

  .faq-tabs-wrap {
    width: 100%;
  }

  .faq-tabs {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 100%;
    height: 56px;
    padding: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-radius: 16px;
    gap: 6px;
  }

  .faq-tabs::-webkit-scrollbar {
    display: none;
  }

  .faq-tab {
    flex: 0 0 auto;
    height: 40px;
    padding: 8px 14px;
    font-size: 13px;
  }

  .faq-section {
    padding: 16px 12px;
  }

  .faq-list {
    gap: 10px;
  }

  .faq-item-inner {
    padding: 12px;
  }

  .faq-item.is-open .faq-item-inner {
    gap: 6px;
  }

  .faq-toggle {
    width: 32px;
    height: 32px;
    padding: 4px;
  }

  .faq-icon {
    width: 20px;
    height: 20px;
  }

  .faq-question {
    font-size: 15px;
  }

  .faq-answer p {
    font-size: 14px;
    line-height: 1.5;
  }

  .faq-item.is-open .faq-answer p {
    padding-top: 2px;
  }
}

/* FAQ — light mode */
html[data-theme='light'] .faq-page .faq-tabs {
  border: none;
  background: #fff;
  box-shadow: 0 8px 24px rgba(42, 36, 48, 0.08);
}

html[data-theme='light'] .faq-page .faq-tab {
  color: #111;
}

html[data-theme='light'] .faq-page .faq-tab.is-active {
  background: #bd0edc;
  color: #fff;
}

html[data-theme='light'] .faq-page .faq-tab:hover:not(.is-active) {
  background: #f4f4f4;
}

html[data-theme='light'] .faq-page .faq-section {
  border: none;
  background: #fff;
  box-shadow: 0 8px 24px rgba(42, 36, 48, 0.06);
}

html[data-theme='light'] .faq-page .faq-item-inner {
  border: 1px solid #ececec;
  background: #f7f7f7;
}

html[data-theme='light'] .faq-page .faq-question {
  color: #111;
}

html[data-theme='light'] .faq-page .faq-answer p,
html[data-theme='light'] .page-content .faq-page .faq-answer p {
  color: #848484;
}

html[data-theme='light'] .child-panel-faq {
  background: #fff;
  border-color: #ececec;
  box-shadow: 0 8px 24px rgba(42, 36, 48, 0.06);
}

html[data-theme='light'] .child-panel-faq-item-inner {
  border-color: #ececec;
  background: #f7f7f7;
  box-shadow: none;
}

html[data-theme='light'] .child-panel-faq-item.is-open .child-panel-faq-item-inner {
  border-color: #bd0edc;
}

html[data-theme='light'] .child-panel-faq .faq-question {
  color: #111;
}

html[data-theme='light'] .child-panel-faq .faq-answer p {
  color: #848484;
}

.terms-page {
  gap: 40px;
  align-items: stretch;
}

.terms-stack {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.terms-stack .faq-panel.is-active {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.terms-note,
.terms-date-card,
.terms-card {
  width: 100%;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  box-sizing: border-box;
}

.terms-note {
  padding: 24px;
  border: 1px solid #9440ff;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.terms-date-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border: 1px solid #9440ff;
}

.terms-date-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.terms-clock-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.terms-date-icon {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.terms-date-title {
  margin: 0;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
}

.terms-date-card p {
  margin: 0;
  color: #c1c4cc;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.terms-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.19);
}

.terms-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.terms-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #bd0edc;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

.terms-card-title {
  margin: 0;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
}

.terms-body {
  color: #c1c4cc;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.terms-body p {
  margin: 0 0 16px;
}

.terms-body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .terms-page {
    gap: 20px;
  }

  .terms-stack .faq-panel.is-active {
    gap: 12px;
  }

  .terms-note,
  .terms-date-card {
    padding: 16px;
  }

  .terms-card {
    padding: 20px 16px;
  }

  .terms-date-title,
  .terms-card-title {
    font-size: 18px;
  }

  .terms-body,
  .terms-date-card p {
    font-size: 14px;
  }

  .terms-badge {
    width: 32px;
    height: 32px;
    font-size: 15px;
  }
}

/* Terms — light mode */
html[data-theme='light'] .terms-page .terms-note,
html[data-theme='light'] .terms-page .terms-date-card,
html[data-theme='light'] .terms-page .terms-card {
  border: none;
  background: #fff;
  box-shadow: 0 8px 24px rgba(42, 36, 48, 0.06);
}

html[data-theme='light'] .terms-page .terms-note {
  color: #2a2430;
  text-align: center;
}

html[data-theme='light'] .page-content h2.terms-date-title,
html[data-theme='light'] .terms-page .terms-date-title,
html[data-theme='light'] .page-content h3.terms-card-title,
html[data-theme='light'] .terms-page .terms-card-title {
  color: #111;
}

html[data-theme='light'] .page-content .terms-page .terms-date-card p,
html[data-theme='light'] .terms-page .terms-date-card p,
html[data-theme='light'] .page-content .terms-page .terms-body,
html[data-theme='light'] .page-content .terms-page .terms-body p,
html[data-theme='light'] .terms-page .terms-body,
html[data-theme='light'] .terms-page .terms-body p {
  color: #5c5348;
}

html[data-theme='light'] .terms-page .terms-badge {
  background: #bd0edc;
  color: #fff;
}

/* Orders page */
.orders-page {
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
  width: 100%;
  max-width: 100%;
}

.orders-top {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
  isolation: isolate;
}

.orders-top::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 58%;
  z-index: 0;
  width: min(960px, 92%);
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(125, 25, 175, 0.48) 0%,
    rgba(189, 14, 220, 0.3) 28%,
    rgba(205, 54, 231, 0.14) 52%,
    rgba(125, 25, 175, 0.05) 68%,
    transparent 76%
  );
  filter: blur(42px);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.orders-top > * {
  position: relative;
  z-index: 1;
}

.orders-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-sizing: border-box;
  height: 103px;
  min-height: 103px;
  overflow: hidden;
  padding: 0 24px;
  border: 1px solid rgba(132, 132, 132, 0.4);
  border-radius: 24px;
  background-color: #110d14;
}

@media (min-width: 769px) {
  .orders-hero,
  .addfunds-heading {
    overflow: visible;
    padding-right: clamp(200px, 24vw, 460px);
  }

  .orders-hero-content,
  .addfunds-heading .addfunds-heading-copy,
  .addfunds-page section.addfunds-heading .addfunds-heading-copy,
  .giveaway-page section.addfunds-heading .addfunds-heading-copy,
  .dashboard-page section.addfunds-heading .addfunds-heading-copy,
  .ai-rec-page section.addfunds-heading .addfunds-heading-copy {
    max-width: calc(100% - clamp(200px, 24vw, 460px));
  }
}

.orders-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background-image: var(--orders-hero-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  pointer-events: none;
}

@keyframes hero-header-logo-float {
  0%,
  100% {
    transform: translate3d(0, 10%, 0);
  }

  50% {
    transform: translate3d(0, calc(10% - 18px), 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .orders-hero::after,
  .addfunds-heading::after {
    animation: none;
    transform: translate3d(0, 10%, 0);
  }
}

.orders-hero::after {
  content: '';
  position: absolute;
  top: auto;
  left: auto;
  right: 24px;
  bottom: 0;
  z-index: 2;
  width: clamp(180px, 22vw, 420px);
  max-width: 420px;
  height: 118%;
  background: url('https://storage.perfectcdn.com/770smr/29ye7bbishlscygp.png') no-repeat right bottom / contain;
  pointer-events: none;
  transform: translate3d(0, 10%, 0);
  transform-origin: right bottom;
  animation: hero-header-logo-float 4s ease-in-out infinite;
  will-change: transform;
}

.orders-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  width: auto;
  max-width: none;
}

.page-content h1.orders-hero-title,
.orders-hero-title {
  margin: 0;
  font-family: 'Parkinsans', sans-serif;
  font-size: var(--text-title);
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
}

.page-content p.orders-hero-text,
.orders-hero-text {
  margin: 0;
  font-family: 'Parkinsans', sans-serif;
  font-size: var(--text-body);
  font-weight: 300;
  line-height: 1.76;
  color: #b7b7b8;
  white-space: nowrap;
}

.orders-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(12px, 1.4vw, 20px);
  min-height: 98px;
  padding: clamp(16px, 1.8vw, 25px) clamp(16px, 2.1vw, 30px);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(132, 132, 132, 0.4);
}

.orders-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.orders-filter {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 48px;
  padding: 4px 16px 4px 4px;
  border: 1px solid rgba(115, 115, 115, 0.5);
  border-radius: 12px;
  background: rgba(10, 10, 10, 0.2);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.15s ease,
    border-color 0.15s ease;
}

.orders-filter:hover {
  border-color: rgba(189, 14, 220, 0.6);
  color: #fff;
  text-decoration: none;
}

.orders-filter.is-active {
  border-color: #bd0edc;
  background: #bd0edc;
}

.orders-filter-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 8px;
  flex-shrink: 0;
}

.orders-filter-icon iconify-icon {
  display: block;
  width: 24px;
  height: 24px;
  font-size: 24px;
  color: #fff;
  flex-shrink: 0;
}

.orders-search {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 320px;
  max-width: 100%;
  height: 48px;
  padding: 4px 12px 4px 20px;
  border: 1px solid rgba(115, 115, 115, 0.5);
  border-radius: 12px;
  background: rgba(10, 10, 10, 0.2);
  flex-shrink: 0;
}

.orders-search-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #d3d3d3;
}

.orders-search-icon iconify-icon {
  display: block;
  width: 20px;
  height: 20px;
  font-size: 20px;
  flex-shrink: 0;
}

.orders-search-input {
  width: 100%;
  border: none;
  background: transparent;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  outline: none;
}

.orders-search-input::placeholder {
  color: #d3d3d3;
}

.orders-table-card {
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid rgba(205, 54, 231, 0.4);
  border-radius: 16px;
  background: #1a161e;
  -webkit-overflow-scrolling: touch;
  cursor: default;
}

.orders-table-card.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.orders-table-card.is-dragging * {
  user-select: none;
}

.orders-table-card.table-responsive {
  margin-bottom: 0;
  overflow-x: auto;
}

.orders-table {
  --bs-table-bg: transparent;
  --bs-table-color: #ebecef;
  --bs-table-border-color: #2d2d2d;
  --bs-table-hover-bg: transparent;
  --bs-table-striped-bg: transparent;
  --bs-table-active-bg: transparent;
  width: 100%;
  min-width: 1120px;
  margin-bottom: 0;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  font-family: 'Parkinsans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.orders-col-w-id {
  width: 7%;
}
.orders-col-w-date {
  width: 8%;
}
.orders-col-w-link {
  width: 15%;
}
.orders-col-w-charge {
  width: 6%;
}
.orders-col-w-start {
  width: 6%;
}
.orders-col-w-qty {
  width: 6%;
}
.orders-col-w-service {
  width: 17%;
}
.orders-col-w-refill {
  width: 8%;
}
.orders-col-w-remains {
  width: 6%;
}
.orders-col-w-status {
  width: 10%;
}
.orders-col-w-order {
  width: 11%;
}

.orders-table > :not(caption) > * > * {
  padding: 15px 6px;
  border-bottom: 0.5px solid #2d2d2d;
  background-color: transparent;
  box-shadow: none;
  vertical-align: middle;
  overflow: hidden;
}

.orders-table > thead > tr > th {
  padding: 20px 6px;
  border-bottom: none;
  background: #28202d;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.orders-table > thead > tr > th.orders-th-wrap {
  white-space: normal;
  line-height: 1.3;
}

@media (min-width: 769px) {
  .orders-table > thead > tr > th.orders-th-truncate {
    overflow: visible;
    cursor: default;
  }

  .orders-tooltip-target {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: default;
    outline: none;
  }

  .orders-link-text.orders-tooltip-target {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
    text-overflow: ellipsis;
  }

  .orders-cell-service.orders-tooltip-target {
    display: block;
    white-space: normal;
    overflow: hidden;
  }

  .orders-cell-service-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .orders-table > tbody > tr > td .orders-cell-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: default;
  }
}

.orders-hover-tooltip {
  position: fixed;
  z-index: 10000;
  max-width: min(420px, calc(100vw - 24px));
  padding: 8px 12px;
  border-radius: 8px;
  background: #28202d;
  border: 1px solid rgba(205, 54, 231, 0.55);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.orders-th-id {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.orders-th-id-label {
  white-space: nowrap;
}

.orders-copy-ids-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid rgba(189, 14, 220, 0.6);
  border-radius: 6px;
  background: rgba(189, 14, 220, 0.15);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease;
}

.orders-copy-ids-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.orders-copy-ids-btn:hover {
  background: rgba(189, 14, 220, 0.28);
  border-color: #bd0edc;
}

.orders-copy-ids-btn.is-copied {
  border-color: #19ab1e;
  background: rgba(25, 171, 30, 0.2);
  color: #8ef598;
}

.orders-copy-ids-btn iconify-icon {
  display: block;
  flex-shrink: 0;
}

.orders-copy-id-btn {
  display: none;
}

.orders-cell-id-main {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.orders-table > thead > tr > th:first-child,
.orders-table > tbody > tr > td:first-child {
  padding-left: 28px;
}

.orders-table > thead > tr > th:last-child,
.orders-table > tbody > tr > td:last-child {
  padding-right: 28px;
}

.orders-table > tbody > tr:last-child > td {
  border-bottom: none;
}

.orders-table > tbody > tr:hover > td {
  background-color: transparent;
}

.orders-cell-inner {
  min-width: 0;
  color: #ebecef;
}

.orders-cell-id {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.orders-row-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 2px;
  background: transparent;
  flex-shrink: 0;
  pointer-events: none;
  transition:
    background 0.15s ease,
    border-color 0.15s ease;
}

.orders-row-check.orders-check-all {
  pointer-events: auto;
  cursor: pointer;
}

.orders-row-check.orders-check-all:hover {
  border-color: #bd0edc;
}

.orders-row-check:hover {
  border-color: #fff;
}

.orders-cell-id:hover .orders-row-check {
  border-color: #bd0edc;
}

.orders-row-check.is-selected {
  border-color: #bd0edc;
  background: #bd0edc;
}

.orders-row-check-icon {
  display: none;
  color: #fff;
}

.orders-row-check.is-selected .orders-row-check-icon {
  display: block;
}

.orders-row-id {
  white-space: nowrap;
}

.orders-cell-date {
  display: flex;
  flex-direction: column;
}

.orders-date-main,
.orders-date-time {
  display: block;
  line-height: 1.5;
}

.orders-cell-link {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.orders-link-text {
  flex: 1;
  min-width: 0;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.orders-details-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  color: #dec4ff;
  text-decoration: none;
}

.orders-details-btn iconify-icon {
  width: 18px;
  height: 18px;
}

.orders-cell-service {
  min-width: 0;
}

.orders-cell-service-text {
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.orders-cell-refill {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
}

.orders-cell-refill .order-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.orders-table > thead > tr > th:nth-last-child(2),
.orders-table > tbody > tr > td.orders-td-status {
  min-width: 118px;
  overflow: hidden;
  text-align: left;
}

.orders-table > thead > tr > th:last-child,
.orders-table > tbody > tr > td.orders-td-order {
  min-width: 118px;
  text-align: center;
  overflow: hidden;
}

.orders-cell-order {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
  max-width: 100%;
}

.orders-cell-order .orders-btn {
  width: auto;
  max-width: 100%;
  min-width: 0;
  min-height: 38px;
  padding: 0 12px;
  font-size: 13px;
  line-height: 1.4;
}

.orders-cell-status {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  min-width: 0;
  max-width: 100%;
}

.orders-cell-status .orders-badge {
  flex: 0 1 auto;
  max-width: 100%;
}

.orders-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 110px;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid #3b2d3d;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(2.5px);
  -webkit-backdrop-filter: blur(2.5px);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.orders-btn:hover {
  border-color: #bd0edc;
  color: #fff;
  text-decoration: none;
}

.orders-btn.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.orders-action-text,
.orders-empty-cell {
  font-size: 14px;
  color: #cfcfcf;
}

.orders-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: auto;
  min-width: 0;
  max-width: 100%;
  min-height: 34px;
  padding: 6px 10px;
  border-radius: 8px;
  font-family: 'Parkinsans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  text-align: center;
  white-space: nowrap;
}

.orders-badge--partial,
.orders-badge--default {
  background: #bd0edc;
}

.orders-badge--completed {
  background: #19ab1e;
}

.orders-badge--inprogress {
  background: #0761d1;
}

.orders-badge--pending {
  background: #e16f07;
}

.orders-badge--processing {
  background: #d0aa00;
}

.orders-badge--canceled {
  background: #e90606;
}

.orders-reason-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: #dec4ff;
  cursor: pointer;
}

.orders-reason-btn iconify-icon {
  width: 18px;
  height: 18px;
}

.orders-empty-state {
  padding: 48px 28px;
  text-align: center;
  color: #b7b7b8;
  border-bottom: none !important;
}

.orders-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.orders-pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(115, 115, 115, 0.5);
  border-radius: 8px;
  background: rgba(10, 10, 10, 0.2);
  color: #fff;
  text-decoration: none;
}

.orders-pagination a:hover {
  border-color: #bd0edc;
  color: #fff;
}

.orders-pagination .is-active a,
.orders-pagination li.is-active a {
  border-color: #bd0edc;
  background: #bd0edc;
}

.orders-pagination iconify-icon {
  width: 20px;
  height: 20px;
}

.orders-mobile-bar {
  display: none;
}

.orders-selection-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 420;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 183px;
  padding: 0 16px 61px;
  pointer-events: none;
}

.orders-selection-dock[hidden] {
  display: none !important;
}

.orders-selection-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(17, 13, 20, 0) 0%,
    #a215bb 100%
  );
  pointer-events: none;
}

.orders-selection-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 10px 24px;
  border: 0;
  border-radius: 12px;
  background: #bd0edc;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 10px 28px rgba(162, 21, 187, 0.35);
}

.orders-selection-btn:hover,
.orders-selection-btn:focus {
  outline: none;
  filter: brightness(1.06);
}

.orders-selection-label {
  white-space: nowrap;
}

.orders-selection-btn iconify-icon {
  flex-shrink: 0;
  color: #fff;
}

.orders-page.has-selection {
  padding-bottom: 120px;
}

@media (max-width: 1200px) {
  .orders-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .orders-search {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .orders-page {
    gap: 16px;
  }

  .orders-top {
    gap: 16px;
  }

  .orders-top::before {
    display: none;
  }

  .orders-hero {
    height: auto;
    min-height: 0;
    padding: 20px 16px;
    background-color: #110d14;
    background-image: linear-gradient(
      90deg,
      #110d14 0%,
      #110d14 36%,
      rgba(189, 14, 220, 0.28) 68%,
      rgba(189, 14, 220, 0.5) 100%
    );
    border: 1px solid rgba(132, 132, 132, 0.4);
  }

  .orders-hero::before {
    display: none;
  }

  .orders-hero::after {
    display: none;
    animation: none;
  }

  .page-content h1.orders-hero-title,
  .orders-hero-title {
    font-size: 18px;
  }

  .page-content p.orders-hero-text,
  .orders-hero-text {
    font-size: 12px;
    line-height: 1.76;
    white-space: normal;
  }

  .orders-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    min-height: 0;
    padding: 16px;
  }

  .orders-filters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
    justify-items: center;
  }

  .orders-filter {
    width: 100%;
    max-width: 100%;
    height: 44px;
    padding: 4px 12px 4px 4px;
    font-size: 13px;
    white-space: nowrap;
    justify-content: center;
  }

  .orders-filter--full {
    grid-column: 1 / -1;
  }

  .orders-filter-icon {
    width: 36px;
    height: 36px;
    padding: 6px;
  }

  .orders-filter-icon iconify-icon {
    width: 22px;
    height: 22px;
    font-size: 22px;
  }

  .orders-search {
    width: 100%;
  }

  .orders-mobile-bar {
    display: none;
  }

  .orders-selection-dock {
    height: calc(183px + 58px + env(safe-area-inset-bottom, 0px));
    padding-bottom: calc(70px + env(safe-area-inset-bottom, 0px));
  }

  .orders-page.has-selection {
    padding-bottom: calc(140px + env(safe-area-inset-bottom, 0px));
  }

  .orders-selection-btn {
    min-height: 44px;
    padding: 10px 20px;
    font-size: 16px;
    gap: 10px;
  }

  .orders-copy-id-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-shrink: 0;
    margin-left: auto;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 1px solid rgba(189, 14, 220, 0.6);
    border-radius: 6px;
    background: rgba(189, 14, 220, 0.15);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
  }

  .orders-copy-id-btn[hidden] {
    display: none !important;
  }

  .orders-copy-id-btn.is-copied {
    border-color: #19ab1e;
    background: rgba(25, 171, 30, 0.2);
    color: #8ef598;
  }

  .orders-copy-id-btn iconify-icon {
    display: block;
    flex-shrink: 0;
  }

  .orders-cell-id {
    justify-content: space-between;
    width: 100%;
    gap: 10px;
  }

  .orders-table > tbody > tr > td:first-child > .orders-cell-inner {
    width: 100%;
  }

  .orders-table-card {
    overflow: visible;
    cursor: default;
    border: none;
    background: transparent;
    padding: 0;
  }

  .orders-table-card.is-dragging,
  .orders-table-card.is-dragging * {
    cursor: default;
    user-select: auto;
  }

  .orders-table,
  .orders-table > tbody {
    display: block;
    width: 100%;
    table-layout: auto;
  }

  .orders-table colgroup {
    display: none;
  }

  .orders-table {
    min-width: 0;
  }

  .orders-table > thead {
    display: none;
  }

  .orders-table > tbody > tr.orders-row {
    display: block;
    width: 100%;
    margin-bottom: 16px;
    border: 1px solid rgba(205, 54, 231, 0.55);
    border-radius: 16px;
    background: #1a161e;
    overflow: hidden;
  }

  .orders-table > tbody > tr.orders-row:last-child {
    margin-bottom: 0;
  }

  .orders-table > tbody > tr > td {
    display: flex !important;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    padding: 14px 16px !important;
    border-bottom: 0.5px solid #2d2d2d;
    overflow: visible;
    float: none;
    clear: both;
  }

  .orders-table > tbody > tr > td::before {
    content: attr(data-label);
    flex: 0 0 38%;
    max-width: 110px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    color: #b7b7b8;
  }

  .orders-table > tbody > tr > td:first-child {
    background: #28202d;
    border-bottom: 1px solid #2d2d2d;
  }

  .orders-table > tbody > tr > td:first-child::before {
    display: none;
  }

  .orders-table > tbody > tr > td:last-child {
    border-bottom: none;
  }

  .orders-table > tbody > tr > td > .orders-cell-inner,
  .orders-table > tbody > tr > td > .order-actions,
  .orders-table > tbody > tr > td > .orders-empty-cell {
    flex: 1;
    min-width: 0;
    text-align: right;
  }

  .orders-table > tbody > tr > td:first-child > .orders-cell-inner {
    text-align: left;
  }

  .orders-cell-date {
    align-items: flex-end;
  }

  .orders-cell-link,
  .orders-cell-service {
    justify-content: flex-end;
  }

  .orders-link-text,
  .orders-cell-service,
  .orders-cell-service-text {
    display: block;
    white-space: normal;
    word-break: break-word;
    overflow: visible;
    -webkit-line-clamp: unset;
    text-align: right;
  }

  .orders-cell-refill .order-actions,
  .orders-cell-order,
  .orders-cell-status {
    align-items: flex-end;
  }

  .orders-cell-order {
    justify-content: flex-end;
  }

  .orders-cell-status {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .orders-td-refill,
  .orders-td-status,
  .orders-td-order {
    align-items: center;
    background: rgba(40, 32, 45, 0.45);
  }

  .orders-td-refill {
    border-top: 1px solid rgba(205, 54, 231, 0.25);
  }

  .orders-td-refill::before,
  .orders-td-status::before,
  .orders-td-order::before {
    flex: 0 0 auto;
    min-width: 72px;
    max-width: none;
    padding-top: 2px;
  }

  .orders-td-refill > .orders-cell-inner,
  .orders-td-status > .orders-cell-inner,
  .orders-td-order > .orders-cell-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: auto;
    flex: 1;
    flex-direction: row;
  }

  .orders-cell-refill {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
  }

  .orders-cell-refill .order-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    width: 100%;
  }

  .orders-td-order {
    border-bottom: none;
    padding-bottom: 16px !important;
  }

  .orders-td-order .orders-btn,
  .orders-td-refill .orders-btn {
    width: auto;
    min-width: 108px;
    min-height: 38px;
    padding: 0 16px;
    font-size: 13px;
  }

  .orders-td-status .orders-badge {
    width: auto;
    min-width: 0;
    min-height: 32px;
    padding: 6px 14px;
    font-size: 13px;
  }

  .orders-td-status .orders-cell-status {
    gap: 8px;
  }

  .orders-badge {
    width: auto;
    min-width: 0;
    max-width: 100%;
  }

  .orders-btn {
    max-width: none;
  }

  .orders-empty-state {
    display: block;
    border: 1px solid rgba(205, 54, 231, 0.55);
    border-radius: 16px;
    background: #1a161e;
  }

  .services-table > tbody > tr.services-category-row {
    display: block;
    margin: 0 0 12px;
    border: none;
    background: transparent;
  }

  .services-table > tbody > tr.services-category-row > td {
    display: block;
    width: 100% !important;
    padding: 0 !important;
    border: none;
    background: transparent;
  }

  .services-table > tbody > tr.services-category-row > td::before {
    display: none;
  }

  .services-category-bar {
    margin-top: 0;
    border-radius: 12px;
  }

  .services-table > tbody > tr.services-row > td:first-child {
    background: transparent;
  }

  .services-table > tbody > tr.services-row > td.services-td-id {
    background: #28202d;
    border-bottom: 1px solid #2d2d2d;
  }

  .services-table > tbody > tr.services-row > td.services-td-id::before {
    display: none;
  }

  .services-table > tbody > tr.services-row > td.services-td-actions {
    border-bottom: none;
    padding-bottom: 16px !important;
  }

  .services-actions-cell {
    justify-content: flex-end;
  }

  .services-actions-cell .orders-btn {
    width: auto;
    min-width: 108px;
  }
}

/* Services page */
.services-toolbar-figma {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border: 1px solid rgba(132, 132, 132, 0.4);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
}

.services-page .orders-top {
  z-index: 50;
}

.services-toolbar-figma {
  position: relative;
  z-index: 200;
}

.services-filter-dropdown,
.services-currency-dropdown {
  position: relative;
  z-index: 1;
}

.services-filter-dropdown.is-open,
.services-currency-dropdown.is-open {
  z-index: 200;
}

.services-filter-dropdown .services-filter-menu,
.services-currency-dropdown .services-filter-menu,
.services-page .services-filter-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 210;
}

.services-filter-dropdown.is-open .services-filter-menu,
.services-currency-dropdown.is-open .services-filter-menu {
  display: block;
}

.services-currency-dropdown .services-filter-menu {
  left: auto;
  right: 0;
}

.services-filter-tab.dropdown-toggle::after,
.services-category-pill--currency.dropdown-toggle::after {
  display: none;
  content: none;
}

.services-filter-tab {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 216px;
  max-width: min(280px, 36vw);
  min-height: 62px;
  padding: 16px 16px 16px 20px;
  border: none;
  border-radius: 8px;
  background: #bd0edc;
  color: #fff;
  font-family: 'Parkinsans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
}

.services-filter-tab-main {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
}

.services-filter-tab-label {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  flex: 1 1 auto;
  color: #fff;
  -webkit-text-fill-color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
}

.services-filter-tab-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.services-filter-tab-caret {
  flex-shrink: 0;
  margin-left: auto;
  color: #fff;
}

.services-search-figma {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex: 1;
  min-width: 0;
  min-height: 62px;
  padding: 16px 24px;
  border: 1px solid rgba(115, 115, 115, 0.5);
  border-radius: 8px;
  background: rgba(10, 10, 10, 0.2);
}

.services-search-input {
  flex: 1;
  min-width: 0;
  padding: 0;
  border: none;
  background: transparent;
  color: #f7f2f2;
  caret-color: #f7f2f2;
  font-family: 'Parkinsans', sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  box-shadow: none;
}

.services-search-figma .services-search-input.form-control,
.services-search-figma .services-search-input.form-control:focus {
  color: #f7f2f2;
  caret-color: #f7f2f2;
  background: transparent;
  border: none;
  box-shadow: none;
}

.services-search-input:focus {
  outline: none;
  box-shadow: none;
  background: transparent;
  color: #f7f2f2;
}

.services-search-input::placeholder {
  color: rgba(247, 242, 242, 0.85);
  opacity: 1;
}

.services-search-figma .services-search-input:-webkit-autofill,
.services-search-figma .services-search-input:-webkit-autofill:focus {
  -webkit-text-fill-color: #f7f2f2;
  caret-color: #f7f2f2;
  transition: background-color 9999s ease-out 0s;
  box-shadow: 0 0 0 1000px transparent inset;
}

.services-search-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  padding: 4px;
  border: none;
  border-radius: 4px;
  background: #bd0edc;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 768px) {
  .services-toolbar-figma {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 12px;
  }

  .services-filter-dropdown {
    width: 100%;
    position: relative;
  }

  .services-filter-tab {
    width: 100%;
    max-width: 100%;
    min-height: 56px;
    padding: 14px 16px;
    font-size: 16px;
    box-sizing: border-box;
  }

  .services-filter-tab-label {
    max-width: 100%;
    flex: 1;
    min-width: 0;
  }

  .services-filter-dropdown {
    z-index: 80;
  }

  .services-filter-dropdown.is-open {
    z-index: 200;
  }

  .services-filter-dropdown .services-filter-menu,
  .services-page .services-filter-menu {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    left: 0 !important;
    right: 0 !important;
    z-index: 210;
  }

  .services-sections {
    gap: 16px;
    position: relative;
    z-index: 1;
  }

  .services-section {
    margin-bottom: 0;
  }

  .services-category-bar,
  .services-section.is-expanded .services-category-bar,
  .services-section.is-collapsed .services-category-bar {
    margin-bottom: 12px;
    border-radius: 12px;
  }

  .services-section-body {
    padding-top: 0;
  }

  .services-section-body .services-table-card {
    border-radius: 16px;
    overflow: visible;
    padding-top: 0;
  }

  .services-search-figma {
    width: 100%;
    min-height: 56px;
    padding: 14px 16px;
  }

  .services-search-input,
  .services-search-figma .services-search-input.form-control {
    font-size: 16px;
  }
}

.services-page .services-filter-menu {
  width: max(100%, 360px);
  min-width: 360px;
  max-width: min(480px, 92vw);
  max-height: min(420px, 60vh);
  overflow-x: hidden;
  overflow-y: auto;
  margin-top: 8px;
  padding: 8px 6px 8px 8px;
  border: 1px solid rgba(205, 54, 231, 0.45);
  border-radius: 12px;
  background: #1a161e;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: #5a4a62 #141018;
}

.services-page .services-filter-menu::-webkit-scrollbar {
  width: 4px;
}

.services-page .services-filter-menu::-webkit-scrollbar-track {
  background: #141018;
  border-radius: 8px;
}

.services-page .services-filter-menu::-webkit-scrollbar-thumb {
  background: #5a4a62;
  border-radius: 8px;
}

.services-page .services-filter-menu::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

.services-page .services-filter-menu .dropdown-item.is-active,
.services-page .services-filter-menu > li.active > a {
  background: rgba(189, 14, 220, 0.28);
  color: #fff;
}

.services-page .services-filter-menu > li > a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 8px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  white-space: normal;
}

.services-page .services-filter-menu > li > a:hover,
.services-page .services-filter-menu > li.active > a {
  background: rgba(189, 14, 220, 0.2);
  color: #fff;
}

.services-currency-row {
  display: flex;
  justify-content: flex-end;
}

.services-category-pill--currency {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border: 1px solid rgba(115, 115, 115, 0.5);
  border-radius: 8px;
  background: rgba(10, 10, 10, 0.2);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.services-category-icon {
  max-width: calc(1em + 6px);
  max-height: calc(1em + 6px);
}

.services-table-card {
  overflow-x: auto;
  padding-top: 0;
}

.services-table {
  min-width: 1100px;
}

.services-col-w-id {
  width: 10%;
}
.services-col-w-service {
  width: 28%;
}
.services-col-w-rate {
  width: 14%;
}
.services-col-w-minmax {
  width: 12%;
}
.services-col-w-refill {
  width: 12%;
}
.services-col-w-time {
  width: 12%;
}
.services-col-w-actions {
  width: 12%;
}

.services-table > thead > tr > th {
  font-family: 'Parkinsans', sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.services-table > tbody > tr.services-category-row > td {
  padding: 0;
  border-bottom: none;
  background: transparent;
  overflow: visible;
}

.services-category-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  margin-top: 16px;
  padding: 14px 20px;
  border: none;
  border-radius: 8px 8px 0 0;
  background: #bd0edc;
  color: #fff;
  font-family: 'Parkinsans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
}

.services-table
  > tbody
  > tr.services-category-row:first-child
  .services-category-bar {
  margin-top: 0;
}

.services-category-bar-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.services-category-bar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.services-category-bar-chevron {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.services-category-row.is-collapsed .services-category-bar-chevron {
  transform: rotate(-90deg);
}

.services-id-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}

.services-row-id {
  white-space: nowrap;
}

.services-favorite-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 4px;
  background: transparent;
  color: #b7b7b8;
  cursor: pointer;
  transition: color 0.15s ease;
}

.services-favorite-btn:hover,
.services-favorite-btn.favorite-active,
.services-favorite-btn.is-active {
  color: #f5c518;
}

.services-name-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  text-align: left;
}

.services-name-title {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.services-name-meta {
  color: #8a8a8b;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}

.services-rate-cell {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.services-rate-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #b7b7b8;
  flex-shrink: 0;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.15s ease,
    color 0.15s ease;
}

a.services-rate-icon:hover {
  background: #bd0edc;
  color: #fff;
}

.services-rate-value {
  white-space: nowrap;
}

.services-refill-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #b7b7b8;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
}

.services-actions-cell {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.services-desc-btn {
  width: auto;
  max-width: none;
  min-width: 88px;
  min-height: 38px;
  padding: 0 14px;
  font-size: 13px;
}

.services-buy-btn {
  width: auto;
  max-width: none;
  min-width: 96px;
  min-height: 38px;
  padding: 0 16px;
  border-color: #bd0edc;
  background: #bd0edc;
  font-size: 13px;
}

.services-buy-btn:hover {
  border-color: #d042ee;
  background: #d042ee;
  color: #fff;
}

.services-info-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
  padding: 0;
  border: none;
  background: transparent;
  color: #b7b7b8;
  vertical-align: middle;
  cursor: help;
}

.services-text-card {
  border: 1px solid rgba(205, 54, 231, 0.45);
  border-radius: 16px;
  background: #1a161e;
  padding: 24px;
}

.services-text-card-inner {
  color: #b7b7b8;
  font-family: 'Parkinsans', sans-serif;
  font-size: 14px;
  line-height: 1.7;
}

/* Services page v2 */
.services-sections {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.services-section {
  display: block;
}

.services-section.is-collapsed .services-section-body {
  display: none !important;
}

.services-section.is-collapsed .services-category-bar {
  border-radius: 12px;
  background: #1a161e;
  color: #fff;
}

.services-section.is-collapsed .services-category-bar-chevron {
  transform: rotate(-90deg);
}

.services-category-bar {
  margin-top: 0;
  border-radius: 12px 12px 0 0;
}

.services-section-body .services-table-card {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.services-section-body .services-table {
  min-width: 100%;
}

.services-section-body .services-table > thead > tr > th {
  padding: 18px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.services-section-body .services-table > :not(caption) > * > * {
  padding: 14px 16px;
}

.services-section-body .services-table > thead > tr > th:first-child,
.services-section-body .services-table > tbody > tr > td:first-child {
  padding-left: 18px;
}

.services-section-body .services-table > thead > tr > th:last-child,
.services-section-body .services-table > tbody > tr > td:last-child {
  padding-right: 18px;
}

.services-col-w-id {
  width: 10%;
}
.services-col-w-service {
  width: 31%;
}
.services-col-w-rate {
  width: 14%;
}
.services-col-w-minmax {
  width: 14%;
}
.services-col-w-refill {
  width: 12%;
}
.services-col-w-time {
  width: 13%;
}
.services-col-w-actions {
  width: 16%;
}

.services-td-id .orders-cell-inner,
.services-row > td:not(.services-td-actions) .orders-cell-inner {
  text-align: left;
}

.services-rate-cell {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.services-rate-icon {
  width: 28px;
  height: 28px;
}

.services-refill-badge {
  border-radius: 6px;
  padding: 7px 14px;
}

.services-actions-cell {
  flex-wrap: nowrap;
}

.services-buy-btn,
.services-desc-btn {
  min-width: 76px;
}

.services-category-pill--currency {
  text-decoration: none;
}

@media (max-width: 768px) {
  .services-page .services-rate-icon {
    display: none !important;
  }

  .services-page .orders-top {
    z-index: 50;
  }

  .services-toolbar-figma,
  .services-filter-dropdown.is-open {
    z-index: 200;
  }

  .services-filter-dropdown .services-filter-menu,
  .services-page .services-filter-menu {
    z-index: 210;
  }

  .services-category-bar,
  .services-section.is-expanded .services-category-bar,
  .services-section.is-collapsed .services-category-bar {
    margin-bottom: 12px;
    border-radius: 12px;
  }

  .services-section-body .services-table-card {
    border-radius: 16px;
    overflow: visible;
  }

  .services-section-body .services-table > thead {
    display: none;
  }

  .services-section-body .services-table,
  .services-section-body .services-table > tbody {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .services-section-body .services-table colgroup {
    display: none;
  }

  .services-section-body .services-table > tbody > tr.services-row {
    display: block;
    width: 100%;
    margin-bottom: 16px;
    border: 1px solid rgba(205, 54, 231, 0.55);
    border-radius: 16px;
    background: #1a161e;
    overflow: hidden;
  }

  .services-section-body .services-table > tbody > tr.services-row:first-child {
    margin-top: 4px;
  }

  .services-section-body .services-table > tbody > tr.services-row:last-child {
    margin-bottom: 0;
  }

  .services-section-body .services-table > tbody > tr.services-row > td {
    display: flex !important;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    width: 100% !important;
    max-width: 100% !important;
    padding: 14px 16px !important;
    border-bottom: 0.5px solid #2d2d2d;
  }

  .services-section-body
    .services-table
    > tbody
    > tr.services-row
    > td::before {
    content: attr(data-label);
    flex: 0 0 38%;
    max-width: 110px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    color: #b7b7b8;
  }

  .services-td-id {
    background: #28202d;
  }

  .services-td-id::before {
    display: none;
  }

  .services-td-actions {
    border-bottom: none !important;
  }

  .services-actions-cell {
    width: 100%;
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .services-section-body
    .services-table
    > tbody
    > tr.services-row
    > td
    > .orders-cell-inner {
    flex: 1;
    min-width: 0;
  }
}

body.services-modal-open {
  overflow: hidden;
}

.services-details-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(1, 0, 2, 0.78);
}

.services-details-modal.is-open {
  display: flex;
}

.services-details-dialog {
  display: flex;
  flex-direction: column;
  width: min(640px, 100%);
  max-height: min(88vh, 820px);
  overflow: hidden;
  border: 1px solid rgba(205, 54, 231, 0.45);
  border-radius: 20px;
  background: #141018;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.services-details-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-shrink: 0;
  padding: 16px 20px;
  background: #bd0edc;
}

.services-details-title {
  margin: 0;
  color: #fff;
  font-family: 'Parkinsans', sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
}

.services-details-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.services-details-x:hover,
.services-details-x:focus {
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.services-details-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 20px;
  scrollbar-width: thin;
  scrollbar-color: #5a4a62 #141018;
}

.services-details-body::-webkit-scrollbar {
  width: 4px;
}

.services-details-body::-webkit-scrollbar-track {
  background: #141018;
  border-radius: 8px;
}

.services-details-body::-webkit-scrollbar-thumb {
  background: #5a4a62;
  border-radius: 8px;
}

.services-details-body::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

.services-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.services-details-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  padding: 16px 18px;
  border: 1px solid rgba(115, 115, 115, 0.45);
  border-radius: 12px;
  background: rgba(10, 10, 10, 0.35);
}

.services-details-stat-label {
  color: #b7b7b8;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}

.services-details-stat-value {
  color: #fff;
  font-family: 'Parkinsans', sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  word-break: break-word;
}

.services-details-desc {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(115, 115, 115, 0.45);
  border-radius: 12px;
  background: rgba(10, 10, 10, 0.35);
}

.services-details-desc-label {
  color: #b7b7b8;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.services-details-desc-content {
  color: #fff;
  font-family: 'Parkinsans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}

.services-details-desc-content p {
  margin: 0 0 8px;
}

.services-details-desc-content p:last-child {
  margin-bottom: 0;
}

.services-details-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
  padding: 16px 20px 20px;
}

.services-details-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 44px;
  padding: 10px 22px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.services-details-btn--close {
  border: none;
  background: #bd0edc;
  color: #fff;
}

.services-details-btn--close:hover {
  background: #d042ee;
  color: #fff;
}

.services-details-btn--order {
  border: none;
  background: #7a1fa2;
  color: #fff;
}

.services-details-btn--order:hover {
  background: #8e2db8;
  color: #fff;
}

@media (max-width: 768px) {
  .services-details-modal {
    padding: 10px;
    align-items: flex-end;
  }

  .services-details-dialog {
    width: 100%;
    max-height: 92vh;
    border-radius: 16px 16px 12px 12px;
  }

  .services-details-header {
    padding: 14px 16px;
  }

  .services-details-title {
    font-size: 18px;
  }

  .services-details-body {
    padding: 16px;
    gap: 12px;
  }

  .services-details-grid {
    grid-template-columns: 1fr;
  }

  .services-details-stat-value {
    font-size: 18px;
  }

  .services-details-desc-content {
    font-size: 14px;
  }

  .services-details-footer {
    padding: 12px 16px 16px;
  }

  .services-details-btn {
    flex: 1;
    min-width: 0;
  }
}

/* Themed Bootstrap modals */
.modal-backdrop {
  background: rgba(1, 0, 2, 0.78);
}

.modal-backdrop.in,
.modal-backdrop.show {
  opacity: 1;
}

.modal:not(#module-captcha) .modal-dialog {
  width: auto;
  max-width: min(560px, calc(100% - 32px));
  margin: 24px auto;
}

.modal:not(#module-captcha) .modal-content {
  overflow: hidden;
  border: 1px solid rgba(205, 54, 231, 0.45);
  border-radius: 16px;
  background: #1a161e;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  color: #f7f2f2;
}

.modal:not(#module-captcha) .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(45, 45, 45, 0.9);
  background: #28202d;
}

.modal:not(#module-captcha) .modal-title {
  margin: 0;
  color: #fff;
  font-family: 'Parkinsans', sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.modal:not(#module-captcha) .modal-header .close {
  margin: 0;
  padding: 0;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(205, 54, 231, 0.45);
  border-radius: 8px;
  background: rgba(189, 14, 220, 0.12);
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  line-height: 30px;
  opacity: 1;
  text-shadow: none;
}

.modal:not(#module-captcha) .modal-header .close:hover,
.modal:not(#module-captcha) .modal-header .close:focus {
  background: #bd0edc;
  border-color: #bd0edc;
  color: #fff;
  opacity: 1;
}

.modal:not(#module-captcha) .modal-body {
  padding: 20px;
  color: #b7b7b8;
  font-family: 'Parkinsans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

.modal:not(#module-captcha) .modal-body p,
.modal:not(#module-captcha) .modal-body label {
  color: #b7b7b8;
}

.modal:not(#module-captcha) .modal-body .form-control,
.modal:not(#module-captcha) .modal-body textarea,
.modal:not(#module-captcha) .modal-body input {
  color: #f7f2f2;
  background: rgba(10, 10, 10, 0.35);
  border: 1px solid rgba(115, 115, 115, 0.5);
  border-radius: 8px;
  box-shadow: none;
}

.modal:not(#module-captcha) .modal-footer {
  padding: 16px 20px;
  border-top: 1px solid rgba(45, 45, 45, 0.9);
  background: #1a161e;
}

.modal:not(#module-captcha) .modal-footer .btn,
.modal:not(#module-captcha) .modal-footer .btn-default,
.modal:not(#module-captcha) .modal-footer .btn-primary {
  min-height: 40px;
  padding: 8px 18px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.modal:not(#module-captcha) .modal-footer .btn-default {
  border: 1px solid rgba(205, 54, 231, 0.45);
  background: transparent;
  color: #fff;
}

.modal:not(#module-captcha) .modal-footer .btn-primary {
  border: 1px solid #bd0edc;
  background: #bd0edc;
  color: #fff;
}

.modal:not(#module-captcha) .modal-footer .btn-default:hover,
.modal:not(#module-captcha) .modal-footer .btn-primary:hover {
  border-color: #d042ee;
  background: #d042ee;
  color: #fff;
}

@media (max-width: 768px) {
  .modal:not(#module-captcha) .modal-dialog {
    max-width: calc(100% - 24px);
    margin: 12px auto;
  }

  .modal:not(#module-captcha) .modal-header,
  .modal:not(#module-captcha) .modal-body,
  .modal:not(#module-captcha) .modal-footer {
    padding: 16px;
  }

  .modal:not(#module-captcha) .modal-title {
    font-size: 18px;
  }

  .modal:not(#module-captcha) .modal-body {
    font-size: 14px;
  }
}

/* Perfect Panel captcha modal — use default Bootstrap styling only */
#module-captcha.modal {
  z-index: 12060;
}

#module-captcha.modal.in,
#module-captcha.modal.show {
  display: block !important;
  pointer-events: auto;
}

#module-captcha.modal .modal-dialog,
#module-captcha.modal .modal-content,
#module-captcha.modal .modal-body,
#module-captcha #dynamic-captcha,
#module-captcha #dynamic-captcha iframe {
  pointer-events: auto;
}

#module-captcha.modal .modal-content {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  background: #fff;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.5);
  color: #212529;
}

#module-captcha.modal .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #dee2e6;
  background: #fff;
}

#module-captcha.modal .modal-title {
  margin: 0;
  color: #212529;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
}

#module-captcha.modal .modal-header .close {
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #000;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.5;
  text-shadow: none;
}

#module-captcha.modal .modal-header .close:hover,
#module-captcha.modal .modal-header .close:focus {
  background: transparent;
  border-color: transparent;
  color: #000;
  opacity: 0.75;
}

#module-captcha.modal .modal-body {
  padding: 1rem;
  color: #212529;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

/* Sign in page */
.signin-page {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 100vh;
  padding: 96px 24px 24px;
  background: #010002;
  overflow: auto;
}

.signin-page__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.signin-page__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: left center;
}

.signin-page__back {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 20px 6px 6px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: #bd0edc;
  color: #fff;
  font-family: 'Parkinsans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
}

.signin-page__back:hover {
  color: #fff;
  background: #d01af5;
}

.signin-page__back-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.signin-page__back-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.signin-page__card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 614px;
  margin: 0 auto;
  padding: clamp(24px, 3.2vw, 48px);
  border-radius: clamp(16px, 1.6vw, 24px);
  border: 0.33px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.signin-page__header {
  margin-bottom: clamp(20px, 2.4vw, 36px);
}

.signin-page__title {
  margin: 0 0 15px;
  font-family: 'Parkinsans', sans-serif;
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}

.signin-page__title-accent {
  color: #bd0edc;
}

.signin-page__subtitle {
  margin: 0;
  font-family: 'Parkinsans', sans-serif;
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 400;
  line-height: 1.45;
  color: #ebecef;
}

.signin-page__form {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-inline: 8px;
}

.signin-page__alert {
  padding: 12px 16px;
  border-radius: 12px;
  font-family: 'Parkinsans', sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.signin-page__alert--error {
  background: rgba(255, 87, 90, 0.15);
  border: 1px solid rgba(255, 87, 90, 0.4);
  color: #ff9a9c;
}

.signin-page__alert--success {
  background: rgba(46, 204, 113, 0.15);
  border: 1px solid rgba(46, 204, 113, 0.4);
  color: #8de4ac;
}

.signin-page__body {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.signin-page__fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.signin-page__fields--grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px 16px;
}

.signin-page__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.signin-page__label {
  font-family: 'Parkinsans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #ebecef;
}

.signin-page__input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 0 20px;
  border-radius: 12px;
  border: 0.4px solid rgba(255, 255, 255, 0.54);
  background: rgba(29, 29, 29, 0.5);
}

.signin-page__input-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}

.signin-page__input-icon img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.signin-page__input-icon--iconify iconify-icon {
  display: block;
  width: 18px;
  height: 18px;
  color: #fff;
}

.signin-page__input {
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-family: 'Parkinsans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 52px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.signin-page__input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.signin-page__toggle-password {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.signin-page__toggle-password iconify-icon {
  display: block;
  width: 18px;
  height: 18px;
}

.signin-page__options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.signin-page__options--terms {
  justify-content: flex-start;
}

.signin-page__options--terms .signin-page__remember {
  align-items: flex-start;
}

.signin-page__options--terms .signin-page__remember span:last-child {
  line-height: 1.5;
}

.signin-page__remember {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  padding-left: 26px;
  cursor: pointer;
  font-family: 'Parkinsans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #f5f6f7;
}

.signin-page__remember input[type='checkbox'] {
  position: absolute;
  top: 2px;
  left: 0;
  width: 16px;
  height: 16px;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.signin-page__remember-box {
  position: absolute;
  top: 2px;
  left: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  flex-shrink: 0;
  pointer-events: none;
}

.signin-page__terms-copy {
  display: inline;
  line-height: 1.5;
}

.signin-page__terms-link {
  pointer-events: auto;
}

.signin-page__extra-fields {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px 16px;
}

.signin-page__extra-fields .form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
}

.signin-page__extra-fields label {
  font-family: 'Parkinsans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #ebecef;
}

.signin-page__extra-fields .form-control,
.signin-page__extra-fields input,
.signin-page__extra-fields select,
.signin-page__extra-fields textarea {
  width: 100%;
  height: 52px;
  padding: 0 20px;
  border-radius: 12px;
  border: 0.4px solid rgba(255, 255, 255, 0.54);
  background: rgba(29, 29, 29, 0.5);
  color: #fff;
  font-family: 'Parkinsans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  outline: none;
}

.signin-page__extra-fields textarea {
  min-height: 96px;
  padding-top: 14px;
  padding-bottom: 14px;
  height: auto;
}

.signin-page__remember input:checked + .signin-page__remember-box {
  background: #bd0edc;
  border-color: #bd0edc;
  box-shadow: inset 0 0 0 2px #010002;
}

.signin-page__forgot {
  font-family: 'Parkinsans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #ff575a;
  text-decoration: underline;
  white-space: nowrap;
}

.signin-page__forgot:hover {
  color: #ff7a7c;
}

.signin-page__captcha {
  margin-top: -16px;
}

.signin-page__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.signin-page__submit {
  width: 100%;
  height: 52px;
  border: 0;
  border-radius: 12px;
  background: #bd0edc;
  color: #f5f6f7;
  font-family: 'Parkinsans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
}

.signin-page__submit:hover {
  background: #d01af5;
}

.signin-page__actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
}

.signin-page__submit--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}

.signin-page__submit--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.signin-page__divider {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  justify-content: center;
}

.signin-page__divider-line {
  width: 92px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}

.signin-page__divider-text {
  font-family: 'Parkinsans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
}

.signin-page__google-wrap {
  position: relative;
  width: 294px;
  max-width: 100%;
  height: 52px;
  margin: 0 auto;
}

.signin-page__google-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  height: 100%;
  padding: 16px 24px;
  border: 1px solid #9a9a9a;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.1);
  color: #000;
  font-family: 'Parkinsans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  pointer-events: none;
  user-select: none;
}

.signin-page__google-btn img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.signin-page__google-native {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.01;
  cursor: pointer;
}

.signin-page__google-native > div {
  width: 100% !important;
  height: 100% !important;
}

.signin-page__google-native iframe {
  width: 100% !important;
  height: 52px !important;
  min-height: 52px !important;
  margin: 0 !important;
}

.signin-page__signup {
  margin: 0;
  font-family: 'Parkinsans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  text-align: center;
}

.signin-page__signup a {
  color: #bd0edc;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid #bd0edc;
}

.signin-page__signup a:hover {
  color: #d01af5;
  border-bottom-color: #d01af5;
}

.signin-page__auth-text {
  position: fixed;
  bottom: 24px;
  left: 50%;
  z-index: 201;
  transform: translateX(-50%);
  max-width: 614px;
  width: calc(100% - 48px);
  padding: 16px 24px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #ebecef;
  font-family: 'Parkinsans', sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.signin-page__form--rtl,
.signin-page__auth-text--rtl {
  direction: rtl;
}

@media (min-width: 1200px) {
  .signin-page {
    justify-content: center;
    padding: 24px;
    overflow: hidden;
  }

  .signin-page__back {
    top: 100px;
    left: 100px;
  }
}

@media (max-width: 768px) {
  .signin-page {
    padding: 72px 14px 20px;
  }

  .signin-page__back {
    top: 16px;
    left: 14px;
    padding: 4px 14px 4px 4px;
    font-size: 13px;
    gap: 8px;
  }

  .signin-page__back-icon {
    width: 26px;
    height: 26px;
  }

  .signin-page__card {
    max-width: 480px;
    padding: 24px 18px;
    border-radius: 18px;
  }

  .signin-page__header {
    margin-bottom: 20px;
  }

  .signin-page__title {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .signin-page__subtitle {
    font-size: 14px;
    line-height: 1.4;
  }

  .signin-page__form {
    gap: 20px;
    padding-inline: 0;
  }

  .signin-page__body {
    gap: 12px;
  }

  .signin-page__fields {
    gap: 12px;
  }

  .signin-page__fields--grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .signin-page__extra-fields {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .signin-page__field {
    gap: 6px;
  }

  .signin-page__label {
    font-size: 13px;
  }

  .signin-page__input-wrap {
    height: 44px;
    padding: 0 14px;
    border-radius: 10px;
    gap: 8px;
  }

  .signin-page__input {
    font-size: 13px;
    line-height: 44px;
  }

  .signin-page__input-icon,
  .signin-page__input-icon img,
  .signin-page__input-icon--iconify iconify-icon,
  .signin-page__toggle-password,
  .signin-page__toggle-password iconify-icon {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
  }

  .signin-page__options {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .signin-page__remember,
  .signin-page__forgot {
    font-size: 13px;
  }

  .signin-page__remember-box {
    width: 15px;
    height: 15px;
  }

  .signin-page__actions {
    gap: 12px;
  }

  .signin-page__submit {
    height: 44px;
    font-size: 14px;
    border-radius: 10px;
  }

  .signin-page__divider {
    gap: 10px;
  }

  .signin-page__divider-line {
    width: 60px;
  }

  .signin-page__divider-text {
    font-size: 13px;
  }

  .signin-page__google-wrap {
    width: 100%;
    height: 44px;
  }

  .signin-page__google-btn {
    height: 44px;
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 10px;
    gap: 8px;
  }

  .signin-page__google-btn img {
    width: 20px;
    height: 20px;
  }

  .signin-page__google-native iframe {
    height: 44px !important;
    min-height: 44px !important;
  }

  .signin-page__signup {
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .signin-page {
    padding: 68px 10px 16px;
  }

  .signin-page__card {
    padding: 20px 14px;
    border-radius: 16px;
  }

  .signin-page__title {
    font-size: 20px;
  }

  .signin-page__subtitle {
    font-size: 13px;
  }

  .signin-page__input-wrap {
    height: 42px;
    padding: 0 12px;
  }

  .signin-page__input {
    font-size: 13px;
    line-height: 42px;
  }

  .signin-page__submit,
  .signin-page__google-btn,
  .signin-page__google-wrap {
    height: 42px;
  }

  .signin-page__google-native iframe {
    height: 42px !important;
    min-height: 42px !important;
  }
}

/* Auth pages — light mode */
html[data-theme='light'] .signin-page {
  background: #010002;
}

html[data-theme='light'] .signin-page__card {
  border: none;
  background: #fff;
  box-shadow: 0 8px 24px rgba(42, 36, 48, 0.06);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

html[data-theme='light'] .signin-page__title {
  color: #111;
}

html[data-theme='light'] .signin-page__subtitle,
html[data-theme='light'] .signin-page__signup,
html[data-theme='light'] .signin-page__divider-text,
html[data-theme='light'] .signin-page__auth-text {
  color: #848484;
}

html[data-theme='light'] .signin-page__label,
html[data-theme='light'] .signin-page__remember {
  color: #323232;
}

html[data-theme='light'] .signin-page__input-wrap {
  border: none;
  background: #ebebeb;
}

html[data-theme='light'] .signin-page__input {
  color: #323232;
}

html[data-theme='light'] .signin-page__input::placeholder {
  color: #848484;
}

html[data-theme='light'] .signin-page__input-icon img {
  filter: brightness(0) saturate(100%);
}

html[data-theme='light'] .signin-page__input-icon--iconify iconify-icon,
html[data-theme='light'] .signin-page__toggle-password {
  color: #323232;
}

html[data-theme='light'] .signin-page__remember-box {
  border-color: #cfcfcf;
  background: #fff;
}

html[data-theme='light'] .signin-page__remember input:checked + .signin-page__remember-box {
  background: #bd0edc;
  border-color: #bd0edc;
  box-shadow: inset 0 0 0 2px #fff;
}

html[data-theme='light'] .signin-page__alert--error {
  background: rgba(237, 42, 65, 0.08);
  border-color: rgba(237, 42, 65, 0.28);
  color: #b42318;
}

html[data-theme='light'] .signin-page__alert--success {
  background: rgba(26, 127, 55, 0.08);
  border-color: rgba(26, 127, 55, 0.28);
  color: #1a7f37;
}

html[data-theme='light'] .signin-page__divider-line {
  background: #dcdcdc;
}

html[data-theme='light'] .signin-page__auth-text {
  background: #fff;
  box-shadow: 0 8px 24px rgba(42, 36, 48, 0.06);
}

html[data-theme='light'] .signin-page__submit--ghost {
  background: #fff;
  border: 1px solid #bd0edc;
  color: #bd0edc;
}

html[data-theme='light'] .signin-page__submit--ghost:hover {
  background: #fdf2fd;
  color: #bd0edc;
}

/* New order page */
.neworder-page {
  display: flex;
  flex-direction: column;
  gap: var(--page-block-gap);
  width: 100%;
  overflow: visible;
}

.neworder-stats {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(10px, 1.2vw, 16px);
  min-height: clamp(160px, 15vw, 217px);
  padding: clamp(18px, 2vw, 28px) clamp(18px, 2.2vw, 32px);
  border: 1px solid rgba(205, 54, 231, 0.5);
  border-radius: clamp(20px, 2.2vw, 32px);
  background: linear-gradient(180deg, #470753 0%, #000 60%);
  overflow: visible;
}

.neworder-stats-gap {
  flex: 0 0 180px;
  width: 180px;
  height: 1px;
  pointer-events: none;
}

.neworder-stats-character {
  position: absolute;
  left: 48%;
  bottom: 2px;
  z-index: 1;
  width: clamp(220px, 9vw, 250px);
  height: clamp(220px, 13vw, 250px);
  object-fit: contain;
  object-position: bottom center;
  pointer-events: none;
  transform: translateX(-50%);
}

.neworder-stat {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  min-width: 0;
  flex: 1 1 0;
  overflow: hidden;
}

.neworder-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.neworder-stat-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.neworder-stat-icon .neworder-stat-icon-img--light {
  display: none;
}

.neworder-stat-icon .neworder-stat-icon-img--dark {
  display: block;
}

.neworder-stat-label {
  font-family: 'Parkinsans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #9a90a2;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.neworder-stat-value {
  font-family: 'Parkinsans', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.neworder-stat-hint {
  font-family: 'Parkinsans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: #9a90a2;
  max-width: 100%;
}

.neworder-stat-hint--wide {
  max-width: 100%;
}

.neworder-stat-link {
  font-family: 'Parkinsans', sans-serif;
  font-size: 12px;
  color: #d338ec;
  text-decoration: underline;
}

.neworder-stat-link:hover {
  color: #e040f5;
}

.neworder-stat-divider {
  width: 1px;
  align-self: center;
  height: 46px;
  background: rgba(255, 255, 255, 0.18);
  flex: 0 0 1px;
}

@media (min-width: 1440px) {
  .neworder-stats {
    gap: 24px;
    padding: 28px 40px;
  }

  .neworder-stats-gap {
    flex-basis: 200px;
    width: 200px;
  }
/* 
  .neworder-stats-character {
    width: 180px;
    height: 242px;
  } */

  .neworder-stat-value {
    font-size: 32px;
  }
}

.neworder-platforms {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.neworder-platform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  padding: 12px 16px;
  border: 0.5px solid rgba(205, 54, 231, 0.4);
  border-radius: 12px;
  background: #151515;
  color: #ebecef;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  cursor: pointer;
}

.neworder-platform.is-active {
  background: #bd0edc;
  border-color: #cd36e7;
}

.neworder-platform-icon {
  display: flex;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.neworder-platform-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.neworder-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--page-block-gap);
  align-items: start;
}

.neworder-panel {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  padding-bottom: 20px;
  border: 1px solid rgba(205, 54, 231, 0.3);
  border-radius: var(--panel-radius);
  background: #1a161e;
  /* Keep dropdown menus visible; clip only the tab strip. */
  overflow: visible;
}

.neworder-panel > .neworder-tabs {
  border-radius: var(--panel-radius) var(--panel-radius) 0 0;
  overflow-x: auto;
  overflow-y: hidden;
}

.neworder-panel > .neworder-tabs + .neworder-form {
  padding-top: var(--section-gap);
}

.neworder-details .neworder-details-body {
  padding-top: var(--section-gap);
}

.neworder-tabs {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 24px 24px 0;
  border-bottom: 2px solid #483954;
  position: relative;
  overflow-x: auto;
}

.neworder-tab {
  display: inline-flex;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px;
  border: 0;
  border-bottom: 4px solid transparent;
  border-radius: 8px 8px 0 0;
  background: transparent;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  z-index: 1;
  margin-bottom: -2px;
  appearance: none;
  -webkit-appearance: none;
}

.neworder-tab img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.neworder-tab img.neworder-tab-icon--natural {
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
  flex-shrink: 0;
  object-fit: unset;
}

.neworder-tab:hover,
.neworder-tab:focus {
  color: #fff;
  text-decoration: none;
}

.neworder-tab.is-active {
  border-bottom-color: #d338ec;
}

.neworder-tab:disabled {
  opacity: 0.55;
  cursor: default;
}

.neworder-form,
.neworder-details-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 24px;
}

.neworder-form .form-group:not(.hidden) {
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.neworder-form .hidden,
.neworder-form .form-group.hidden {
  display: none !important;
}

.neworder-form #fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
}

.neworder-form #fields > .form-group,
.neworder-form #fields > .fields,
.neworder-form #fields > * {
  margin: 0 !important;
}

.neworder-form #fields > #dripfeed,
.neworder-form #fields #dripfeed:not(.hidden) {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.neworder-form #fields #order_check:not(.hidden),
.neworder-form #fields #order_check.form-group:not(.hidden) {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.neworder-form #fields #order_check:not(.hidden) .row,
.neworder-form #fields #dripfeed:not(.hidden) .row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 !important;
}

.neworder-form #fields #order_check:not(.hidden) .row > [class*='col-'],
.neworder-form #fields #dripfeed:not(.hidden) .row > [class*='col-'] {
  width: 100%;
  max-width: 100%;
  flex: 0 0 auto;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.neworder-form #fields #dripfeed-options.hidden,
.neworder-form #fields #dripfeed_options.hidden {
  display: none !important;
}

.neworder-form #fields #dripfeed-options:not(.hidden),
.neworder-form #fields #dripfeed_options:not(.hidden) {
  display: flex !important;
  flex-direction: column;
  gap: 16px;
  margin: 0 !important;
}

.neworder-form #fields #dripfeed-options:not(.hidden) > .form-group,
.neworder-form
  #fields
  #dripfeed-options:not(.hidden)
  > .form-group:not(.hidden),
.neworder-form
  #fields
  #dripfeed_options:not(.hidden)
  > .form-group:not(.hidden) {
  display: flex !important;
  flex-direction: column;
  gap: 8px;
  margin: 0 !important;
}

.neworder-form #fields #order_runs:not(.hidden),
.neworder-form #fields #order_interval:not(.hidden),
.neworder-form #fields #order_totalquantity:not(.hidden),
.neworder-form #fields #order_total_quantity:not(.hidden),
.neworder-form #fields #order_check:not(.hidden) > .form-group:not(.hidden),
.neworder-form #fields #order_check:not(.hidden) > .fields:not(.hidden),
.neworder-form
  #fields
  #order_check:not(.hidden)
  > [id^='order_']:not(#order_check):not(.hidden),
.neworder-form #fields #dripfeed:not(.hidden) > .form-group:not(.hidden),
.neworder-form #fields #dripfeed:not(.hidden) > .fields:not(.hidden),
.neworder-form #fields #dripfeed:not(.hidden) > [id^='order_']:not(.hidden) {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 !important;
}

.neworder-form #fields #order_check > .checkbox,
.neworder-form #fields #order_check .checkbox,
.neworder-form #fields #dripfeed > .checkbox {
  margin: 0 !important;
}

.neworder-form #fields #order_check .checkbox label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  margin: 0;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
}

.neworder-form #fields #order_check .checkbox input[type='checkbox'] {
  order: 2;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  width: 44px;
  height: 24px;
  margin: 0;
  border: 0;
  border-radius: 999px;
  background: #2d2d2d;
  position: relative;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.neworder-form #fields #order_check .checkbox input[type='checkbox']::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s ease;
}

.neworder-form #fields #order_check .checkbox input[type='checkbox']:checked {
  background: #bd10dc;
}

.neworder-form
  #fields
  #order_check
  .checkbox
  input[type='checkbox']:checked::after {
  transform: translateX(20px);
}

.neworder-form #fields .checkbox {
  margin: 0;
}

.neworder-form .form-group > .select2 {
  width: 100% !important;
  z-index: 2;
}

.neworder-page .select2-container--open {
  z-index: 10060 !important;
}

body > .select2-container--open {
  z-index: 10060 !important;
}

/* Bootstrap `.dropdown-menu { display:none }` must not hide open Select2 menus */
.select2-container--open .select2-dropdown.dropdown-menu,
body > .select2-container .select2-dropdown.dropdown-menu,
.select2-dropdown.select2-dropdown--below.dropdown-menu,
.select2-dropdown.select2-dropdown--above.dropdown-menu {
  display: block !important;
}

.neworder-form #service_description {
  display: none !important;
}

.neworder-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 0;
}

.neworder-form .control-label {
  display: block;
  margin-bottom: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
}

.neworder-clear {
  padding: 0;
  border: 0;
  background: none;
  color: #bd0edc;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  cursor: pointer;
}

.neworder-clear[hidden] {
  display: none;
}

.neworder-service-label {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-width: 0;
}

.neworder-service-id {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 44px;
  padding: 4px 12px;
  border: 0;
  border-radius: 9999px;
  background: var(--btn-purple-gradient);
  background-image: var(--btn-purple-gradient);
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
}

.neworder-service-name {
  flex: 1;
  min-width: 0;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  white-space: normal;
  word-break: break-word;
}

#select2-orderform-service-container .neworder-service-label,
#orderform-service
  + .select2
  .select2-selection__rendered
  .neworder-service-label {
  align-items: center;
  min-width: 0;
}

#select2-orderform-service-container .neworder-service-name,
#orderform-service
  + .select2
  .select2-selection__rendered
  .neworder-service-name,
#select2-orderform-category-container.neworder-category-text,
#select2-orderform-category-container .neworder-category-text {
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  min-width: 0;
  flex: 1;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  font-family: 'Poppins', sans-serif;
  font-size: 16px !important;
  font-weight: 400;
  line-height: 1.4 !important;
  white-space: normal;
  word-break: break-word;
}

.neworder-select-text--compact,
#select2-orderform-service-container
  .neworder-service-name.neworder-select-text--compact,
#orderform-service
  + .select2
  .select2-selection__rendered
  .neworder-service-name.neworder-select-text--compact {
  font-size: 12px;
  line-height: 1.3;
}

.neworder-select-text--compact-xs,
#select2-orderform-service-container
  .neworder-service-name.neworder-select-text--compact-xs,
#orderform-service
  + .select2
  .select2-selection__rendered
  .neworder-service-name.neworder-select-text--compact-xs {
  font-size: 11px;
  line-height: 1.25;
}

#select2-orderform-service-results .select2-results__option a,
#select2-orderform-service-container .neworder-service-label,
#orderform-service
  + .select2
  .select2-selection__rendered
  .neworder-service-label {
  width: 100%;
}

#select2-orderform-service-results .select2-results__option a {
  display: block !important;
  text-align: left;
  color: inherit !important;
  text-decoration: none !important;
}

#select2-orderform-service-results .neworder-service-label,
#select2-new-order-search-results .neworder-service-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  text-align: left;
}

#select2-orderform-service-results .neworder-service-id,
#select2-new-order-search-results .neworder-service-id,
#select2-orderform-service-results .select2-results__option a .neworder-service-id,
#select2-new-order-search-results .select2-results__option a .neworder-service-id {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: top;
  margin: 0;
  min-width: 28px;
  padding: 2px 8px;
  border: 0;
  border-radius: 9999px;
  background: var(--btn-purple-gradient) !important;
  background-image: var(--btn-purple-gradient) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  white-space: nowrap;
  flex-shrink: 0;
}

#select2-orderform-service-results .neworder-service-name,
#select2-new-order-search-results .neworder-service-name {
  display: inline;
  flex: none;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  word-break: break-word;
}

#select2-orderform-service-results
  .select2-results__option--highlighted
  .neworder-service-id,
#select2-orderform-service-results
  .select2-results__option--highlighted[aria-selected]
  .neworder-service-id,
#select2-orderform-service-results
  .select2-results__option.select2-results__option--selectable:hover
  .neworder-service-id,
#select2-orderform-service-results
  .select2-results__option[aria-selected='true']
  .neworder-service-id,
#select2-new-order-search-results
  .select2-results__option--highlighted
  .neworder-service-id,
#select2-new-order-search-results
  .select2-results__option--highlighted[aria-selected]
  .neworder-service-id,
#select2-new-order-search-results
  .select2-results__option.select2-results__option--selectable:hover
  .neworder-service-id,
#select2-new-order-search-results
  .select2-results__option[aria-selected='true']
  .neworder-service-id {
  background: var(--btn-purple-gradient) !important;
  background-image: var(--btn-purple-gradient) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

#select2-orderform-service-results
  .select2-results__option
  .neworder-service-id,
#select2-new-order-search-results
  .select2-results__option
  .neworder-service-id,
#select2-orderform-service-container .neworder-service-id,
#orderform-service
  + .select2
  .select2-selection__rendered
  .neworder-service-id {
  background: var(--btn-purple-gradient) !important;
  background-image: var(--btn-purple-gradient) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

.neworder-toast-stack {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 2147483000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

#notify-wrapper.neworder-toast-notify.is-visible {
  position: fixed !important;
  right: 24px !important;
  bottom: 24px !important;
  left: auto !important;
  top: auto !important;
  z-index: 2147483000 !important;
  display: block !important;
  width: auto !important;
  min-width: 280px;
  max-width: 360px;
  margin: 0 !important;
  padding: 14px 16px !important;
  border: 1.5px solid #2d2d2d !important;
  border-left: 4px solid #bd10dc !important;
  border-radius: 10px !important;
  background: #221e25 !important;
  color: #fff !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.neworder-toast {
  pointer-events: auto;
  min-width: 280px;
  max-width: 360px;
  padding: 14px 16px;
  border: 1.5px solid #2d2d2d;
  border-left: 4px solid #bd10dc;
  border-radius: 10px;
  background: #221e25;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  opacity: 1;
  visibility: visible;
  animation: neworder-toast-in 0.25s ease;
}

.neworder-toast.is-leaving {
  animation: neworder-toast-out 0.2s ease forwards;
}

@keyframes neworder-toast-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes neworder-toast-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(12px);
  }
}

.neworder-page #order-form .alert,
.massorder-page .alert {
  position: relative;
  margin: 0 0 20px;
  padding: 12px 40px 12px 14px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.account-page .alert,
.notifications-page .alert,
.account-change-email-modal .alert {
  position: relative;
  margin: 0;
  padding: 12px 40px 12px 14px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.neworder-page #order-form .alert.alert-danger,
.massorder-page .alert.alert-danger,
.account-page .alert.alert-danger,
.notifications-page .alert.alert-danger,
.account-change-email-modal .alert.alert-danger {
  background: rgba(255, 87, 90, 0.14);
  border: 1px solid rgba(255, 87, 90, 0.45);
  border-left: 4px solid #ff575a;
  color: #ffc2c4;
}

.neworder-page #order-form .alert.alert-success,
.massorder-page .alert.alert-success,
.account-page .alert.alert-success,
.notifications-page .alert.alert-success,
.account-change-email-modal .alert.alert-success {
  background: rgba(46, 204, 113, 0.14);
  border: 1px solid rgba(46, 204, 113, 0.45);
  border-left: 4px solid #2ecc71;
  color: #b8f0cb;
}

.neworder-page #order-form .alert h4,
.massorder-page .alert h4,
.account-page .alert h4 {
  margin: 0 0 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.neworder-page #order-form .alert.alert-danger h4,
.massorder-page .alert.alert-danger h4,
.account-page .alert.alert-danger h4 {
  color: #fff;
}

.neworder-page #order-form .alert.alert-success h4,
.massorder-page .alert.alert-success h4,
.account-page .alert.alert-success h4 {
  color: #fff;
}

.neworder-page #order-form .alert .close,
.massorder-page .alert .close,
.account-page .alert .close,
.account-change-email-modal .alert .close {
  position: absolute;
  top: 50%;
  right: 12px;
  float: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  opacity: 0.75;
  text-shadow: none;
  transform: translateY(-50%);
}

.neworder-page #order-form .alert.alert-danger .close,
.massorder-page .alert.alert-danger .close,
.account-page .alert.alert-danger .close,
.account-change-email-modal .alert.alert-danger .close {
  color: #ffc2c4;
}

.neworder-page #order-form .alert.alert-success .close,
.massorder-page .alert.alert-success .close,
.account-page .alert.alert-success .close {
  color: #b8f0cb;
}

.neworder-page #order-form .alert .close:hover,
.massorder-page .alert .close:hover,
.neworder-page #order-form .alert .close:focus,
.massorder-page .alert .close:focus,
.account-page .alert .close:hover,
.account-page .alert .close:focus,
.account-change-email-modal .alert .close:hover,
.account-change-email-modal .alert .close:focus {
  opacity: 1;
  outline: none;
}

.neworder-page #order-form .alert.alert-danger .close:hover,
.massorder-page .alert.alert-danger .close:hover,
.neworder-page #order-form .alert.alert-danger .close:focus,
.massorder-page .alert.alert-danger .close:focus,
.account-page .alert.alert-danger .close:hover,
.account-page .alert.alert-danger .close:focus,
.account-change-email-modal .alert.alert-danger .close:hover,
.account-change-email-modal .alert.alert-danger .close:focus {
  color: #fff;
}

.neworder-page #order-form .alert.alert-success .close:hover,
.massorder-page .alert.alert-success .close:hover,
.neworder-page #order-form .alert.alert-success .close:focus,
.massorder-page .alert.alert-success .close:focus,
.account-page .alert.alert-success .close:hover,
.account-page .alert.alert-success .close:focus {
  color: #fff;
}

.neworder-search-shell {
  position: relative;
}

.neworder-search-shell > .search-dropdown,
.neworder-search-shell #new-order-search {
  width: 100%;
}

.neworder-search-shell > .search-dropdown.select2-container,
.neworder-search-shell #new-order-search.select2-container {
  display: block;
}

.neworder-search-wrap,
.neworder-search-shell .input-wrapper,
.neworder-search-shell > .search-dropdown .input-wrapper,
.neworder-search-shell #new-order-search .input-wrapper {
  position: relative;
  display: block;
}

.neworder-search-shell .input-wrapper__prepend,
.neworder-search-shell .neworder-search-btn,
.neworder-page .neworder-search-shell .input-wrapper .input-wrapper__prepend {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  width: 0 !important;
  min-width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
  background: none !important;
  background-image: none !important;
  pointer-events: none !important;
  position: absolute !important;
  left: -9999px !important;
}

.neworder-search-shell .input-wrapper__prepend::before,
.neworder-search-shell .input-wrapper__prepend::after {
  display: none !important;
  content: none !important;
}

.neworder-search-shell .neworder-search-icon {
  position: absolute;
  top: 50%;
  left: 16px;
  z-index: 3;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  pointer-events: none;
}

.neworder-search-shell .neworder-search-icon img {
  display: block;
  width: 20px;
  height: 20px;
}

.neworder-form .form-control,
.neworder-form select,
.neworder-form textarea,
.neworder-form #fields .form-control {
  width: 100%;
  height: 58px;
  padding: 16px;
  border: 1.5px solid #2d2d2d;
  border-radius: 10px;
  background: #221d25;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  box-shadow: none;
}

/* Prevent native <select> from sitting under Select2 and stealing clicks
   (causes open-then-immediate-close). Same pattern as addfunds method select. */
.neworder-page
  .neworder-form
  #orderform-category.select2-hidden-accessible,
.neworder-page
  .neworder-form
  #orderform-service.select2-hidden-accessible {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.neworder-search-shell > .search-dropdown .form-control,
.neworder-search-shell > .search-dropdown .select2-selection,
.neworder-search-shell #new-order-search .form-control,
.neworder-search-shell #new-order-search .select2-selection,
.neworder-search-shell .input-wrapper input.form-control {
  padding-left: 52px;
  font-weight: 400;
}

.neworder-search-shell input::-webkit-search-cancel-button,
.neworder-search-shell input::-webkit-search-decoration,
.neworder-search-shell input::-ms-clear {
  display: none;
  -webkit-appearance: none;
  appearance: none;
}

.neworder-page .neworder-search-shell input::placeholder,
.neworder-page .neworder-form .form-control::placeholder,
.neworder-page .neworder-form textarea::placeholder {
  color: #fff;
  opacity: 1;
}

.neworder-page
  .neworder-form
  #orderform-category
  + .select2
  .select2-selection--single,
.neworder-page
  .neworder-form
  #orderform-service
  + .select2
  .select2-selection--single {
  background: #221e25;
  color: #fff;
  border: 1.5px solid #2d2d2d;
  border-radius: 10px;
  display: flex;
  align-items: center;
  height: 58px;
  padding: 0 16px;
  box-shadow: none;
}

.neworder-search-shell > .search-dropdown .select2-selection--single,
.neworder-search-shell > .search-dropdown input.select2-selection.form-control,
.neworder-search-shell #new-order-search .select2-selection--single,
.neworder-search-shell #new-order-search input.select2-selection.form-control {
  background: #221e25;
  color: #fff;
  border: 1.5px solid #2d2d2d;
  border-radius: 10px;
  height: 58px;
  padding: 0 16px;
  box-shadow: none;
}

.neworder-search-shell > .search-dropdown .select2-selection--single,
.neworder-search-shell > .search-dropdown input.select2-selection.form-control,
.neworder-search-shell #new-order-search .select2-selection--single,
.neworder-search-shell #new-order-search input.select2-selection.form-control {
  padding-left: 52px;
  font-weight: 400;
}

.neworder-page
  .neworder-form
  #orderform-category
  + .select2.select2-container--open
  .select2-selection--single,
.neworder-page
  .neworder-form
  #orderform-service
  + .select2.select2-container--open
  .select2-selection--single,
.neworder-search-shell
  > .search-dropdown.select2-container--open
  .select2-selection--single,
.neworder-search-shell
  > .search-dropdown.select2-container--open
  input.select2-selection.form-control,
.neworder-search-shell
  #new-order-search.select2-container--open
  .select2-selection--single,
.neworder-search-shell
  #new-order-search.select2-container--open
  input.select2-selection.form-control {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.neworder-page
  .neworder-form
  #orderform-category
  + .select2
  .select2-selection__rendered,
.neworder-page
  .neworder-form
  #orderform-category
  + .select2
  #select2-orderform-category-container,
.neworder-page
  .neworder-form
  #orderform-service
  + .select2
  .select2-selection__rendered,
.neworder-page
  .neworder-form
  #orderform-service
  + .select2
  #select2-orderform-service-container {
  color: #fff;
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
  height: 100%;
  padding: 0 32px 0 0;
  line-height: 1;
}

.neworder-page
  .neworder-form
  #orderform-category
  + .select2
  .select2-selection__rendered
  > span,
.neworder-page
  .neworder-form
  #orderform-category
  + .select2
  #select2-orderform-category-container
  > span,
.neworder-page
  .neworder-form
  #orderform-service
  + .select2
  .select2-selection__rendered
  > span,
.neworder-page
  .neworder-form
  #orderform-service
  + .select2
  #select2-orderform-service-container
  > span {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.neworder-page
  .neworder-form
  #orderform-category
  + .select2
  .select2-selection__rendered
  img,
.neworder-page
  .neworder-form
  #orderform-category
  + .select2
  #select2-orderform-category-container
  img,
.neworder-page
  .neworder-form
  #orderform-service
  + .select2
  .select2-selection__rendered
  img,
.neworder-page
  .neworder-form
  #orderform-service
  + .select2
  #select2-orderform-service-container
  img {
  display: block;
  align-self: center;
}

.neworder-page
  .neworder-form
  #orderform-category
  + .select2
  .select2-selection__arrow,
.neworder-page
  .neworder-form
  #orderform-service
  + .select2
  .select2-selection__arrow {
  height: 100%;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.neworder-page
  .neworder-form
  #orderform-category
  + .select2
  .select2-selection__arrow
  b,
.neworder-page
  .neworder-form
  #orderform-service
  + .select2
  .select2-selection__arrow
  b {
  border-color: #fff transparent transparent transparent;
}

.select2-dropdown.dropdown-menu:is(
    :has(#select2-orderform-category-results),
    :has(#select2-orderform-service-results),
    :has(#select2-new-order-search-results),
    :has(#select2-method-results),
    :has(#select2-method-results),
    :has(#select2-template-input-results)
  ),
.select2-dropdown:is(
  :has(#select2-orderform-category-results),
  :has(#select2-orderform-service-results),
  :has(#select2-new-order-search-results),
  :has(#select2-method-results),
  :has(#select2-template-input-results)
) {
  background: #221e25;
  border: 1.5px solid #2d2d2d;
  border-top: 0;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  color: #fff;
  margin-top: 8px;
  padding-inline: 8px;
}

.select2-dropdown.dropdown-menu:is(
    :has(#select2-orderform-category-results),
    :has(#select2-orderform-service-results),
    :has(#select2-new-order-search-results),
    :has(#select2-method-results),
    :has(#select2-method-results),
    :has(#select2-template-input-results)
  )
  .select2-search--dropdown,
.select2-dropdown:is(
    :has(#select2-orderform-category-results),
    :has(#select2-orderform-service-results),
    :has(#select2-new-order-search-results),
    :has(#select2-method-results),
    :has(#select2-method-results),
    :has(#select2-template-input-results)
  )
  .select2-search--dropdown {
  padding: 12px 12px 4px;
}

.select2-dropdown.dropdown-menu:is(
    :has(#select2-orderform-category-results),
    :has(#select2-orderform-service-results),
    :has(#select2-new-order-search-results),
    :has(#select2-method-results),
    :has(#select2-method-results),
    :has(#select2-template-input-results)
  )
  .select2-search__field,
.select2-dropdown:is(
    :has(#select2-orderform-category-results),
    :has(#select2-orderform-service-results),
    :has(#select2-new-order-search-results),
    :has(#select2-method-results),
    :has(#select2-method-results),
    :has(#select2-template-input-results)
  )
  .select2-search__field {
  background: #221e25;
  color: #fff;
  border: 1px solid #2d2d2d;
  border-radius: 8px;
}

.select2-dropdown.dropdown-menu:is(
    :has(#select2-orderform-category-results),
    :has(#select2-orderform-service-results),
    :has(#select2-new-order-search-results),
    :has(#select2-method-results),
    :has(#select2-method-results),
    :has(#select2-template-input-results)
  )
  .select2-search__field::placeholder,
.select2-dropdown:is(
    :has(#select2-orderform-category-results),
    :has(#select2-orderform-service-results),
    :has(#select2-new-order-search-results),
    :has(#select2-method-results),
    :has(#select2-method-results),
    :has(#select2-template-input-results)
  )
  .select2-search__field::placeholder {
  color: #fff;
  opacity: 1;
}

:is(
  #select2-orderform-category-results,
  #select2-orderform-service-results,
  #select2-new-order-search-results,
  #select2-method-results,
  #select2-template-input-results
),
:is(
  #select2-orderform-category-results,
  #select2-orderform-service-results,
  #select2-new-order-search-results,
  #select2-method-results,
  #select2-template-input-results
).select2-results__options {
  background: #221e25;
  color: #fff !important;
  padding: 4px 0 8px;
  border-radius: 0 0 10px 10px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.select2-dropdown:is(
    :has(#select2-orderform-category-results),
    :has(#select2-orderform-service-results),
    :has(#select2-new-order-search-results),
    :has(#select2-method-results),
    :has(#select2-method-results),
    :has(#select2-template-input-results)
  )
  .select2-results {
  background: #221e25;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

:is(
  #select2-orderform-category-results,
  #select2-orderform-service-results,
  #select2-new-order-search-results,
  #select2-method-results,
  #select2-template-input-results
)::-webkit-scrollbar,
.select2-dropdown:is(
    :has(#select2-orderform-category-results),
    :has(#select2-orderform-service-results),
    :has(#select2-new-order-search-results),
    :has(#select2-method-results),
    :has(#select2-method-results),
    :has(#select2-template-input-results)
  )
  .select2-results::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

:is(
    #select2-orderform-category-results,
    #select2-orderform-service-results,
    #select2-new-order-search-results,
    #select2-method-results,
    #select2-template-input-results
  )
  .select2-results__option,
:is(
    #select2-orderform-category-results,
    #select2-orderform-service-results,
    #select2-new-order-search-results,
    #select2-method-results,
    #select2-template-input-results
  )
  .select2-results__option
  * {
  color: #fff !important;
}

:is(
    #select2-orderform-category-results,
    #select2-orderform-service-results,
    #select2-new-order-search-results,
    #select2-method-results,
    #select2-template-input-results
  )
  .select2-results__option {
  padding: 10px 16px;
  margin: 4px 8px 4px 0;
  border-radius: 8px;
}

#select2-orderform-category-results .select2-results__option {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

#select2-orderform-service-results .select2-results__option {
  padding: 10px 12px;
  margin: 2px 6px 2px 0;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
}

.select2-dropdown:has(#select2-orderform-service-results) {
  max-height: min(450px, 58vh) !important;
}

#select2-orderform-service-results,
.select2-dropdown:has(#select2-orderform-service-results) .select2-results {
  max-height: min(400px, 54vh) !important;
  overflow-y: auto;
}

:is(
    #select2-orderform-category-results,
    #select2-orderform-service-results,
    #select2-new-order-search-results,
    #select2-method-results,
    #select2-template-input-results
  )
  .select2-results__option
  a {
  display: block;
  padding: 0 !important;
  margin: 0 !important;
}

:is(
    #select2-orderform-category-results,
    #select2-orderform-service-results,
    #select2-new-order-search-results,
    #select2-method-results,
    #select2-template-input-results
  )
  .select2-results__option--highlighted,
:is(
    #select2-orderform-category-results,
    #select2-orderform-service-results,
    #select2-new-order-search-results,
    #select2-method-results,
    #select2-template-input-results
  )
  .select2-results__option--highlighted[aria-selected],
:is(
    #select2-orderform-category-results,
    #select2-orderform-service-results,
    #select2-new-order-search-results,
    #select2-method-results,
    #select2-template-input-results
  )
  .select2-results__option.select2-results__option--selectable:hover {
  background: var(--select2-option-hover-gradient) !important;
  color: #fff !important;
}

:is(
    #select2-orderform-category-results,
    #select2-orderform-service-results,
    #select2-new-order-search-results,
    #select2-method-results,
    #select2-template-input-results
  )
  .select2-results__option--highlighted
  *,
:is(
    #select2-orderform-category-results,
    #select2-orderform-service-results,
    #select2-new-order-search-results,
    #select2-method-results,
    #select2-template-input-results
  )
  .select2-results__option--highlighted[aria-selected]
  *,
:is(
    #select2-orderform-category-results,
    #select2-orderform-service-results,
    #select2-new-order-search-results,
    #select2-method-results,
    #select2-template-input-results
  )
  .select2-results__option.select2-results__option--selectable:hover
  * {
  color: #fff !important;
}

:is(
    #select2-orderform-category-results,
    #select2-orderform-service-results,
    #select2-new-order-search-results,
    #select2-method-results,
    #select2-template-input-results
  )
  .select2-results__option[aria-selected='true'] {
  background: var(--select2-option-selected-gradient) !important;
  color: #fff !important;
}

:is(
    #select2-orderform-category-results,
    #select2-orderform-service-results,
    #select2-new-order-search-results,
    #select2-method-results,
    #select2-template-input-results
  )
  .select2-results__option[aria-selected='true']
  * {
  color: #fff !important;
}

:is(
    #select2-orderform-category-results,
    #select2-orderform-service-results,
    #select2-new-order-search-results,
    #select2-method-results,
    #select2-template-input-results
  )
  .select2-results__option[aria-selected='true'].select2-results__option--highlighted {
  background: var(--select2-option-hover-gradient) !important;
  color: #fff !important;
}

:is(
    #select2-orderform-category-results,
    #select2-orderform-service-results,
    #select2-new-order-search-results,
    #select2-method-results,
    #select2-template-input-results
  )
  .select2-results__option[aria-selected='true'].select2-results__option--highlighted
  * {
  color: #fff !important;
}

/* All Select2 dropdown items – hover & active gradient */
.select2-container--default .select2-results__option--highlighted,
.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option.select2-results__option--selectable:hover,
.select2-container--default
  .select2-results__option[aria-selected='true'].select2-results__option--highlighted,
.select2-dropdown .select2-results__option--highlighted,
.select2-dropdown .select2-results__option--highlighted[aria-selected],
.select2-dropdown .select2-results__option.select2-results__option--selectable:hover,
.select2-dropdown
  .select2-results__option[aria-selected='true'].select2-results__option--highlighted,
.select2-results__option--highlighted,
.select2-results__option--highlighted[aria-selected],
.select2-results__option.select2-results__option--selectable:hover,
.select2-results__option[aria-selected='true'].select2-results__option--highlighted {
  background: var(--select2-option-hover-gradient) !important;
  background-color: transparent !important;
}

.select2-container--default
  .select2-results__option[aria-selected='true']:not(.select2-results__option--highlighted),
.select2-dropdown
  .select2-results__option[aria-selected='true']:not(.select2-results__option--highlighted),
.select2-results__option[aria-selected='true']:not(.select2-results__option--highlighted) {
  background: var(--select2-option-selected-gradient) !important;
  background-color: transparent !important;
}

html[data-theme='light']
  .select2-results__option[aria-selected='true']:not(.select2-results__option--highlighted) {
  background: var(--select2-option-hover-gradient) !important;
  background-color: transparent !important;
  color: #fff !important;
}

html[data-theme='light']
  .select2-results__option[aria-selected='true']:not(.select2-results__option--highlighted)
  * {
  color: #fff !important;
}

.neworder-search-shell
  > .search-dropdown
  #select-category-container
  .select2-dropdown,
.neworder-search-shell
  > .search-dropdown
  #select-category-container
  .select2-dropdown.dropdown-menu {
  background: #221e25 !important;
  background-color: #221e25 !important;
  border: 1.5px solid #2d2d2d !important;
  border-top: 0 !important;
  border-radius: 0 0 10px 10px !important;
  overflow: hidden;
  color: #fff !important;
  padding-inline: 8px;
  width: 100% !important;
  box-sizing: border-box;
  box-shadow: none !important;
}

.neworder-search-shell
  > .search-dropdown
  #select-category-container
  .select2-container--open
  .select2-dropdown {
  position: static !important;
}

.neworder-search-shell
  > .search-dropdown
  #select-category-container
  .select2-results,
.neworder-search-shell
  > .search-dropdown
  #select-category-container
  .select2-results__options,
.neworder-search-shell
  > .search-dropdown
  #select-category-container
  #select2-select-category-container-results,
.neworder-search-shell
  > .search-dropdown
  #select-category-container
  .select2-results__options.dropdown-menu {
  background: #221e25 !important;
  background-color: #221e25 !important;
  color: #fff !important;
  padding: 4px 0 8px;
  border: 0 !important;
  box-shadow: none !important;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.neworder-search-shell
  > .search-dropdown
  #select-category-container
  .select2-results::-webkit-scrollbar,
.neworder-search-shell
  > .search-dropdown
  #select-category-container
  .select2-results__options::-webkit-scrollbar,
.neworder-search-shell
  > .search-dropdown
  #select-category-container
  #select2-select-category-container-results::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.neworder-search-shell > .search-dropdown #select-category-container,
.neworder-search-shell > .search-dropdown #select-category-container * {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

.neworder-search-shell
  > .search-dropdown
  #select-category-container::-webkit-scrollbar,
.neworder-search-shell
  > .search-dropdown
  #select-category-container
  *::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.neworder-search-shell
  > .search-dropdown
  #select-category-container
  .select2-results__option,
.neworder-search-shell
  > .search-dropdown
  #select-category-container
  .select2-results__option
  * {
  color: #fff !important;
}

.neworder-search-shell
  > .search-dropdown
  #select-category-container
  .select2-results__option {
  background: transparent !important;
  padding: 10px 16px;
  margin: 4px 8px 4px 0;
  border-radius: 8px;
}

.neworder-search-shell
  > .search-dropdown
  #select-category-container
  .select2-results__option
  a {
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
  color: inherit !important;
  text-decoration: none !important;
  background: transparent !important;
}

.neworder-search-shell
  > .search-dropdown
  #select-category-container
  .select2-results__option--highlighted,
.neworder-search-shell
  > .search-dropdown
  #select-category-container
  .select2-results__option--highlighted[aria-selected],
.neworder-search-shell
  > .search-dropdown
  #select-category-container
  .select2-results__option.select2-results__option--selectable:hover {
  background: var(--select2-option-hover-gradient) !important;
  color: #fff !important;
}

.neworder-search-shell
  > .search-dropdown
  #select-category-container
  .select2-results__option--highlighted
  *,
.neworder-search-shell
  > .search-dropdown
  #select-category-container
  .select2-results__option--highlighted[aria-selected]
  *,
.neworder-search-shell
  > .search-dropdown
  #select-category-container
  .select2-results__option.select2-results__option--selectable:hover
  * {
  color: #fff !important;
}

.neworder-search-shell
  > .search-dropdown
  #select-category-container
  .select2-results__option[aria-selected='true'] {
  background: var(--select2-option-selected-gradient) !important;
  color: #fff !important;
}

.neworder-search-shell
  > .search-dropdown
  #select-category-container
  .select2-results__option[aria-selected='true'].select2-results__option--highlighted {
  background: var(--select2-option-hover-gradient) !important;
  color: #fff !important;
}

.neworder-search-shell
  > .search-dropdown
  #select-category-container
  .select2-dropdown.dropdown-menu,
.neworder-search-shell
  > .search-dropdown
  #select-category-container
  .select2-results__options.dropdown-menu,
.neworder-page
  .neworder-search-shell
  .neworder-search-select2-dropdown.dropdown-menu,
.neworder-page
  .neworder-search-shell
  .neworder-search-select2-results.dropdown-menu {
  --bs-dropdown-bg: #221e25;
  --bs-dropdown-color: #fff;
  --bs-dropdown-link-color: #fff;
  --bs-dropdown-link-hover-color: #fff;
  --bs-dropdown-link-hover-bg: #7516a9;
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-active-bg: #7516a9;
}

.neworder-search-shell
  > .search-dropdown
  #select-category-container
  .select2-results__option:hover,
.neworder-search-shell
  > .search-dropdown
  #select-category-container
  .select2-results__option:hover
  a,
.neworder-page
  .neworder-search-shell
  .neworder-search-select2-results
  .select2-results__option:hover,
.neworder-page
  .neworder-search-shell
  .neworder-search-select2-results
  .select2-results__option:hover
  a {
  background: var(--select2-option-hover-gradient) !important;
  color: #fff !important;
}

.neworder-search-shell
  > .search-dropdown
  #select-category-container
  .select2-selection__id.badge,
.neworder-page
  .neworder-search-shell
  .neworder-search-select2-dropdown
  .select2-selection__id.badge,
.neworder-page
  .neworder-search-shell
  .neworder-search-select2-results
  .select2-selection__id.badge {
  background: #bf14dd !important;
  background-color: #bf14dd !important;
  color: #fff !important;
  border: 0 !important;
}

.neworder-page .neworder-search-shell .neworder-search-select2-dropdown,
.neworder-page
  .neworder-search-shell
  .neworder-search-select2-dropdown.dropdown-menu,
.neworder-page
  .neworder-search-shell
  .neworder-search-select2-dropdown.select2-dropdown--below {
  background: #221e25 !important;
  background-color: #221e25 !important;
  border: 1.5px solid #2d2d2d !important;
  border-top: 0 !important;
  border-radius: 0 0 10px 10px !important;
  overflow: hidden !important;
  color: #fff !important;
  padding-inline: 8px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  box-shadow: none !important;
}

.neworder-page
  .neworder-search-shell
  .neworder-search-select2-dropdown
  .select2-results,
.neworder-page .neworder-search-shell .neworder-search-select2-results,
.neworder-page
  .neworder-search-shell
  .neworder-search-select2-results.select2-results__options,
.neworder-page
  .neworder-search-shell
  .neworder-search-select2-results.dropdown-menu,
.neworder-page
  .neworder-search-shell
  .neworder-search-select2-dropdown
  .select2-results__options,
.neworder-page
  .neworder-search-shell
  .neworder-search-select2-dropdown
  .select2-results__options.dropdown-menu {
  background: #221e25 !important;
  background-color: #221e25 !important;
  color: #fff !important;
  padding: 4px 0 8px !important;
  border: 0 !important;
  border-radius: 0 0 10px 10px !important;
  box-shadow: none !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

.neworder-page
  .neworder-search-shell
  .neworder-search-select2-dropdown
  .select2-results::-webkit-scrollbar,
.neworder-page
  .neworder-search-shell
  .neworder-search-select2-dropdown
  .select2-results__options::-webkit-scrollbar,
.neworder-page
  .neworder-search-shell
  .neworder-search-select2-results::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.neworder-page
  .neworder-search-shell
  .neworder-search-select2-dropdown
  .select2-results__option,
.neworder-page
  .neworder-search-shell
  .neworder-search-select2-results
  .select2-results__option,
.neworder-page
  .neworder-search-shell
  .neworder-search-select2-dropdown
  .select2-results__option
  *,
.neworder-page
  .neworder-search-shell
  .neworder-search-select2-results
  .select2-results__option
  * {
  color: #fff !important;
}

.neworder-page
  .neworder-search-shell
  .neworder-search-select2-dropdown
  .select2-results__option,
.neworder-page
  .neworder-search-shell
  .neworder-search-select2-results
  .select2-results__option {
  background: transparent !important;
  padding: 10px 16px !important;
  margin: 4px 8px 4px 0 !important;
  border-radius: 8px !important;
}

.neworder-page
  .neworder-search-shell
  .neworder-search-select2-dropdown
  .select2-results__option
  a,
.neworder-page
  .neworder-search-shell
  .neworder-search-select2-results
  .select2-results__option
  a {
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
  color: inherit !important;
  text-decoration: none !important;
  background: transparent !important;
}

.neworder-page
  .neworder-search-shell
  .neworder-search-select2-dropdown
  .select2-results__option--highlighted,
.neworder-page
  .neworder-search-shell
  .neworder-search-select2-results
  .select2-results__option--highlighted,
.neworder-page
  .neworder-search-shell
  .neworder-search-select2-dropdown
  .select2-results__option--highlighted[aria-selected],
.neworder-page
  .neworder-search-shell
  .neworder-search-select2-results
  .select2-results__option--highlighted[aria-selected],
.neworder-page
  .neworder-search-shell
  .neworder-search-select2-dropdown
  .select2-results__option.select2-results__option--selectable:hover,
.neworder-page
  .neworder-search-shell
  .neworder-search-select2-results
  .select2-results__option.select2-results__option--selectable:hover {
  background: var(--select2-option-hover-gradient) !important;
  color: #fff !important;
}

.neworder-page
  .neworder-search-shell
  .neworder-search-select2-dropdown
  .select2-results__option--highlighted
  *,
.neworder-page
  .neworder-search-shell
  .neworder-search-select2-results
  .select2-results__option--highlighted
  *,
.neworder-page
  .neworder-search-shell
  .neworder-search-select2-dropdown
  .select2-results__option.select2-results__option--selectable:hover
  *,
.neworder-page
  .neworder-search-shell
  .neworder-search-select2-results
  .select2-results__option.select2-results__option--selectable:hover
  * {
  color: #fff !important;
}

.neworder-page
  .neworder-search-shell
  .neworder-search-select2-dropdown
  .select2-results__option[aria-selected='true'],
.neworder-page
  .neworder-search-shell
  .neworder-search-select2-results
  .select2-results__option[aria-selected='true'] {
  background: var(--select2-option-selected-gradient) !important;
  color: #fff !important;
}

.neworder-page
  .neworder-search-shell
  .neworder-search-select2-dropdown
  .select2-results__option[aria-selected='true'].select2-results__option--highlighted,
.neworder-page
  .neworder-search-shell
  .neworder-search-select2-results
  .select2-results__option[aria-selected='true'].select2-results__option--highlighted {
  background: var(--select2-option-hover-gradient) !important;
  color: #fff !important;
}

.neworder-page
  .neworder-search-shell
  > .search-dropdown.select2-container
  .input-wrapper
  > input.select2-selection.form-control,
.neworder-page
  .neworder-search-shell
  #new-order-search.select2-container
  .input-wrapper
  > input.select2-selection.form-control {
  display: block;
  appearance: none;
  -webkit-appearance: none;
  background: #221e25 !important;
  background-color: #221e25 !important;
  color: #fff !important;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  box-sizing: border-box;
  outline: none;
}

.neworder-charge-group .form-control {
  border-color: #6a117a;
  background: linear-gradient(
    180deg,
    rgba(205, 54, 231, 0.1),
    rgba(108, 9, 158, 0.1)
  );
}

.neworder-form .help-block {
  margin: 0;
  color: #d338ec;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 1.4;
}

.neworder-form .terms {
  font-size: 14px;
  color: #ebecef;
}

.neworder-form .terms a {
  color: #bd0edc;
}

.neworder-submit {
  width: 100%;
  padding: 16px 32px;
  border: 0;
  border-radius: 12px;
  background: #bd0edc;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  cursor: pointer;
}

.neworder-submit:hover {
  background: #d01af5;
}

.neworder-info-card {
  width: 100%;
  padding: 16px;
  border: 1.5px solid #2d2d2d;
  border-radius: 10px;
  background: #221d25;
}

.neworder-info-card h3 {
  margin: 0 0 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
}

.neworder-info-card p,
.neworder-info-card div {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #ebecef;
}

.neworder-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.neworder-desc-card div {
  font-size: 16px;
  color: #fff;
}

.neworder-update-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.neworder-update-intro {
  width: 100%;
  padding: 16px 16px 16px 19px;
  border: 1.5px solid #2d2d2d;
  border-radius: 10px;
  background: #221d25;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.neworder-update-intro p {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #d338ec;
}

.neworder-update-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}

.neworder-update-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  min-height: 162px;
  padding: 32px;
  border: 1px solid #2d2d2d;
  border-radius: 20px;
  background: linear-gradient(90deg, #000000 30%, #242424 100%);
  overflow: hidden;
}

.neworder-update-card-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.neworder-update-card-head img {
  display: block;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  object-fit: contain;
}

.neworder-update-card h3 {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: #fff;
}

.neworder-update-card--telegram h3 {
  color: #0b95bf;
}

.neworder-update-card-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.neworder-update-card-copy p {
  margin: 0;
  font-family: 'Parkinsans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
}

.neworder-update-link {
  align-self: flex-start;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: #d338ec;
  text-decoration: underline;
}

.neworder-update-link:hover,
.neworder-update-link:focus {
  color: #e45cff;
}

.neworder-contact-body {
  gap: 16px;
}

.neworder-contact-intro {
  width: 100%;
  padding: 16px 16px 16px 19px;
  border: 1.5px solid #2d2d2d;
  border-radius: 10px;
  background: #221d25;
}

.neworder-contact-intro p {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #d338ec;
}

.neworder-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.neworder-contact-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  padding: 16px;
  border: 1.5px solid #2d2d2d;
  border-radius: 10px;
  background: #221d25;
}

.neworder-contact-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.neworder-contact-card-head img {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  object-fit: contain;
}

.neworder-contact-card h3 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
}

.neworder-contact-meta {
  margin: 0;
  font-family: 'Parkinsans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
}

.neworder-contact-link {
  align-self: flex-start;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: #d338ec;
  text-decoration: underline;
}

.neworder-contact-link:hover,
.neworder-contact-link:focus {
  color: #e45cff;
}

.neworder-contact-note {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  padding: 16px 34px 16px 16px;
  border: 1.5px solid #2d2d2d;
  border-radius: 10px;
  background: #221d25;
}

.neworder-contact-note h3 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: #c3c2c3;
}

.neworder-contact-note p {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
}

@media (max-width: 1200px) {
  .neworder-stats {
    gap: 12px;
    padding: 24px 20px;
  }

  .neworder-stats-gap {
    flex-basis: 140px;
    width: 140px;
  }

  .neworder-stats-character {
    width: 120px;
    height: 200px;
  }

  .neworder-platforms {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .neworder-grid {
    grid-template-columns: 1fr;
  }

  .neworder-stat-value {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .neworder-page {
    padding-top: 0;
    gap: 16px;
  }

  .neworder-stats {
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 16px;
    min-height: 0;
    padding: 16px;
    border-radius: 20px;
    overflow: hidden;
  }

  .neworder-stats-gap,
  .neworder-stats-character {
    display: none;
  }

  .neworder-stat {
    flex: 1 1 calc(50% - 16px);
    min-width: calc(50% - 16px);
  }

  .neworder-stat-label {
    font-size: 13px;
  }

  .neworder-stat-value {
    font-size: 20px;
    word-break: break-word;
    white-space: normal;
  }

  .neworder-stat-hint {
    font-size: 12px;
    white-space: normal;
  }

  .neworder-stat-divider {
    display: none;
  }

  .neworder-platforms {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 6px;
  }

  .neworder-platform {
    flex-direction: column;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
    padding: 4px;
    gap: 0;
    font-size: 0;
    border-radius: 10px;
  }

  .neworder-platform-label {
    display: none;
  }

  .neworder-platform-icon {
    width: 72%;
    height: 72%;
    max-width: 28px;
    max-height: 28px;
  }

  .neworder-stats-grid {
    grid-template-columns: 1fr;
  }

  .neworder-panel {
    border-radius: 16px;
    gap: 0;
  }

  .neworder-panel > .neworder-tabs + .neworder-form {
    padding-top: 16px;
  }

  .neworder-details .neworder-details-body {
    padding-top: 16px;
  }

  .neworder-form,
  .neworder-details-body,
  .neworder-tabs {
    padding-left: 12px;
    padding-right: 12px;
  }

  .neworder-tabs {
    padding-top: 12px;
    gap: 4px;
  }

  .neworder-tab {
    flex: 1 1 0;
    min-width: 0;
    padding: 10px 6px;
    font-size: 12px;
    gap: 6px;
  }

  .neworder-tab span {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .neworder-tab img {
    width: 18px;
    height: 18px;
  }

  .neworder-form .control-label,
  .neworder-info-card h3,
  .neworder-info-card p,
  .neworder-info-card div,
  .neworder-contact-note h3,
  .neworder-contact-note p,
  .neworder-update-intro p,
  .neworder-contact-intro p {
    font-size: 14px;
  }

  .neworder-form .form-control,
  .neworder-form select,
  .neworder-form textarea,
  .neworder-form #fields .form-control {
    height: 48px;
    padding: 12px;
    font-size: 14px;
  }

  .neworder-form textarea {
    height: auto;
    min-height: 96px;
  }

  .neworder-submit {
    padding: 14px 16px;
    font-size: 16px;
  }

  .neworder-page table,
  .neworder-form table,
  .neworder-info-card table,
  .neworder-details-body table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .neworder-page .select2-container,
  .neworder-form .select2 {
    width: 100% !important;
    max-width: 100%;
  }

  .neworder-form .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .neworder-form [class*='col-'] {
    width: 100% !important;
    max-width: 100% !important;
    float: none;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .neworder-contact-grid {
    grid-template-columns: 1fr;
  }

  .neworder-update-grid {
    grid-template-columns: 1fr;
  }

  .neworder-alert,
  .neworder-page .alert {
    font-size: 14px;
    word-break: break-word;
  }
}

/* Updates page */
.updates-page .updates-toolbar {
  justify-content: space-between;
  padding: 20px;
  background: rgba(23, 17, 27, 0.2);
}

.updates-page .updates-filter-tab,
.updates-page .services-filter-tab.updates-filter-tab {
  width: auto;
  max-width: none;
  min-height: 48px;
  height: 48px;
  padding: 4px 12px 4px 4px;
  border: 1px solid #bd0edc;
  border-radius: 12px;
  background: #bd0edc;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.updates-page .updates-filter-tab.dropdown-toggle::after {
  display: none;
  content: none;
}

.updates-page .updates-filter-tab .services-filter-tab-label {
  max-width: 160px;
}

.updates-page .orders-search {
  width: 320px;
  flex: 0 0 320px;
}

.updates-page .orders-search-input.form-control {
  height: auto;
  padding: 0;
  border: none;
  background: transparent;
  color: #fff;
  box-shadow: none;
}

.updates-page .orders-search-input.form-control:focus {
  border: none;
  background: transparent;
  color: #fff;
  box-shadow: none;
}

.updates-table {
  min-width: 1100px;
}

.updates-col-date {
  width: 18%;
}
.updates-col-service {
  width: 52%;
}
.updates-col-update {
  width: 30%;
}

.updates-table > thead > tr > th {
  padding: 20px 28px;
  font-size: 18px;
}

.updates-table > tbody > tr.updates-row > td {
  padding: 15px 28px;
  color: #ebecef;
}

.updates-service-cell {
  white-space: normal;
  word-break: break-word;
}

.updates-badge {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 10px 20px;
  border-radius: 8px;
  font-family: 'Parkinsans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  white-space: normal;
}

.updates-badge--down {
  background: rgba(34, 82, 26, 0.3);
  border: 1px solid #1c3f24;
  color: #23c046;
}

.updates-badge--up {
  background: rgba(119, 76, 36, 0.3);
  border: 1px solid rgba(180, 74, 43, 0.5);
  color: #f66135;
}

.updates-badge--off {
  background: rgba(96, 26, 26, 0.3);
  border: 1px solid rgba(255, 47, 49, 0.5);
  color: #ff2f31;
}

.updates-badge--neutral {
  background: rgba(189, 14, 220, 0.12);
  border: 1px solid rgba(205, 54, 231, 0.45);
  color: #ebecef;
}

@media (max-width: 768px) {
  .updates-page .updates-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 12px;
  }

  .updates-page .services-filter-dropdown,
  .updates-page .updates-filter-tab,
  .updates-page .orders-search {
    width: 100%;
    max-width: 100%;
    flex: 1 1 auto;
  }

  .updates-page .updates-filter-tab .services-filter-tab-label {
    max-width: 100%;
  }

  .updates-table,
  .updates-page .updates-table {
    min-width: 0;
  }

  .updates-page .updates-table > thead {
    display: none;
  }

  .updates-page .updates-table,
  .updates-page .updates-table > tbody {
    display: block;
    width: 100%;
  }

  .updates-page .updates-table colgroup {
    display: none;
  }

  .updates-page .updates-table > tbody > tr.updates-row {
    display: block;
    width: 100%;
    margin-bottom: 16px;
    border: 1px solid rgba(205, 54, 231, 0.55);
    border-radius: 16px;
    background: #1a161e;
    overflow: hidden;
  }

  .updates-page .updates-table > tbody > tr.updates-row:last-child {
    margin-bottom: 0;
  }

  .updates-page .updates-table > tbody > tr.updates-row > td {
    display: flex !important;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    width: 100% !important;
    padding: 14px 16px !important;
    border-bottom: 0.5px solid #2d2d2d;
  }

  .updates-page .updates-table > tbody > tr.updates-row > td::before {
    content: attr(data-label);
    flex: 0 0 38%;
    max-width: 110px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    color: #b7b7b8;
  }

  .updates-page
    .updates-table
    > tbody
    > tr.updates-row
    > td
    > .orders-cell-inner {
    flex: 1;
    min-width: 0;
    text-align: right;
  }

  .updates-badge {
    font-size: 14px;
    padding: 8px 12px;
  }
}

/* Updates — light mode */
html[data-theme='light'] .updates-page .updates-toolbar {
  background: #fff;
  border: none;
  box-shadow: 0 8px 24px rgba(42, 36, 48, 0.06);
}

html[data-theme='light'] .updates-page .updates-filter-tab,
html[data-theme='light'] .updates-page .services-filter-tab.updates-filter-tab,
html[data-theme='light'] .updates-page .orders-filter.is-active {
  background: #bd0edc;
  border-color: #bd0edc;
  color: #fff;
}

html[data-theme='light'] .updates-page .updates-filter-tab .orders-filter-icon iconify-icon,
html[data-theme='light'] .updates-page .orders-filter.is-active .orders-filter-icon iconify-icon {
  color: #fff;
}

html[data-theme='light'] .updates-page .orders-search {
  background: #fff;
  border: 1px solid #e4e4e4;
}

html[data-theme='light'] .updates-page .orders-search-input.form-control,
html[data-theme='light'] .updates-page .orders-search-input.form-control:focus {
  color: #1d1d1d;
  background: transparent;
  -webkit-text-fill-color: #1d1d1d;
}

html[data-theme='light'] .updates-page .orders-search-input.form-control::placeholder {
  color: #b0b0b0;
  -webkit-text-fill-color: #b0b0b0;
}

html[data-theme='light'] .updates-page .updates-table-card {
  background: #fff;
  border: none;
  box-shadow: 0 8px 24px rgba(42, 36, 48, 0.06);
}

html[data-theme='light'] .updates-page .updates-table > thead > tr > th,
html[data-theme='light'] .services-page.updates-page .updates-table > thead > tr > th {
  background: #f7e6f9;
  color: #111;
  border-bottom: none;
}

html[data-theme='light'] .updates-page .updates-table > tbody > tr.updates-row > td,
html[data-theme='light'] .updates-page .updates-table > tbody > tr.updates-row > td .orders-cell-inner {
  background: #fff;
  color: #111;
  border-bottom-color: #ececec;
}

html[data-theme='light'] .updates-page .orders-empty-state {
  color: #848484;
}

html[data-theme='light'] .updates-badge--down {
  background: #e8f8ea;
  border: none;
  color: #1a9a38;
}

html[data-theme='light'] .updates-badge--up {
  background: #fff1ea;
  border: none;
  color: #f66135;
}

html[data-theme='light'] .updates-badge--off {
  background: #ffecec;
  border: none;
  color: #ff2f31;
}

html[data-theme='light'] .updates-badge--neutral {
  background: #f5e6fb;
  border: none;
  color: #bd0edc;
}

@media (max-width: 768px) {
  html[data-theme='light'] .updates-page .updates-table > tbody > tr.updates-row {
    background: #fff;
    border-color: #ececec;
    box-shadow: 0 8px 24px rgba(42, 36, 48, 0.06);
  }

  html[data-theme='light'] .updates-page .updates-table > tbody > tr.updates-row > td {
    background: #fff;
    border-bottom-color: #ececec;
    color: #111;
  }

  html[data-theme='light'] .updates-page .updates-table > tbody > tr.updates-row > td::before {
    color: #848484;
  }
}

/* Create invoice page */
.invoice-page {
  gap: 24px;
}

.invoice-page [hidden] {
  display: none !important;
}

.invoice-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.invoice-card {
  overflow: hidden;
  border: 1px solid rgba(205, 54, 231, 0.4);
  border-radius: 20px;
  background: #1a161e;
}

.invoice-card-head {
  background: #251f2c;
  padding: 24px 24px 0;
}

.invoice-tabs {
  display: flex;
  align-items: center;
  gap: 24px;
  border-bottom: 2px solid #483954;
}

.invoice-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px;
  border: none;
  border-bottom: 4px solid transparent;
  border-radius: 8px 8px 0 0;
  background: transparent;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.invoice-tab:hover {
  color: #fff;
  text-decoration: none;
}

.invoice-tab.is-active {
  border-bottom-color: #d338ec;
}

.invoice-tab iconify-icon {
  display: block;
  width: 24px;
  height: 24px;
  color: #fff;
}

.invoice-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 29px 24px 20px;
}

.invoice-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.invoice-fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.invoice-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  margin: 0;
}

.invoice-label {
  color: #ebecef;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.invoice-input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 56px;
  padding: 0 16px;
  border: 1.5px solid #2d2d2d;
  border-radius: 10px;
  background: #221d25;
  cursor: pointer;
}

.invoice-input-wrap iconify-icon {
  display: block;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #fff;
  pointer-events: none;
}

.invoice-input-wrap .invoice-input {
  height: auto;
  padding: 0;
  border: none;
  background: transparent;
  -webkit-text-fill-color: #fff;
}

.invoice-input {
  width: 100%;
  height: 56px;
  padding: 16px;
  border: 1.5px solid #2d2d2d;
  border-radius: 10px;
  background: #221d25;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  box-shadow: none;
}

.invoice-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.invoice-input[type='date'],
.invoice-input[type='date']::-webkit-datetime-edit,
.invoice-input[type='date']::-webkit-datetime-edit-fields-wrapper,
.invoice-input[type='date']::-webkit-datetime-edit-text,
.invoice-input[type='date']::-webkit-datetime-edit-month-field,
.invoice-input[type='date']::-webkit-datetime-edit-day-field,
.invoice-input[type='date']::-webkit-datetime-edit-year-field {
  color: #fff;
  -webkit-text-fill-color: #fff;
}

.invoice-input[type='date'] {
  color-scheme: dark;
  cursor: pointer;
}

.invoice-input[type='date']::-webkit-calendar-picker-indicator {
  opacity: 0;
  width: 18px;
  cursor: pointer;
  pointer-events: none;
}

.invoice-input:focus {
  outline: none;
  border-color: #d338ec;
  box-shadow: none;
}

.invoice-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.invoice-details-title {
  margin: 0;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}

.invoice-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  background: var(--btn-purple-gradient);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  cursor: pointer;
}

.invoice-submit:hover {
  filter: brightness(1.06);
  color: #fff;
}

.invoice-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  filter: none;
}

.invoice-alert {
  margin: 16px 24px 0;
  padding: 14px 16px;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.invoice-alert.is-error {
  background: rgba(255, 47, 49, 0.14);
  color: #ff8a8b;
  border: 1px solid rgba(255, 47, 49, 0.4);
}

.invoice-alert.is-success {
  background: rgba(25, 171, 30, 0.14);
  color: #7ddea0;
  border: 1px solid rgba(25, 171, 30, 0.4);
}

.invoice-form-message {
  margin: 0;
  padding: 12px 14px;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.invoice-form-message.is-error {
  background: rgba(255, 47, 49, 0.12);
  color: #ff8a8b;
  border: 1px solid rgba(255, 47, 49, 0.35);
}

.invoice-form-message.is-success {
  background: rgba(25, 171, 30, 0.12);
  color: #7ddea0;
  border: 1px solid rgba(25, 171, 30, 0.35);
}

.invoice-aside {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.invoice-howto-head {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 98px;
  padding: 24px;
}

.invoice-howto-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 5px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.invoice-howto-title {
  margin: 0;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.invoice-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 0;
  padding: 0 24px 20px;
  list-style: none;
}

.invoice-steps::before {
  content: '';
  position: absolute;
  left: 51px;
  top: 40px;
  bottom: 40px;
  border-left: 1px dashed #d338ec;
}

.invoice-step {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.invoice-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  margin: 8px;
  border: 1px solid #d338ec;
  border-radius: 110px;
  background: #322834;
  color: #d338ec;
  font-family: 'Parkinsans', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

.invoice-step-copy h3 {
  margin: 0 0 4px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}

.invoice-step-copy p {
  margin: 0;
  color: #ebecef;
  font-family: 'Parkinsans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.invoice-time-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-width: 0.5px;
}

.invoice-time-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #322834;
  color: #fff;
}

.invoice-time-copy h3 {
  margin: 0;
  color: #fff;
  font-family: 'Parkinsans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.invoice-time-copy p {
  margin: 0;
  color: #ebecef;
  font-family: 'Parkinsans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .invoice-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .invoice-tabs {
    gap: 8px;
  }

  .invoice-tab {
    flex: 1;
    padding: 12px 8px;
    font-size: 14px;
  }

  .invoice-form {
    padding: 20px 16px 16px;
    gap: 24px;
  }

  .invoice-fields-row {
    grid-template-columns: 1fr;
  }

  .invoice-howto-head {
    height: auto;
    padding: 16px;
  }

  .invoice-steps {
    padding: 0 16px 16px;
    gap: 24px;
  }

  .invoice-steps::before {
    left: 43px;
    top: 28px;
    bottom: 28px;
  }

  .invoice-step-copy h3 {
    font-size: 16px;
  }

  .invoice-step-copy p,
  .invoice-time-copy p {
    font-size: 14px;
  }
}

.invoice-list-body {
  padding: 29px 24px 20px;
}

.invoice-table-wrap {
  overflow: hidden;
  border: 0.5px solid #2d2d2d;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
}

.invoice-table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
}

.invoice-table th,
.invoice-table td {
  padding: 16px 20px;
  border-bottom: 1px solid #2d2d2d;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  vertical-align: middle;
}

.invoice-table th {
  height: 70px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  border-bottom: 1px solid #2d2d2d;
}

.invoice-table td {
  font-family: 'Inter', sans-serif;
}

.invoice-table tbody tr:last-child td {
  border-bottom: none;
}

.invoice-th-center,
.invoice-td-center {
  text-align: center;
}

.invoice-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
}

.invoice-status--completed {
  background: #19ab1e;
}

.invoice-status--pending {
  background: #f66135;
}

.invoice-status--canceled {
  background: #ff2f31;
}

.invoice-view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 8px;
  background: #bd0edc;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
}

.invoice-view-btn:hover {
  background: #d338ec;
  color: #fff;
  text-decoration: none;
}

.invoice-view-btn--disabled {
  opacity: 0.45;
  pointer-events: none;
  cursor: not-allowed;
}

.invoice-pagination {
  margin-top: 20px;
}

.invoice-empty {
  text-align: center;
  color: #b7b7b8;
}

@media (max-width: 768px) {
  .invoice-list-body {
    padding: 20px 12px 16px;
  }

  .invoice-table thead {
    display: none;
  }

  .invoice-table,
  .invoice-table tbody,
  .invoice-table tr,
  .invoice-table td {
    display: block;
    width: 100%;
  }

  .invoice-table tr {
    padding: 8px 0;
    border-bottom: 1px solid #2d2d2d;
  }

  .invoice-table tr:last-child {
    border-bottom: none;
  }

  .invoice-table td {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 16px;
    border-bottom: none;
  }

  .invoice-table td::before {
    content: attr(data-label);
    color: #b7b7b8;
    font-weight: 600;
  }

  .invoice-td-center {
    text-align: right;
  }
}

/* Create invoice — light mode */
html[data-theme='light'] .invoice-card {
  border: 1px solid #fff;
  background: #fff;
  box-shadow: 0 8px 24px rgba(42, 36, 48, 0.06);
}

html[data-theme='light'] .invoice-card-head {
  background: #f7e6f9;
}

html[data-theme='light'] .invoice-tabs {
  border-bottom-color: rgba(115, 115, 115, 0.2);
}

html[data-theme='light'] .invoice-tab {
  color: #000;
}

html[data-theme='light'] .invoice-tab:hover {
  color: #111;
}

html[data-theme='light'] .invoice-tab.is-active {
  color: #111;
  border-bottom-color: #d338ec;
}

html[data-theme='light'] .invoice-tab iconify-icon {
  color: #111;
}

html[data-theme='light'] .invoice-label {
  color: #4a4a4a;
}

html[data-theme='light'] .invoice-input,
html[data-theme='light'] .invoice-input-wrap {
  border: none;
  background: #ebebeb;
  color: #323232;
}

html[data-theme='light'] .invoice-input::placeholder {
  color: #848484;
}

html[data-theme='light'] .invoice-input-wrap iconify-icon {
  color: #848484;
}

html[data-theme='light'] .invoice-input-wrap .invoice-input {
  color: #323232;
  -webkit-text-fill-color: #323232;
}

html[data-theme='light'] .invoice-input[type='date'],
html[data-theme='light'] .invoice-input[type='date']::-webkit-datetime-edit,
html[data-theme='light'] .invoice-input[type='date']::-webkit-datetime-edit-fields-wrapper,
html[data-theme='light'] .invoice-input[type='date']::-webkit-datetime-edit-text,
html[data-theme='light'] .invoice-input[type='date']::-webkit-datetime-edit-month-field,
html[data-theme='light'] .invoice-input[type='date']::-webkit-datetime-edit-day-field,
html[data-theme='light'] .invoice-input[type='date']::-webkit-datetime-edit-year-field {
  color: #323232;
  -webkit-text-fill-color: #323232;
}

html[data-theme='light'] .invoice-input[type='date'] {
  color-scheme: light;
}

html[data-theme='light'] .invoice-input:focus,
html[data-theme='light'] .invoice-input-wrap:focus-within {
  outline: none;
  border: none;
  box-shadow: none;
}

html[data-theme='light'] .page-content h2.invoice-details-title,
html[data-theme='light'] .invoice-details-title,
html[data-theme='light'] .page-content h2.invoice-howto-title,
html[data-theme='light'] .invoice-howto-title {
  color: #111;
}

html[data-theme='light'] .invoice-howto-icon {
  background: rgba(189, 14, 220, 0.12);
  color: #111;
}

html[data-theme='light'] .invoice-step-num {
  background: #f7e6f9;
  border-color: #bd0edc;
  color: #bd0edc;
}

html[data-theme='light'] .invoice-step-copy h3,
html[data-theme='light'] .invoice-time-copy h3 {
  color: #111;
}

html[data-theme='light'] .invoice-step-copy p,
html[data-theme='light'] .invoice-time-copy p {
  color: #848484;
}

html[data-theme='light'] .invoice-time-icon {
  background: #f0f0f0;
  color: #111;
}

html[data-theme='light'] .invoice-table-wrap {
  border: 1px solid #ececec;
  box-shadow: 0 8px 24px rgba(42, 36, 48, 0.06);
}

html[data-theme='light'] .invoice-table th,
html[data-theme='light'] .invoice-table td {
  border-bottom-color: #ececec;
  color: #111;
}

html[data-theme='light'] .invoice-empty {
  color: #848484;
}

html[data-theme='light'] .invoice-form-message.is-error {
  background: rgba(255, 47, 49, 0.08);
  color: #c62828;
  border-color: rgba(255, 47, 49, 0.25);
}

html[data-theme='light'] .invoice-form-message.is-success {
  background: rgba(25, 171, 30, 0.08);
  color: #1b7a2a;
  border-color: rgba(25, 171, 30, 0.25);
}

html[data-theme='light'] .invoice-alert.is-error {
  background: rgba(255, 47, 49, 0.08);
  color: #c62828;
  border-color: rgba(255, 47, 49, 0.25);
}

html[data-theme='light'] .invoice-alert.is-success {
  background: rgba(25, 171, 30, 0.08);
  color: #1b7a2a;
  border-color: rgba(25, 171, 30, 0.25);
}

@media (max-width: 768px) {
  html[data-theme='light'] .invoice-table tr {
    border-bottom-color: #ececec;
  }

  html[data-theme='light'] .invoice-table td::before {
    color: #848484;
  }
}

.hidden {
  display: none;
}

/* Shared page hero (orders-style header with right image) */
.orders-hero.page-hero {
  width: 100%;
  margin-top: -20px;
  margin-bottom: 0;
}

.addfunds-heading {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-sizing: border-box;
  width: 100%;
  height: 103px;
  min-height: 103px;
  margin-top: -20px;
  margin-bottom: 0px;
  border: 1px solid rgba(132, 132, 132, 0.4);
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
  background-color: #110d14;
  background-image: url('https://storage.perfectcdn.com/770smr/5opd5y1bqs9hg18p.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.addfunds-heading::after {
  content: '';
  position: absolute;
  top: auto;
  left: auto;
  right: 24px;
  bottom: 0;
  z-index: 2;
  width: clamp(180px, 22vw, 420px);
  max-width: 420px;
  height: 118%;
  background: url('https://storage.perfectcdn.com/770smr/29ye7bbishlscygp.png') no-repeat right bottom / contain;
  pointer-events: none;
  transform: translate3d(0, 10%, 0);
  transform-origin: right bottom;
  animation: hero-header-logo-float 4s ease-in-out infinite;
  will-change: transform;
}

.addfunds-heading .addfunds-heading-copy,
.addfunds-page section.addfunds-heading .addfunds-heading-copy,
.giveaway-page section.addfunds-heading .addfunds-heading-copy,
.account-page section.addfunds-heading .addfunds-heading-copy,
.notifications-page section.addfunds-heading .addfunds-heading-copy,
.dashboard-page section.addfunds-heading .addfunds-heading-copy,
.ai-rec-page section.addfunds-heading .addfunds-heading-copy,
.child-panel-page section.addfunds-heading .addfunds-heading-copy,
.massorder-page section.addfunds-heading .addfunds-heading-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  box-sizing: border-box;
  padding: 0 24px;
}

.page-content h1.addfunds-heading-title,
.addfunds-page .addfunds-heading-copy .addfunds-heading-title,
.giveaway-page .addfunds-heading-copy .addfunds-heading-title,
.account-page .addfunds-heading-copy .addfunds-heading-title,
.notifications-page .addfunds-heading-copy .addfunds-heading-title,
.dashboard-page .addfunds-heading-copy .addfunds-heading-title,
.ai-rec-page .addfunds-heading-copy .addfunds-heading-title,
.child-panel-page .addfunds-heading-copy .addfunds-heading-title,
.massorder-page .addfunds-heading-copy .addfunds-heading-title {
  margin: 0;
  font-family: 'Parkinsans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
}

.page-content p.addfunds-heading-text,
.addfunds-page .addfunds-heading-copy .addfunds-heading-text,
.giveaway-page .addfunds-heading-copy .addfunds-heading-text,
.account-page .addfunds-heading-copy .addfunds-heading-text,
.notifications-page .addfunds-heading-copy .addfunds-heading-text,
.dashboard-page .addfunds-heading-copy .addfunds-heading-text,
.ai-rec-page .addfunds-heading-copy .addfunds-heading-text,
.child-panel-page .addfunds-heading-copy .addfunds-heading-text,
.massorder-page .addfunds-heading-copy .addfunds-heading-text {
  margin: 0;
  font-family: 'Parkinsans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.76;
  color: #b7b7b8;
}

/* Add funds payment method selector */
.addfunds-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 40px;
}

.addfunds-methods-title {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
}

.addfunds-methods-row {
  display: flex;
  align-items: stretch;
  gap: 12px;
  width: 100%;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.addfunds-methods-row::-webkit-scrollbar {
  display: none;
}

.addfunds-method-chip {
  display: inline-flex;
  flex: 1 0 120px;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  max-width: 180px;
  height: 64px;
  padding: 16px;
  border: 1px solid #bd0edc;
  border-radius: 12px;
  background: #151515;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.addfunds-method-chip:hover,
.addfunds-method-chip:focus {
  outline: none;
  background: #1d1d1d;
}

.addfunds-method-chip.is-active {
  background: #bd0edc;
  border-color: #bd0edc;
}

.addfunds-method-logo {
  display: block;
  max-width: 100%;
  max-height: 32px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.addfunds-method-logo--light {
  display: none;
}

.addfunds-method-label {
  display: block;
  padding: 0 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  color: #fff;
  word-break: break-word;
}

.addfunds-method-option {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  width: 100%;
}

.addfunds-method-option-logo {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.addfunds-method-option-logo--light {
  display: none;
}

.addfunds-method-option-label {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  color: inherit;
}

.addfunds-page .addfunds-form #method + .select2 .addfunds-method-option-logo {
  width: 24px;
  height: 24px;
}

#select2-method-results .addfunds-method-option-logo {
  width: 28px;
  height: 28px;
}

@media (max-width: 768px) {
  .orders-hero.page-hero {
    margin-top: 0;
    margin-bottom: 24px;
  }

  .addfunds-heading {
    height: auto;
    min-height: 0;
    margin-top: 0;
    margin-bottom: 24px;
    background-image: linear-gradient(
      90deg,
      #110d14 0%,
      #110d14 36%,
      rgba(189, 14, 220, 0.28) 68%,
      rgba(189, 14, 220, 0.5) 100%
    );
    background-size: auto;
    background-position: unset;
  }

  .addfunds-heading::after {
    display: none;
    animation: none;
  }

  .addfunds-page section.addfunds-heading .addfunds-heading-copy,
  .giveaway-page section.addfunds-heading .addfunds-heading-copy,
  .account-page section.addfunds-heading .addfunds-heading-copy,
  .notifications-page section.addfunds-heading .addfunds-heading-copy,
  .dashboard-page section.addfunds-heading .addfunds-heading-copy,
  .ai-rec-page section.addfunds-heading .addfunds-heading-copy,
  .child-panel-page section.addfunds-heading .addfunds-heading-copy,
  .massorder-page section.addfunds-heading .addfunds-heading-copy {
    padding: 20px 18px;
  }

  .addfunds-page .addfunds-heading-copy .addfunds-heading-title,
  .giveaway-page .addfunds-heading-copy .addfunds-heading-title,
  .account-page .addfunds-heading-copy .addfunds-heading-title,
  .notifications-page .addfunds-heading-copy .addfunds-heading-title,
  .dashboard-page .addfunds-heading-copy .addfunds-heading-title,
  .ai-rec-page .addfunds-heading-copy .addfunds-heading-title,
  .child-panel-page .addfunds-heading-copy .addfunds-heading-title,
  .massorder-page .addfunds-heading-copy .addfunds-heading-title {
    font-size: 18px;
  }

  .addfunds-page .addfunds-heading-copy .addfunds-heading-text,
  .giveaway-page .addfunds-heading-copy .addfunds-heading-text,
  .account-page .addfunds-heading-copy .addfunds-heading-text,
  .notifications-page .addfunds-heading-copy .addfunds-heading-text,
  .dashboard-page .addfunds-heading-copy .addfunds-heading-text,
  .ai-rec-page .addfunds-heading-copy .addfunds-heading-text,
  .child-panel-page .addfunds-heading-copy .addfunds-heading-text,
  .massorder-page .addfunds-heading-copy .addfunds-heading-text {
    font-size: 12px;
  }

  .addfunds-methods {
    margin-bottom: 24px;
  }

  .addfunds-methods-title {
    font-size: 18px;
  }

  .addfunds-method-chip {
    flex-basis: 110px;
    min-width: 110px;
    height: 58px;
    padding: 12px;
  }

  .addfunds-method-label {
    font-size: 12px;
  }
}

.addfunds-page {
  padding-top: 16px;
  width: 100%;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.addfunds-page .row {
  margin-left: 0;
  margin-right: 0;
}

.addfunds-page [class*='col-'] {
  padding-left: 0;
  padding-right: 0;
}

.addfunds-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: var(--page-block-gap);
  width: 100%;
}

.addfunds-grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.addfunds-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
  border: 1px solid #cd36e7;
  border-radius: 20px;
  background: #1a161e;
}

.addfunds-panel-head {
  padding: 24px 66px 0 24px;
  background: #251f2c;
}

.addfunds-tabs {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  border-bottom: 2px solid #483954;
}

.addfunds-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: -2px;
  padding: 14px 12px;
  border: 0;
  border-bottom: 4px solid transparent;
  border-radius: 8px 8px 0 0;
  background: transparent;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  cursor: pointer;
}

.addfunds-tab img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.addfunds-tab.is-active {
  border-bottom-color: #d338ec;
}

.addfunds-panel-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 24px 20px;
}

.addfunds-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.addfunds-form .form-group {
  margin-bottom: 0;
}

.addfunds-page .addfunds-form .form-group.instruction,
.addfunds-page .addfunds-form #instruction_instruction {
  max-height: 280px;
  overflow-y: auto;
}

.addfunds-field .control-label,
.addfunds-page .addfunds-form .form-group > .control-label,
.addfunds-page .addfunds-form #amount-fields .control-label {
  display: block;
  margin-bottom: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
}

/* Dual currency amount fields (USD / BDT) injected by Perfect Panel */
.addfunds-page .addfunds-form #amount-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.addfunds-page .addfunds-form #amount-fields:not(:has(.form-group, [class*='col-'], .row)) {
  grid-template-columns: minmax(0, 1fr);
}

.addfunds-page .addfunds-form #amount-fields > .row {
  display: contents;
}

.addfunds-page .addfunds-form #amount-fields .form-group,
.addfunds-page .addfunds-form #amount-fields [class*='col-'] {
  float: none;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.addfunds-page .addfunds-form .addfunds-field:has(#amount-fields .control-label) > .control-label {
  display: none;
}

.addfunds-method-field {
  cursor: pointer;
}

.addfunds-method-field > .select2 {
  width: 100% !important;
}

.addfunds-page .addfunds-form #method + .select2 .select2-selection--single {
  background: #221e25;
  color: #fff;
  border: 1.5px solid #2d2d2d;
  border-radius: 10px;
  display: flex;
  align-items: center;
  height: 58px;
  padding: 0 16px;
  box-shadow: none;
}

.addfunds-page
  .addfunds-form
  #method
  + .select2.select2-container--open
  .select2-selection--single {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.addfunds-page .addfunds-form #method + .select2 .select2-selection__rendered,
.addfunds-page .addfunds-form #method + .select2 #select2-method-container {
  color: #fff;
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
  height: 100%;
  padding: 0 32px 0 0;
  line-height: 1;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.addfunds-page .addfunds-form #method + .select2 .select2-selection__arrow {
  height: 100%;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.addfunds-page .addfunds-form #method + .select2 .select2-selection__arrow b {
  border-color: #fff transparent transparent transparent;
}

.addfunds-page .addfunds-form #method.select2-hidden-accessible {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.addfunds-page .addfunds-form #method.form-control {
  width: 100%;
  height: 58px;
  padding: 16px;
  border: 1.5px solid #2d2d2d;
  border-radius: 10px;
  background: #221d25;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  box-shadow: none;
}

.addfunds-page .addfunds-form #method.form-control:focus,
.addfunds-page .addfunds-form #method.form-control:focus-visible {
  outline: none;
  border-color: #2d2d2d;
  background: #221d25;
  color: #fff;
  box-shadow: none;
}

.addfunds-input,
.addfunds-page .addfunds-form #amount-fields .form-control,
.addfunds-page .addfunds-form input.form-control,
.addfunds-page .addfunds-form [id^='order_'] .form-control {
  width: 100%;
  height: 58px;
  padding: 16px;
  border: 1.5px solid #2d2d2d;
  border-radius: 10px;
  background: #221d25;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  box-shadow: none;
}

.addfunds-page .addfunds-form .addfunds-input::placeholder,
.addfunds-page .addfunds-form #amount-fields .form-control::placeholder,
.addfunds-page .addfunds-form input.form-control::placeholder,
.addfunds-page .addfunds-form [id^='order_'] .form-control::placeholder {
  color: #fff;
  opacity: 1;
}

.addfunds-page .addfunds-form .addfunds-input:focus,
.addfunds-page .addfunds-form .addfunds-input:focus-visible,
.addfunds-page .addfunds-form #amount-fields .form-control:focus,
.addfunds-page .addfunds-form #amount-fields .form-control:focus-visible,
.addfunds-page .addfunds-form input.form-control:focus,
.addfunds-page .addfunds-form input.form-control:focus-visible,
.addfunds-page .addfunds-form [id^='order_'] .form-control:focus,
.addfunds-page .addfunds-form [id^='order_'] .form-control:focus-visible {
  outline: none;
  border-color: #2d2d2d;
  background: #221d25;
  color: #fff;
  box-shadow: none;
}

.addfunds-submit {
  width: 100%;
  min-height: 56px;
  padding: 16px 32px;
  border: 0;
  border-radius: 12px;
  background: #bd0edc;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  cursor: pointer;
}

.addfunds-submit:hover {
  background: #d042ee;
}

.addfunds-page .alert {
  margin-bottom: 0;
  border-radius: 10px;
}

.addfunds-page .alert.alert-danger {
  border: 1px solid rgba(255, 77, 77, 0.35);
  background: rgba(255, 77, 77, 0.12);
  color: #fff;
}

.addfunds-page .alert.alert-success {
  border: 1px solid rgba(72, 199, 116, 0.35);
  background: rgba(72, 199, 116, 0.12);
  color: #fff;
}

.addfunds-page .alert .close {
  color: #fff;
  opacity: 0.8;
}

.addfunds-info-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 66px 20px 24px;
  background: #251f2c;
}

.addfunds-info-icon {
  display: block;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.addfunds-info-head h2 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
}

.addfunds-info-body {
  padding: 0 24px 20px;
}

.addfunds-info-card {
  padding: 16px;
  border: 1.5px solid #2d2d2d;
  border-radius: 10px;
  background: #221d25;
  color: #fff;
}

.addfunds-info-lead {
  margin: 0 0 16px;
  font-family: 'Parkinsans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
}

.addfunds-info-card h3 {
  margin: 0 0 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  color: #fff;
}

.addfunds-info-copy p {
  margin: 0 0 12px;
  font-family: 'Parkinsans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
}

.addfunds-info-copy p:last-child {
  margin-bottom: 0;
}

.addfunds-table-card {
  overflow: hidden;
  border: 1.5px solid #2d2d2d;
  border-radius: 10px;
  background: #221d25;
}

.addfunds-table {
  margin-bottom: 0;
  color: #fff;
  background: #221d25;
}

.addfunds-page .addfunds-table-card .addfunds-table.table > thead > tr > th,
.addfunds-page .addfunds-table-card .addfunds-table.table > tbody > tr > td {
  background-color: #221d25;
  border-color: #2d2d2d;
}

.addfunds-table > thead > tr > th {
  padding: 14px 16px;
  border-bottom: 1px solid #2d2d2d;
  background: #221d25;
  color: #b7b7b8;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.addfunds-table > tbody > tr > td {
  padding: 14px 16px;
  border-top: 1px solid #2d2d2d;
  background: #221d25;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  vertical-align: middle;
}

.addfunds-table > tbody > tr > td,
.addfunds-table > tbody > tr > td span {
  color: #fff;
}

.addfunds-table > tbody > tr:hover > td {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.addfunds-invoice-link {
  color: #bd0edc;
  font-weight: 500;
}

.addfunds-invoice-link:hover,
.addfunds-invoice-link:focus {
  color: #d042ee;
}

.addfunds-pagination {
  margin-top: 16px;
}

.addfunds-pagination .pagination > li > a,
.addfunds-pagination .pagination > li > span {
  border-color: #2d2d2d;
  background: #221d25;
  color: #fff;
}

.addfunds-pagination .pagination > .active > a,
.addfunds-pagination .pagination > .active > span {
  border-color: #bd0edc;
  background: #bd0edc;
  color: #fff;
}

@media (max-width: 992px) {
  .addfunds-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .addfunds-panel-head,
  .addfunds-info-head {
    padding-right: 24px;
  }
}

@media (max-width: 768px) {
  .addfunds-page.container {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .addfunds-page .row {
    margin-left: 0;
    margin-right: 0;
  }

  .addfunds-page [class*='col-'] {
    padding-left: 0;
    padding-right: 0;
  }

  .addfunds-page {
    padding-top: 0;
  }

  .addfunds-heading {
    margin-top: 0;
    margin-bottom: 20px;
    border-radius: 16px;
  }

  .addfunds-methods {
    gap: 16px;
    margin-bottom: 20px;
  }

  .addfunds-methods-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
    padding-bottom: 0;
  }

  .addfunds-method-chip {
    flex: none;
    min-width: 0;
    max-width: none;
    width: 100%;
    height: 52px;
    padding: 8px;
  }

  .addfunds-method-logo {
    max-height: 24px;
  }

  .addfunds-panel {
    gap: 16px;
    border-radius: 16px;
  }

  .addfunds-panel-head {
    padding: 12px 12px 0;
  }

  .addfunds-tabs {
    gap: 8px;
    width: 100%;
  }

  .addfunds-tab {
    flex: 1 1 0;
    justify-content: center;
    min-width: 0;
    padding: 10px 8px;
    font-size: 13px;
    gap: 6px;
  }

  .addfunds-tab span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .addfunds-tab img {
    width: 18px;
    height: 18px;
  }

  .addfunds-panel-body,
  .addfunds-info-body {
    padding: 0 12px 16px;
  }

  .addfunds-form {
    gap: 16px;
  }

  .addfunds-field .control-label,
  .addfunds-page .addfunds-form .form-group > .control-label,
  .addfunds-page .addfunds-form #amount-fields .control-label,
  .addfunds-info-head h2 {
    font-size: 14px;
  }

  .addfunds-page .addfunds-form #amount-fields {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .addfunds-info-head {
    padding: 16px 12px 0;
    gap: 8px;
  }

  .addfunds-info-head h2 {
    line-height: 1.4;
  }

  .addfunds-info-lead,
  .addfunds-info-copy p,
  .addfunds-info-card h3 {
    font-size: 14px;
  }

  .addfunds-input,
  .addfunds-page .addfunds-form #amount-fields .form-control,
  .addfunds-page .addfunds-form input.form-control,
  .addfunds-page .addfunds-form [id^='order_'] .form-control,
  .addfunds-page .addfunds-form #method + .select2 .select2-selection--single,
  .addfunds-page .addfunds-form #method.form-control {
    height: 48px;
    padding: 12px;
    font-size: 14px;
  }

  .addfunds-page .addfunds-form #method + .select2 .select2-selection__rendered,
  .addfunds-page .addfunds-form #method + .select2 #select2-method-container {
    font-size: 14px;
  }

  .addfunds-page .addfunds-form .select2 {
    width: 100% !important;
    max-width: 100%;
  }

  .addfunds-submit {
    min-height: 48px;
    font-size: 16px;
  }

  .addfunds-table-card {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .addfunds-table {
    display: block;
    width: 100%;
  }

  .addfunds-table > thead {
    display: none;
  }

  .addfunds-table > tbody {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .addfunds-table > tbody > tr {
    display: block;
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(205, 54, 231, 0.45);
    border-radius: 12px;
    background: #221d25;
  }

  .addfunds-page .addfunds-table-card .addfunds-table.table > tbody > tr > td,
  .addfunds-table > tbody > tr > td {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 12px 14px;
    border-top: 0;
    border-bottom: 1px solid #2d2d2d;
    word-break: break-word;
  }

  .addfunds-table > tbody > tr > td:last-child {
    border-bottom: 0;
  }

  .addfunds-table > tbody > tr > td::before {
    content: attr(data-label);
    flex: 0 0 38%;
    max-width: 110px;
    color: #b7b7b8;
    font-size: 13px;
    font-weight: 600;
  }

  .addfunds-table > tbody > tr > td.text-right {
    text-align: right;
  }

  .addfunds-pagination .pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin: 0;
  }

  .addfunds-pagination .pagination > li > a,
  .addfunds-pagination .pagination > li > span {
    min-width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
  }
}

/* --------------------------------------------------------------------------
   Light theme
   -------------------------------------------------------------------------- */
html[data-theme='light'] body {
  background: #E8E8E8;
  color: #1d1d1d;
}

html[data-theme='light'] .container-scroller {
  background: #E8E8E8;
}

html[data-theme='light'] .bfnav-shell {
  background: #D2D2D2;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

html[data-theme='light'] .bfnav-logo .bfnav-logo-img--dark {
  display: none;
}

html[data-theme='light'] .bfnav-logo .bfnav-logo-img--light {
  display: block;
}

html[data-theme='light'] .page-content {
  background: #E8E8E8;
  color: #1d1d1d;
}

html[data-theme='light'] .bfnav-footer-inner {
  background: #fff;
  border-color: #ececec;
  box-shadow: 0 8px 24px rgba(42, 36, 48, 0.06);
}

html[data-theme='light'] .bfnav-footer-nav a {
  color: #848484;
}

html[data-theme='light'] .bfnav-footer-nav a:hover,
html[data-theme='light'] .bfnav-footer-nav a:focus {
  color: #2a2430;
}

html[data-theme='light'] .bfnav-footer-credit {
  color: #848484;
}

html[data-theme='light'] .bfnav-menu-link {
  background: #fff;
  color: #848484;
  border: none;
}

html[data-theme='light'] .bfnav-menu-link:not(.is-active):not(:hover) {
  border: 1px solid rgba(189, 189, 189, 0.28);
}

html[data-theme='light'] .bfnav-menu-link:hover {
  background: var(--btn-purple-gradient);
  background-image: var(--btn-purple-gradient);
  color: #fff;
  border: none;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
}

html[data-theme='light'] .bfnav-menu-link:hover .bfnav-nav-icon img,
html[data-theme='light'] .bfnav-menu-link:hover .bfnav-more-arrow img {
  filter: brightness(0) invert(1);
}

html[data-theme='light'] .bfnav-menu-link.is-active {
  background: var(--btn-purple-gradient);
  background-image: var(--btn-purple-gradient);
  color: #fff;
  border: none;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
}

html[data-theme='light'] .bfnav-menu-link:not(.is-active):not(:hover) .bfnav-nav-icon img,
html[data-theme='light']
  .bfnav-menu-link:not(.is-active):not(:hover)
  .bfnav-more-arrow
  img {
  filter: brightness(0) saturate(100%) invert(52%);
}

html[data-theme='light'] .bfnav-menu-link.is-active .bfnav-nav-icon img,
html[data-theme='light'] .bfnav-menu-link.is-active .bfnav-more-arrow img {
  filter: brightness(0) invert(1);
}

html[data-theme='light'] .bfnav-balance {
  background: #f2b0fe;
  color: #000;
  border: 2px solid #df27ff;
}

html[data-theme='light'] .bfnav-balance img {
  filter: brightness(0);
}

html[data-theme='light'] .bfnav-icon-btn {
  background: rgba(0, 0, 0, 0.12);
  border-radius: 50%;
}

html[data-theme='light'] .bfnav-icon-btn img,
html[data-theme='light'] .bfnav-logout-icon {
  filter: brightness(0);
}

html[data-theme='light'] .bfnav-logout-bg {
  opacity: 0;
}

html[data-theme='light'] .bfnav-logout-btn {
  background: rgba(0, 0, 0, 0.12);
  border-radius: 50%;
}

html[data-theme='light'] .bfnav-burger {
  background: rgba(255, 255, 255, 0.75);
  color: #1d1d1d;
  border-color: #df27ff;
}

html[data-theme='light'] .bfnav-burger-icon span {
  background: #1d1d1d;
}

html[data-theme='light'] .bfnav-dropdown-panel,
html[data-theme='light'] .bfnav-more-dropdown .bfnav-dropdown-panel {
  background: #fff;
  border-color: rgba(189, 14, 220, 0.28);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  color: #3a3344;
}

html[data-theme='light'] .bfnav-dropdown-panel a,
html[data-theme='light'] .bfnav-dropdown-name,
html[data-theme='light'] .bfnav-balance-option,
html[data-theme='light'] .bfnav-more-dropdown .bfnav-dropdown-panel a {
  color: #3a3344;
}

html[data-theme='light'] .bfnav-balance-panel-head {
  color: rgba(58, 51, 68, 0.55);
}

html[data-theme='light'] .bfnav-balance-currency {
  color: #3a3344;
}

html[data-theme='light'] .bfnav-dropdown-email,
html[data-theme='light'] .bfnav-balance-option--static {
  color: rgba(58, 51, 68, 0.55);
}

html[data-theme='light'] .bfnav-dropdown-user {
  border-bottom-color: rgba(189, 14, 220, 0.15);
}

html[data-theme='light'] .bfnav-dropdown-panel a:hover,
html[data-theme='light'] .bfnav-balance-option:hover {
  background: rgba(189, 14, 220, 0.08);
}

html[data-theme='light'] .bfnav-balance-panel {
  background: #fff;
  color: #3a3344;
}

html[data-theme='light'] .bfnav-balance-panel .bfnav-balance-option,
html[data-theme='light'] .bfnav-balance-panel .bfnav-balance-option.dropdown-item,
html[data-theme='light'] .bfnav-balance-panel .bfnav-balance-option .bfnav-balance-code,
html[data-theme='light'] .bfnav-balance-panel .bfnav-balance-option .bfnav-balance-symbol {
  color: #3a3344 !important;
  -webkit-text-fill-color: #3a3344 !important;
  opacity: 1;
}

html[data-theme='light'] .bfnav-balance-panel .bfnav-balance-option.is-active,
html[data-theme='light'] .bfnav-balance-panel .bfnav-balance-option.is-active:hover,
html[data-theme='light'] .bfnav-balance-panel .bfnav-balance-option.is-active .bfnav-balance-code,
html[data-theme='light'] .bfnav-balance-panel .bfnav-balance-option.is-active .bfnav-balance-symbol {
  background: #f0e6f7;
  color: #5c3d6e !important;
  -webkit-text-fill-color: #5c3d6e !important;
}

html[data-theme='light'] .bfnav-more-dropdown .bfnav-dropdown-panel a:not(.is-active):hover {
  background: var(--btn-purple-gradient);
  background-image: var(--btn-purple-gradient);
  color: #fff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
}

html[data-theme='light'] .bfnav-more-dropdown .bfnav-dropdown-panel a:not(.is-active):hover .bfnav-more-icon img {
  filter: none;
}

html[data-theme='light'] .bfnav-more-dropdown .bfnav-dropdown-panel a.is-active,
html[data-theme='light'] .bfnav-more-dropdown .bfnav-dropdown-panel a.is-active:hover {
  background: #bd0edc;
  color: #fff;
}

html[data-theme='light'] .bfnav-more-icon img {
  filter: brightness(0) saturate(100%) invert(52%);
}

html[data-theme='light'] .bfnav-more-dropdown .bfnav-dropdown-panel a.is-active .bfnav-more-icon img {
  filter: none;
}

html[data-theme='light'] .bfnav-balance-add {
  border-top-color: rgba(189, 14, 220, 0.2);
  background: rgba(189, 14, 220, 0.08);
}

html[data-theme='light'] .bfnav-drawer {
  background: #fff;
  border-left-color: rgba(189, 14, 220, 0.25);
  box-shadow: -12px 0 32px rgba(0, 0, 0, 0.12);
}

html[data-theme='light'] .bfnav-drawer-header {
  border-bottom-color: rgba(189, 14, 220, 0.15);
}

html[data-theme='light'] .bfnav-drawer-name,
html[data-theme='light'] .bfnav-drawer-nav a {
  color: #1d1d1d;
}

html[data-theme='light'] .bfnav-drawer-email,
html[data-theme='light'] .bfnav-drawer-section-label {
  color: rgba(29, 29, 29, 0.55);
}

html[data-theme='light'] .bfnav-drawer-close {
  background: rgba(189, 14, 220, 0.08);
  color: #1d1d1d;
}

html[data-theme='light'] .bfnav-drawer-balance {
  background: #f2b0fe;
  color: #000;
  border-color: #df27ff;
}

html[data-theme='light'] .bfnav-drawer-balance img,
html[data-theme='light'] .bfnav-drawer-logout img {
  filter: brightness(0);
}

html[data-theme='light'] .bfnav-drawer-currency {
  color: #1d1d1d !important;
  -webkit-text-fill-color: #1d1d1d;
  background: rgba(189, 14, 220, 0.06);
  border-color: rgba(189, 14, 220, 0.22);
}

html[data-theme='light'] .bfnav-drawer-currency:hover,
html[data-theme='light'] .bfnav-drawer-currency.is-active,
html[data-theme='light'] .bfnav-drawer-nav a:hover {
  background: rgba(189, 14, 220, 0.12);
}

html[data-theme='light'] .bfnav-tabbar {
  background: #D2D2D2;
  border-top-color: rgba(189, 189, 189, 0.35);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
}

html[data-theme='light'] .bfnav-tabbar-item {
  color: rgba(29, 29, 29, 0.55);
}

html[data-theme='light'] .bfnav-tabbar-item .bfnav-tabbar-icon img {
  filter: brightness(0) saturate(100%) invert(52%);
  opacity: 1;
}

html[data-theme='light'] .bfnav-tabbar-item.is-active,
html[data-theme='light'] #bfnav-more-tab.is-active {
  color: #bd0edc;
}

html[data-theme='light'] .bfnav-tabbar-item.is-active .bfnav-tabbar-icon img,
html[data-theme='light'] #bfnav-more-tab.is-active .bfnav-tabbar-icon img {
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(22%) sepia(90%) saturate(4500%)
    hue-rotate(277deg) brightness(98%) contrast(101%);
}

html[data-theme='light']
  body.bfnav-sheet-open
  .bfnav-tabbar-item.is-active:not(#bfnav-more-tab) {
  color: rgba(29, 29, 29, 0.55);
}

html[data-theme='light']
  body.bfnav-sheet-open
  .bfnav-tabbar-item.is-active:not(#bfnav-more-tab)
  .bfnav-tabbar-icon
  img {
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(52%);
}

html[data-theme='light'] .bfnav-sheet {
  background: #fff;
  border-top-color: rgba(189, 14, 220, 0.35);
}

html[data-theme='light'] .bfnav-sheet-user {
  border-bottom-color: rgba(189, 14, 220, 0.15);
}

html[data-theme='light'] .bfnav-sheet-name,
html[data-theme='light'] .bfnav-sheet-grid a {
  color: #1d1d1d;
}

html[data-theme='light'] .bfnav-sheet-email {
  color: rgba(29, 29, 29, 0.55);
}

html[data-theme='light'] .bfnav-sheet-grid a {
  background: rgba(189, 14, 220, 0.06);
  border-color: rgba(189, 14, 220, 0.22);
}

html[data-theme='light'] .bfnav-sheet-grid a:hover {
  background: rgba(189, 14, 220, 0.12);
}

html[data-theme='light'] .bfnav-sheet-grid a.is-active,
html[data-theme='light'] .bfnav-sheet-grid a.is-active:hover {
  background: #bd0edc;
  border-color: #bd0edc;
  color: #fff;
}

html[data-theme='light'] .bfnav-sheet-icon img {
  filter: brightness(0) saturate(100%) invert(52%);
}

html[data-theme='light'] .bfnav-sheet-grid a.is-active .bfnav-sheet-icon img {
  filter: none;
}

html[data-theme='light'] .bfnav-sheet-logout {
  border-top-color: rgba(189, 14, 220, 0.2);
}

html[data-theme='light'] .bfnav-theme-switch__label {
  color: #1d1d1d;
}

html[data-theme='light'] .bfnav-theme-switch__track {
  background: linear-gradient(90deg, #fff 30%, #f3e8f6 100%);
  border-color: #bd0edc;
}

html[data-theme='light'] .bfnav-theme-switch__knob svg path {
  fill: #fff;
}

/* New order — light mode */
html[data-theme='light'] .neworder-stats {
  border: 1px solid rgba(205, 54, 231, 0.5);
  box-shadow: 0 10px 28px rgba(42, 36, 48, 0.08);
  background: linear-gradient(
    180deg,
    #d9a4ea 0%,
    #edd4f6 38%,
    #f8eefb 68%,
    #ffffff 100%
  );
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

html[data-theme='light'] .neworder-stat-icon {
  display: flex;
  width: auto;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-sizing: border-box;
}

html[data-theme='light'] .neworder-stat-icon .neworder-stat-icon-img--light {
  display: block;
}

html[data-theme='light'] .neworder-stat-icon .neworder-stat-icon-img--dark {
  display: none;
}

html[data-theme='light'] .neworder-stat-label {
  color: #1d1d1d;
}

html[data-theme='light'] .neworder-stat-value {
  color: #000;
}

html[data-theme='light'] .neworder-stat-hint {
  color: #848484;
}

html[data-theme='light'] .neworder-stat-divider {
  background: rgba(0, 0, 0, 0.12);
}

html[data-theme='light'] .neworder-platform {
  background: #fff;
  border: 0.5px solid rgba(205, 54, 231, 0.4);
  color: #111;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

html[data-theme='light'] .neworder-platform.is-active {
  background: #bd0edc;
  border-color: #cd36e7;
  color: #ebecef;
}

html[data-theme='light']
  .neworder-platform.is-active
  .neworder-platform-icon
  img {
  filter: none;
}

html[data-theme='light'] .neworder-panel {
  border: 1px solid #fff;
  border-radius: 16px;
  background: #fff;
}

html[data-theme='light'] .neworder-tabs {
  padding: 24px 24px 0;
  border-bottom-color: rgba(115, 115, 115, 0.2);
  background: #f7e6f9;
}

html[data-theme='light'] .neworder-tab {
  color: #000;
}

html[data-theme='light'] .neworder-tab img,
html[data-theme='light'] .neworder-tab.is-active img {
  filter: brightness(0);
}

html[data-theme='light'] .neworder-tab:hover,
html[data-theme='light'] .neworder-tab:focus {
  color: #111;
}

html[data-theme='light'] .neworder-tab.is-active {
  border-bottom-color: #d338ec;
  color: #111;
}

html[data-theme='light'] .neworder-form .control-label {
  color: #4a4a4a;
}

html[data-theme='light'] .neworder-form .form-control,
html[data-theme='light'] .neworder-form select,
html[data-theme='light'] .neworder-form textarea,
html[data-theme='light'] .neworder-form #fields .form-control {
  border: none;
  background: #ebebeb;
  color: #323232;
}

html[data-theme='light']
  .neworder-page
  .neworder-search-shell
  input::placeholder,
html[data-theme='light']
  .neworder-page
  .neworder-form
  .form-control::placeholder,
html[data-theme='light'] .neworder-page .neworder-form textarea::placeholder {
  color: #323232;
}

html[data-theme='light'] .neworder-search-shell .neworder-search-icon img {
  filter: brightness(0);
}

html[data-theme='light']
  .neworder-page
  .neworder-form
  #orderform-category
  + .select2
  .select2-selection--single,
html[data-theme='light']
  .neworder-page
  .neworder-form
  #orderform-service
  + .select2
  .select2-selection--single,
html[data-theme='light']
  .neworder-search-shell
  > .search-dropdown
  .select2-selection--single,
html[data-theme='light']
  .neworder-search-shell
  > .search-dropdown
  input.select2-selection.form-control,
html[data-theme='light']
  .neworder-search-shell
  #new-order-search
  .select2-selection--single,
html[data-theme='light']
  .neworder-search-shell
  #new-order-search
  input.select2-selection.form-control {
  background: #ebebeb;
  border-color: #ebebeb;
  color: #323232;
}

html[data-theme='light']
  .neworder-page
  .neworder-form
  #orderform-category
  + .select2
  .select2-selection__rendered,
html[data-theme='light']
  .neworder-page
  .neworder-form
  #orderform-category
  + .select2
  #select2-orderform-category-container,
html[data-theme='light']
  .neworder-page
  .neworder-form
  #orderform-service
  + .select2
  .select2-selection__rendered,
html[data-theme='light']
  .neworder-page
  .neworder-form
  #orderform-service
  + .select2
  #select2-orderform-service-container {
  color: #323232;
}

html[data-theme='light']
  .neworder-page
  .neworder-form
  #orderform-category
  + .select2
  .select2-selection__arrow
  b,
html[data-theme='light']
  .neworder-page
  .neworder-form
  #orderform-service
  + .select2
  .select2-selection__arrow
  b {
  border-color: #848484 transparent transparent transparent;
}

html[data-theme='light'] .neworder-service-name,
html[data-theme='light']
  #select2-orderform-service-container
  .neworder-service-name,
html[data-theme='light']
  #orderform-service
  + .select2
  .select2-selection__rendered
  .neworder-service-name,
html[data-theme='light'] #select2-orderform-category-container,
html[data-theme='light']
  #select2-orderform-category-container
  .neworder-category-text {
  color: #323232;
}

html[data-theme='light'] .neworder-charge-group .form-control {
  border: 1px solid #cb2fe6;
  background: linear-gradient(
    180deg,
    rgba(205, 54, 231, 0.1),
    rgba(108, 9, 158, 0.1)
  );
  color: #323232;
}

html[data-theme='light'] .neworder-form .terms {
  color: #4a4a4a;
}

html[data-theme='light'] .neworder-info-card {
  border: none;
  background: #ebebeb;
}

html[data-theme='light'] .neworder-info-card h3 {
  color: #323232;
}

html[data-theme='light'] .neworder-desc-card h3 {
  color: #848484;
}

html[data-theme='light'] .neworder-info-card p,
html[data-theme='light'] .neworder-info-card div {
  color: #323232;
}

html[data-theme='light'] .neworder-desc-card div {
  color: #323232;
}

html[data-theme='light'] .neworder-contact-card img,
html[data-theme='light'] .neworder-contact-card-head img {
  filter: brightness(0);
}

html[data-theme='light'] .neworder-update-intro {
  border: none;
  background: #ebebeb;
}

html[data-theme='light'] .neworder-update-intro p {
  color: #d338ec;
}

html[data-theme='light'] .neworder-update-card {
  border: 1px solid #e0e0e0;
  background: #fff;
}

html[data-theme='light'] .neworder-update-card h3 {
  color: #1d1d1d;
}

html[data-theme='light'] .neworder-update-card--telegram h3 {
  color: #0b95bf;
}

html[data-theme='light'] .neworder-update-card-copy p {
  color: #323232;
}

html[data-theme='light'] .neworder-contact-intro {
  border: none;
  background: #ebebeb;
}

html[data-theme='light'] .neworder-contact-intro p {
  color: #d338ec;
}

html[data-theme='light'] .neworder-contact-card {
  border: none;
  background: #ebebeb;
}

html[data-theme='light'] .neworder-contact-card h3 {
  color: #323232;
}

html[data-theme='light'] .neworder-contact-meta {
  color: #848484;
}

html[data-theme='light'] .neworder-contact-note {
  border: none;
  background: #ebebeb;
}

html[data-theme='light'] .neworder-contact-note h3 {
  color: #323232;
}

html[data-theme='light'] .neworder-contact-note p {
  color: #848484;
}

/* Select2 — new order light mode */
html[data-theme='light']
  .neworder-page
  .neworder-form
  #orderform-category
  + .select2
  .select2-selection--single,
html[data-theme='light']
  .neworder-page
  .neworder-form
  #orderform-service
  + .select2
  .select2-selection--single {
  background: #ebebeb;
  color: #323232;
  border: none;
}

html[data-theme='light']
  .neworder-search-shell
  > .search-dropdown
  .select2-selection--single,
html[data-theme='light']
  .neworder-search-shell
  > .search-dropdown
  input.select2-selection.form-control,
html[data-theme='light']
  .neworder-search-shell
  #new-order-search
  .select2-selection--single,
html[data-theme='light']
  .neworder-search-shell
  #new-order-search
  input.select2-selection.form-control,
html[data-theme='light']
  .neworder-page
  .neworder-search-shell
  > .search-dropdown.select2-container
  .input-wrapper
  > input.select2-selection.form-control,
html[data-theme='light']
  .neworder-page
  .neworder-search-shell
  #new-order-search.select2-container
  .input-wrapper
  > input.select2-selection.form-control {
  background: #ebebeb !important;
  background-color: #ebebeb !important;
  color: #323232 !important;
  border: none;
}

html[data-theme='light']
  .neworder-page
  .neworder-form
  #orderform-category
  + .select2
  .select2-selection__rendered,
html[data-theme='light']
  .neworder-page
  .neworder-form
  #orderform-category
  + .select2
  #select2-orderform-category-container,
html[data-theme='light']
  .neworder-page
  .neworder-form
  #orderform-service
  + .select2
  .select2-selection__rendered,
html[data-theme='light']
  .neworder-page
  .neworder-form
  #orderform-service
  + .select2
  #select2-orderform-service-container {
  color: #323232;
}

html[data-theme='light']
  .neworder-page
  .neworder-form
  #orderform-category
  + .select2
  .select2-selection__arrow
  b,
html[data-theme='light']
  .neworder-page
  .neworder-form
  #orderform-service
  + .select2
  .select2-selection__arrow
  b {
  border-color: #323232 transparent transparent transparent;
}

html[data-theme='light']
  .select2-dropdown.dropdown-menu:is(
    :has(#select2-orderform-category-results),
    :has(#select2-orderform-service-results),
    :has(#select2-new-order-search-results),
    :has(#select2-method-results),
    :has(#select2-template-input-results)
  ),
html[data-theme='light']
  .select2-dropdown:is(
    :has(#select2-orderform-category-results),
    :has(#select2-orderform-service-results),
    :has(#select2-new-order-search-results),
    :has(#select2-method-results),
    :has(#select2-template-input-results)
  ) {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-top: 0;
  color: #323232;
}

html[data-theme='light']
  :is(
    #select2-orderform-category-results,
    #select2-orderform-service-results,
    #select2-new-order-search-results,
    #select2-method-results,
    #select2-template-input-results
  )
  .select2-results__option {
  color: #323232 !important;
}

html[data-theme='light']
  #select2-orderform-service-results
  .neworder-service-name,
html[data-theme='light']
  #select2-new-order-search-results
  .neworder-service-name {
  color: #323232 !important;
}

html[data-theme='light']
  :is(
    #select2-orderform-category-results,
    #select2-orderform-service-results,
    #select2-new-order-search-results,
    #select2-method-results,
    #select2-template-input-results
  )
  .select2-results__option--highlighted,
html[data-theme='light']
  :is(
    #select2-orderform-category-results,
    #select2-orderform-service-results,
    #select2-new-order-search-results,
    #select2-method-results,
    #select2-template-input-results
  )
  .select2-results__option--highlighted[aria-selected],
html[data-theme='light']
  :is(
    #select2-orderform-category-results,
    #select2-orderform-service-results,
    #select2-new-order-search-results,
    #select2-method-results,
    #select2-template-input-results
  )
  .select2-results__option[aria-selected='true'].select2-results__option--highlighted {
  background: var(--select2-option-hover-gradient) !important;
  color: #fff !important;
}

html[data-theme='light']
  #select2-orderform-service-results
  .select2-results__option--highlighted
  .neworder-service-name,
html[data-theme='light']
  #select2-orderform-service-results
  .select2-results__option--highlighted[aria-selected]
  .neworder-service-name,
html[data-theme='light']
  #select2-orderform-service-results
  .select2-results__option[aria-selected='true']
  .neworder-service-name {
  color: #fff !important;
}

html[data-theme='light']
  :is(
    #select2-orderform-service-results,
    #select2-new-order-search-results
  )
  .select2-results__option
  .neworder-service-id,
html[data-theme='light']
  :is(
    #select2-orderform-service-results,
    #select2-new-order-search-results
  )
  .select2-results__option
  a
  .neworder-service-id,
html[data-theme='light']
  #select2-orderform-service-container
  .neworder-service-id,
html[data-theme='light']
  #orderform-service
    + .select2
    .select2-selection__rendered
    .neworder-service-id {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

html[data-theme='light']
  #select2-orderform-service-results
  .neworder-service-id,
html[data-theme='light']
  #select2-new-order-search-results
  .neworder-service-id,
html[data-theme='light']
  #select2-orderform-service-container .neworder-service-id,
html[data-theme='light']
  #orderform-service
    + .select2
    .select2-selection__rendered
    .neworder-service-id {
  background: var(--btn-purple-gradient) !important;
  background-image: var(--btn-purple-gradient) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

html[data-theme='light']
  #select2-orderform-service-results
  .select2-results__option--highlighted
  .neworder-service-id,
html[data-theme='light']
  #select2-orderform-service-results
  .select2-results__option--highlighted[aria-selected]
  .neworder-service-id,
html[data-theme='light']
  #select2-orderform-service-results
  .select2-results__option.select2-results__option--selectable:hover
  .neworder-service-id,
html[data-theme='light']
  #select2-orderform-service-results
  .select2-results__option[aria-selected='true']
  .neworder-service-id,
html[data-theme='light']
  #select2-new-order-search-results
  .select2-results__option--highlighted
  .neworder-service-id,
html[data-theme='light']
  #select2-new-order-search-results
  .select2-results__option--highlighted[aria-selected]
  .neworder-service-id,
html[data-theme='light']
  #select2-new-order-search-results
  .select2-results__option.select2-results__option--selectable:hover
  .neworder-service-id,
html[data-theme='light']
  #select2-new-order-search-results
  .select2-results__option[aria-selected='true']
  .neworder-service-id {
  background: var(--btn-purple-gradient) !important;
  background-image: var(--btn-purple-gradient) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

html[data-theme='light']
  .neworder-search-shell
  > .search-dropdown
  #select-category-container
  .select2-dropdown,
html[data-theme='light']
  .neworder-search-shell
  > .search-dropdown
  #select-category-container
  .select2-dropdown.dropdown-menu {
  background: #fff !important;
  border: 1px solid #e0e0e0 !important;
  color: #323232 !important;
}

html[data-theme='light']
  .neworder-search-shell
  > .search-dropdown
  #select-category-container
  .select2-results,
html[data-theme='light']
  .neworder-search-shell
  > .search-dropdown
  #select-category-container
  .select2-results__options {
  background: #fff !important;
  color: #323232 !important;
}

html[data-theme='light']
  .neworder-search-shell
  > .search-dropdown
  #select-category-container
  .select2-results__option,
html[data-theme='light']
  .neworder-search-shell
  > .search-dropdown
  #select-category-container
  .select2-results__option
  * {
  color: #323232 !important;
}

html[data-theme='light'] .neworder-page #order-form .alert.alert-danger,
html[data-theme='light'] .massorder-page .alert.alert-danger,
html[data-theme='light'] .account-page .alert.alert-danger {
  color: #b42318;
}

html[data-theme='light'] .neworder-page #order-form .alert.alert-success,
html[data-theme='light'] .massorder-page .alert.alert-success,
html[data-theme='light'] .account-page .alert.alert-success {
  color: #1a7f37;
}

html[data-theme='light'] .neworder-page #order-form .alert.alert-danger h4,
html[data-theme='light'] .massorder-page .alert.alert-danger h4,
html[data-theme='light'] .neworder-page #order-form .alert.alert-success h4,
html[data-theme='light'] .massorder-page .alert.alert-success h4,
html[data-theme='light'] .account-page .alert.alert-danger h4,
html[data-theme='light'] .account-page .alert.alert-success h4 {
  color: #1d1d1d;
}

/* Giveaway page */
.giveaway-page {
  display: flex;
  flex-direction: column;
  gap: var(--page-block-gap);
  width: 100%;
  padding-top: 16px;
}

.giveaway-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--page-block-gap);
  width: 100%;
}

.giveaway-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.1vw, 30px);
  padding: clamp(18px, 2.1vw, 30px) clamp(14px, 1.4vw, 20px);
  border: 1px solid #cd36e7;
  border-radius: var(--panel-radius);
  background: #1a161e;
  overflow: hidden;
}

.giveaway-card-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
}

.giveaway-card-brand img {
  display: block;
  max-width: 132px;
  max-height: 38px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.giveaway-card-brand--quora img {
  max-width: 110px;
}

.giveaway-card-reward {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
}

.giveaway-card-amount {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #c100ff;
}

.giveaway-card-desc {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #d3d3d3;
}

.giveaway-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8px 40px;
  border: 1px solid #ce6bff;
  border-radius: 10px;
  background: #bd0edc;
  box-shadow: 2px 2px 10px rgba(205, 54, 231, 0.4);
  color: #fff;
  font-family: 'Parkinsans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.giveaway-card-btn:hover,
.giveaway-card-btn:focus {
  background: #d01af5;
  color: #fff;
  text-decoration: none;
}

.giveaway-panel {
  width: 100%;
  border: 1px solid #cd36e7;
  border-radius: 20px;
  background: #1a161e;
  overflow: hidden;
}

.giveaway-panel-head {
  padding: 16px 66px 16px 24px;
  background: #bd0edc;
}

.giveaway-panel-head h2 {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
}

.giveaway-details-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px 64px 48px 32px;
}

.giveaway-guidelines {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 680px;
}

.giveaway-guidelines h3 {
  margin: 0 0 12px;
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
}

.giveaway-guidelines-intro {
  margin: 0 0 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
}

.giveaway-guidelines-list {
  margin: 0;
  padding-left: 21px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #fafafb;
  list-style: disc;
}

.giveaway-guidelines-list li {
  margin-bottom: 0;
}

.giveaway-guidelines-list li:last-child {
  margin-bottom: 0;
}

.giveaway-details-banner {
  flex: 0 0 auto;
  width: min(528px, 42%);
  max-width: 528px;
}

.giveaway-details-banner img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

.giveaway-steps {
  padding: 40px 48px;
}

.giveaway-steps-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100%;
}

.giveaway-steps-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 416px;
  text-align: center;
}

.giveaway-steps-heading h2 {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
}

.giveaway-steps-heading h2 span {
  color: #bd0edc;
}

.giveaway-steps-heading p {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #f5f6f7;
}

.giveaway-steps-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 853px;
}

.giveaway-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 16px 0;
  width: 100%;
  max-width: 812px;
}

.giveaway-step-art {
  display: block;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  object-fit: contain;
}

.giveaway-step-badges-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  position: relative;
  margin-top: 4px;
}

.giveaway-step-track-line {
  position: absolute;
  top: 50%;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 3px;
  background: #d338ec;
  transform: translateY(-50%);
  z-index: 0;
}

.giveaway-step-badge {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  border: 2px solid #d338ec;
  border-radius: 20px;
  background: #1a161e;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #d338ec;
}

.giveaway-step-badge.is-active {
  border-color: #d338ec;
  background: #d338ec;
  color: #fff;
}

.giveaway-step-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  text-align: center;
}

.giveaway-step-label-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #d338ec;
}

.giveaway-step-label-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #d3d3d3;
}

@media (max-width: 1200px) {
  .giveaway-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .giveaway-details-body {
    padding: 40px 32px;
  }

  .giveaway-details-banner {
    width: min(420px, 45%);
  }
}

@media (max-width: 992px) {
  .giveaway-details-body {
    flex-direction: column;
    align-items: stretch;
    padding: 32px 24px;
  }

  .giveaway-details-banner {
    width: 100%;
    max-width: none;
  }

  .giveaway-steps-grid {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .giveaway-page {
    padding-top: 0;
    gap: 24px;
  }

  .giveaway-cards {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .giveaway-panel-head {
    padding: 14px 24px;
  }

  .giveaway-panel-head h2,
  .giveaway-guidelines h3 {
    font-size: 20px;
  }

  .giveaway-details-body {
    padding: 24px 20px;
    gap: 24px;
  }

  .giveaway-steps {
    padding: 32px 20px;
  }

  .giveaway-steps-heading h2 {
    font-size: 26px;
  }

  .giveaway-step-art {
    width: 80px;
    height: 80px;
  }
}

html[data-theme='light'] .giveaway-card,
html[data-theme='light'] .giveaway-panel {
  background: #fff;
  border: none;
  box-shadow: 0 8px 24px rgba(42, 36, 48, 0.06);
}

html[data-theme='light'] .giveaway-card-amount {
  color: #bd0edc;
}

html[data-theme='light'] .page-content p.giveaway-card-desc,
html[data-theme='light'] .giveaway-card-desc {
  color: #4a4a4a;
}

html[data-theme='light'] .giveaway-card-btn {
  border-color: #bd0edc;
  background: #bd0edc;
  box-shadow: 0 4px 12px rgba(189, 14, 220, 0.28);
}

html[data-theme='light'] .giveaway-card-btn:hover,
html[data-theme='light'] .giveaway-card-btn:focus {
  background: #d01af5;
  border-color: #d01af5;
}

html[data-theme='light'] .giveaway-guidelines h3,
html[data-theme='light'] .giveaway-steps-heading h2 {
  color: #111;
}

html[data-theme='light'] .page-content p.giveaway-guidelines-intro,
html[data-theme='light'] .giveaway-guidelines-intro,
html[data-theme='light'] .giveaway-steps-heading p {
  color: #848484;
}

html[data-theme='light'] .giveaway-guidelines-list {
  color: #4a4a4a;
}

html[data-theme='light'] .giveaway-steps-heading h2 span {
  color: #bd0edc;
}

html[data-theme='light'] .giveaway-step-badge {
  background: #fff;
  border-color: #d338ec;
  color: #d338ec;
}

html[data-theme='light'] .giveaway-step-badge.is-active {
  background: #d338ec;
  border-color: #d338ec;
  color: #fff;
}

html[data-theme='light'] .giveaway-step-label-title {
  color: #d338ec;
}

html[data-theme='light'] .giveaway-step-label-text {
  color: #4a4a4a;
}

/* Account page */
.account-page {
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
  width: 100%;
  padding-top: 16px;
}

.account-subnav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.account-subnav-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 8px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  transition:
    background-color 0.15s ease,
    color 0.15s ease;
}

.account-subnav-link:hover,
.account-subnav-link:focus {
  color: #fff;
  text-decoration: none;
  background: rgba(37, 31, 44, 0.6);
}

.account-subnav-link.is-active {
  background: #251f2c;
  color: #bd0edc;
}

.account-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: var(--page-block-gap);
  width: 100%;
}

.account-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid #cd36e7;
  border-radius: var(--panel-radius);
  background: #1a161e;
}

.account-panel--full {
  width: 100%;
}

.account-panel-head {
  display: flex;
  align-items: center;
  min-height: 92px;
  padding: 24px;
  background: #251f2c;
  box-sizing: border-box;
}

.account-panel-head h2 {
  margin: 0;
  font-family: 'Parkinsans', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
}

.account-panel-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 24px;
  padding: 24px;
}

.account-panel-body > .account-form {
  flex: 1;
}

.account-fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.account-field {
  width: 100%;
}

.account-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}

.account-label {
  display: block;
  margin-bottom: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #ebecef;
}

.account-field-control {
  display: block;
  width: 100%;
  box-sizing: border-box;
  height: 58px;
  min-height: 58px;
  padding: 16px;
  border: 1.5px solid #2d2d2d;
  border-radius: 10px;
  background: #221d25;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.account-field-control--static {
  display: flex;
  align-items: center;
}

.account-field-control--textarea {
  height: auto;
  min-height: 140px;
  resize: vertical;
}

.account-field-control--select {
  appearance: none;
  cursor: pointer;
  height: 58px;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23ebecef' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
}

.account-field-control:focus,
.account-field-control:focus-visible {
  outline: none;
  border-color: #bd0edc;
}

.account-field-control::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.account-form,
.account-2fa-approve {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.account-panel-body .account-form > .account-btn--full {
  margin-top: auto;
}

.account-inline-form {
  display: flex;
  flex: 1 1 0;
  min-width: 0;
}

.account-actions-row {
  display: flex;
  align-items: stretch;
  gap: 12px;
  width: 100%;
}

.account-actions-row > .account-btn {
  flex: 1 1 0;
  min-width: 0;
}

.account-inline-form .account-btn {
  width: 100%;
}

.account-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border: 0;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.15s ease;
}

.account-btn--primary {
  background: #bd0edc;
}

.account-btn--primary:hover,
.account-btn--primary:focus {
  background: #d01af5;
  color: #fff;
}

.account-btn--danger {
  background: #ef1b3f;
}

.account-btn--danger:hover,
.account-btn--danger:focus {
  background: #f52e50;
  color: #fff;
}

.account-btn--full {
  width: 100%;
}

.account-btn-icon {
  flex-shrink: 0;
}

.account-help {
  margin: 8px 0 0;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #9a9aab;
}

.account-2fa-note {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #ebecef;
}

@media (max-width: 992px) {
  .account-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .account-page {
    padding-top: 0;
    gap: 20px;
  }

  .account-panel-head {
    min-height: auto;
    padding: 16px 20px;
  }

  .account-panel-body {
    padding: 20px;
    gap: 20px;
  }

  .account-field-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .account-actions-row {
    flex-direction: column;
  }

  .account-btn {
    font-size: 16px;
    padding: 14px 24px;
  }
}

/* Change email modal */
.modal.account-change-email-modal {
  z-index: 12050;
}

.modal.account-change-email-modal.in,
.modal.account-change-email-modal.show {
  display: block !important;
  text-align: center;
}

.modal.account-change-email-modal .modal-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(560px, calc(100% - 32px));
  max-width: min(560px, calc(100% - 32px));
  margin: 0;
}

body.modal-open .modal-backdrop {
  z-index: 100;
}

.modal.account-change-email-modal .modal-content.account-change-email-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  border: 1px solid #cd36e7;
  border-radius: 20px;
  background: #1a161e;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  color: #fff;
  text-align: left;
}

.account-change-email-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 92px;
  padding: 24px;
  background: #251f2c;
  box-sizing: border-box;
}

.account-change-email-head h2 {
  margin: 0;
  font-family: 'Parkinsans', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
}

.account-change-email-close {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.15s ease;
  pointer-events: auto;
}

.account-change-email-close:hover,
.account-change-email-close:focus {
  background: rgba(255, 255, 255, 0.32);
  outline: none;
}

.account-change-email-body {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px 24px 20px;
}

.account-change-email-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.account-change-email-modal .account-field {
  width: 100%;
  min-width: 0;
}

.account-change-email-modal .account-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.account-change-email-modal .account-label {
  display: block;
  margin-bottom: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #ebecef;
}

.account-change-email-modal .account-field-control {
  display: block;
  width: 100%;
  box-sizing: border-box;
  height: 58px;
  min-height: 58px;
  padding: 16px;
  border: 1.5px solid #2d2d2d;
  border-radius: 10px;
  background: #221d25;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.account-change-email-modal .account-field-control--static {
  display: flex;
  align-items: center;
}

.account-change-email-modal .account-btn--full {
  width: 100%;
}

.account-change-email-modal .alert {
  margin: 0;
}

@media (max-width: 768px) {
  .modal.account-change-email-modal .modal-dialog {
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
  }

  .account-change-email-head {
    min-height: auto;
    padding: 16px 20px;
  }

  .account-change-email-body {
    gap: 24px;
    padding: 24px 20px 20px;
  }

  .account-change-email-modal .account-field-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }
}

/* Account page — light mode */
html[data-theme='light'] .account-subnav-link {
  color: #4a4a4a;
}

html[data-theme='light'] .account-subnav-link:hover,
html[data-theme='light'] .account-subnav-link:focus {
  color: #111;
  background: #fff;
}

html[data-theme='light'] .account-subnav-link.is-active {
  background: #fff;
  color: #bd0edc;
}

html[data-theme='light'] .account-panel,
html[data-theme='light'] .modal.account-change-email-modal .modal-content.account-change-email-card {
  border: none;
  background: #fff;
  box-shadow: 0 8px 24px rgba(42, 36, 48, 0.06);
  color: #1d1d1d;
}

html[data-theme='light'] .account-panel-head,
html[data-theme='light'] .account-change-email-head {
  background: #fdf2fd;
}

html[data-theme='light'] .account-panel-head h2,
html[data-theme='light'] .page-content .account-panel-head h2,
html[data-theme='light'] .account-change-email-head h2 {
  color: #1d1d1d;
  font-weight: 700;
}

html[data-theme='light'] .account-label,
html[data-theme='light'] .account-change-email-modal .account-label {
  color: #323232;
}

html[data-theme='light'] .account-field-control,
html[data-theme='light'] .account-change-email-modal .account-field-control {
  border: none;
  background-color: #ebebeb;
  color: #323232;
}

html[data-theme='light'] .account-field-control::placeholder,
html[data-theme='light'] .account-change-email-modal .account-field-control::placeholder {
  color: #848484;
}

html[data-theme='light'] .account-field-control:focus,
html[data-theme='light'] .account-field-control:focus-visible,
html[data-theme='light'] .account-change-email-modal .account-field-control:focus,
html[data-theme='light'] .account-change-email-modal .account-field-control:focus-visible {
  border: none;
  box-shadow: none;
  outline: none;
}

html[data-theme='light'] .account-field-control--select {
  background-color: #ebebeb;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23323232' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
}

html[data-theme='light'] .account-field-control--select option {
  background: #fff;
  color: #323232;
}

html[data-theme='light'] .account-help,
html[data-theme='light'] .account-2fa-note {
  color: #848484;
}

html[data-theme='light'] .account-btn--primary:hover,
html[data-theme='light'] .account-btn--primary:focus {
  background: #d01af5;
  color: #fff;
}

html[data-theme='light'] .account-btn--danger {
  background: #ed2a41;
}

html[data-theme='light'] .account-btn--danger:hover,
html[data-theme='light'] .account-btn--danger:focus {
  background: #f43b51;
  color: #fff;
}

html[data-theme='light'] .account-change-email-close {
  background: rgba(29, 29, 29, 0.08);
  color: #1d1d1d;
}

html[data-theme='light'] .account-change-email-close:hover,
html[data-theme='light'] .account-change-email-close:focus {
  background: rgba(29, 29, 29, 0.16);
}

/* Notifications page */
.notifications-page .notifications-panel-head {
  min-height: 72px;
  padding: 8px 24px;
}

.notifications-page .notifications-panel-head h2 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.notifications-panel-desc {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #ebecef;
}

.notifications-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.notifications-table {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.notifications-table-head,
.notifications-table-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) repeat(
      var(--notifications-sender-count),
      minmax(0, 1fr)
    );
  gap: 12px;
  align-items: center;
}

.notifications-table-head {
  margin-bottom: 12px;
}

.notifications-table-head-cell {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: #f5f6f7;
}

.notifications-table-row {
  padding: 15px 0;
  border-bottom: 0.5px solid #2d2d2d;
}

.notifications-table-row:last-child {
  border-bottom: 0;
}

.notifications-table-label {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #ebecef;
}

.notifications-table-toggle {
  display: flex;
  align-items: center;
}

.notifications-toggle-wrap {
  display: inline-flex;
}

.notifications-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 55px;
  height: 32px;
  margin: 0;
  cursor: pointer;
}

.notifications-toggle-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
  pointer-events: none;
}

.notifications-toggle-track {
  display: block;
  width: 55px;
  height: 32px;
  border-radius: 30px;
  background: #3a3540;
  transition: background-color 0.2s ease;
  position: relative;
}

.notifications-toggle-track::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s ease;
}

.notifications-toggle-input:checked + .notifications-toggle-track {
  background: #bd0edc;
}

.notifications-toggle-input:checked + .notifications-toggle-track::after {
  transform: translateX(23px);
}

.notifications-toggle-input:disabled + .notifications-toggle-track {
  opacity: 0.45;
}

.notifications-toggle:has(.notifications-toggle-input:disabled) {
  cursor: not-allowed;
}

.notifications-toggle-input:focus-visible + .notifications-toggle-track {
  outline: 2px solid rgba(189, 14, 220, 0.55);
  outline-offset: 2px;
}

html[data-theme='light'] .notifications-table-label,
html[data-theme='light'] .notifications-table-head-cell {
  color: #2a2430;
}

html[data-theme='light'] .notifications-table-row {
  border-bottom-color: rgba(42, 36, 48, 0.2);
}

html[data-theme='light'] .notifications-toggle-track {
  background: #d8d3de;
}

@media (max-width: 768px) {
  .notifications-table-head,
  .notifications-table-row {
    gap: 8px;
  }

  .notifications-table-head-cell {
    font-size: 14px;
  }

  .notifications-table-label {
    font-size: 14px;
  }

  .notifications-page .notifications-panel-head {
    min-height: auto;
    padding: 16px 20px;
  }
}

/* Affiliates page */
.affiliates-page {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  width: 100%;
  padding-top: 16px;
}

.affiliates-referral-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--page-block-gap);
  width: 100%;
  padding: clamp(20px, 2.2vw, 32px);
  border: 1px solid #b926b9;
  border-radius: 16px;
  background:
    radial-gradient(ellipse 90% 80% at 12% 18%, rgba(168, 28, 210, 0.55) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 85% 90%, rgba(90, 10, 120, 0.35) 0%, transparent 50%),
    linear-gradient(135deg, #2a0a36 0%, #140218 42%, #0d0212 72%, #08010a 100%);
  overflow: hidden;
  isolation: isolate;
  box-sizing: border-box;
  box-shadow:
    0 0 0 1px rgba(185, 38, 185, 0.25),
    0 0 28px rgba(185, 38, 185, 0.28),
    0 0 56px rgba(189, 14, 220, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.affiliates-referral-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(
      125deg,
      rgba(201, 38, 215, 0.22) 0%,
      transparent 38%,
      transparent 62%,
      rgba(120, 20, 160, 0.12) 100%
    );
  pointer-events: none;
}

.affiliates-referral-main {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.affiliates-referral-intro {
  display: flex;
  align-items: center;
  gap: 16px;
}

.affiliates-referral-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #bd0edc;
  color: #fff;
}

.affiliates-referral-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.affiliates-referral-title {
  margin: 0;
  font-family: 'Parkinsans', sans-serif;
  font-size: clamp(18px, 1.5vw, 20px);
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}

.affiliates-referral-subtitle {
  margin: 0;
  font-family: 'Parkinsans', sans-serif;
  font-size: clamp(14px, 1.15vw, 16px);
  font-weight: 400;
  line-height: 1.5;
  color: #a2a2a2;
}

.affiliates-referral-actions {
  display: flex;
  align-items: stretch;
  gap: 8px;
  width: 100%;
}

.affiliates-referral-field {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  height: 56px;
  padding: 0 16px;
  border: 1.5px solid #2d2d2d;
  border-radius: 10px;
  background: #221d25;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.affiliates-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-shrink: 0;
  min-height: 56px;
  padding: 12px 28px;
  border: 1.5px solid #2c2531;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
  cursor: pointer;
  transition:
    background-color 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}

.affiliates-btn iconify-icon {
  display: block;
  flex-shrink: 0;
}

.affiliates-btn--copy {
  border-color: #d338ec;
  background: #d338ec;
}

.affiliates-btn--copy:hover,
.affiliates-btn--copy:focus {
  background: #e04af7;
  border-color: #e04af7;
  color: #fff;
}

.affiliates-btn--copy.is-copied {
  border-color: #19ab1e;
  background: rgba(25, 171, 30, 0.25);
  color: #8ef598;
}

.affiliates-btn--share {
  border-color: #d338ec;
  background: transparent;
  color: #d338ec;
}

.affiliates-btn--share:hover,
.affiliates-btn--share:focus {
  background: rgba(211, 56, 236, 0.12);
  color: #e04af7;
}

.affiliates-referral-note {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #a2a2a2;
}

.affiliates-referral-note iconify-icon {
  flex-shrink: 0;
  color: #d338ec;
}

.affiliates-referral-note p {
  margin: 0;
  font-family: 'Parkinsans', sans-serif;
  font-size: clamp(14px, 1.15vw, 16px);
  font-weight: 400;
  line-height: 1.5;
  color: #a2a2a2;
}

.affiliates-referral-divider {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 1px;
  align-self: stretch;
  min-height: 120px;
  background: rgba(132, 132, 132, 0.35);
}

.affiliates-referral-qr-wrap {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  padding: 14px;
  border: 1px solid rgba(185, 38, 185, 0.65);
  border-radius: 16px;
  background: #0a060c;
  box-shadow:
    0 0 20px rgba(185, 38, 185, 0.35),
    inset 0 0 0 1px rgba(185, 38, 185, 0.15);
}

.affiliates-referral-qr {
  display: block;
  width: 173px;
  height: 173px;
  border-radius: 8px;
  object-fit: cover;
  background: #fff;
}

.affiliates-stats {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 24px);
  width: 100%;
}

.affiliates-stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  width: 100%;
}

.affiliates-stat-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 120px;
  padding: clamp(20px, 2vw, 28px);
  border: 1px solid #cd36e7;
  border-radius: 20px;
  background: #1a161e;
  overflow: hidden;
  box-sizing: border-box;
}

.affiliates-stat-copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.affiliates-stat-label {
  margin: 0;
  font-family: 'Parkinsans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #ebecef;
}

.affiliates-stat-value {
  margin: 0;
  font-family: 'Parkinsans', sans-serif;
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

.affiliates-request-payout {
  margin-top: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #d338ec;
  text-decoration: none;
}

.affiliates-request-payout:hover,
.affiliates-request-payout:focus {
  color: #e04af7;
  text-decoration: underline;
}

.affiliates-stat-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.affiliates-stat-icon--referrals {
  width: 74px;
}

.affiliates-terms-card,
.affiliates-panel {
  width: 100%;
  padding: clamp(24px, 2.4vw, 32px);
  border: 1px solid #cd36e7;
  border-radius: 20px;
  background: #1a161e;
  box-sizing: border-box;
}

.affiliates-panel-head h2 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  color: #fff;
}

.affiliates-panel-body {
  margin-top: 24px;
}

.affiliates-terms-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #ebecef;
  font-family: 'Parkinsans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.affiliates-terms-content h1,
.affiliates-terms-content h2,
.affiliates-terms-content h3,
.affiliates-terms-content h4,
.affiliates-terms-content h5,
.affiliates-terms-content h6,
.affiliates-terms-content strong,
.affiliates-terms-content b {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  color: #fff;
}

.affiliates-terms-content p {
  margin: 0;
}

.affiliates-terms-content ul,
.affiliates-terms-content ol {
  margin: 0;
  padding-left: 24px;
}

.affiliates-terms-content li + li {
  margin-top: 8px;
}

.affiliates-terms-content > * + * {
  margin-top: 0;
}

.affiliates-terms-content h1,
.affiliates-terms-content h2 {
  font-size: clamp(18px, 1.5vw, 22px);
}

.affiliates-terms-content h3,
.affiliates-terms-content h4 {
  font-size: clamp(16px, 1.3vw, 18px);
}

.affiliates-terms-content hr {
  width: 100%;
  margin: 8px 0;
  border: 0;
  border-top: 1px dashed rgba(132, 132, 132, 0.55);
}

.affiliates-table {
  width: 100%;
  border-collapse: collapse;
}

.affiliates-table th,
.affiliates-table td {
  padding: 14px 16px;
  border-bottom: 0.5px solid #2d2d2d;
  text-align: left;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.affiliates-table th {
  color: #f5f6f7;
  font-weight: 500;
}

.affiliates-table td {
  color: #ebecef;
}

.affiliates-table tbody tr:last-child td {
  border-bottom: 0;
}

.affiliates-pagination .pagination {
  margin: 0;
}

.affiliates-pagination .pagination > li > a,
.affiliates-pagination .pagination > li > span {
  border-color: rgba(189, 14, 220, 0.35);
  background: #1a161e;
  color: #fff;
}

.affiliates-pagination .pagination > .active > a,
.affiliates-pagination .pagination > .active > span {
  border-color: #bd0edc;
  background: rgba(189, 14, 220, 0.2);
  color: #fff;
}

html[data-theme='light'] .affiliates-referral-card {
  background:
    radial-gradient(ellipse 90% 80% at 12% 18%, rgba(189, 14, 220, 0.12) 0%, transparent 55%),
    linear-gradient(135deg, #f7f0fb 0%, #f0e8f5 100%);
  border-color: rgba(185, 38, 185, 0.35);
  box-shadow:
    0 0 24px rgba(185, 38, 185, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

html[data-theme='light'] .affiliates-referral-card::before {
  background: linear-gradient(
    125deg,
    rgba(189, 14, 220, 0.08) 0%,
    transparent 40%
  );
}

html[data-theme='light'] .affiliates-referral-qr-wrap {
  background: #fff;
  border-color: rgba(185, 38, 185, 0.35);
  box-shadow: 0 0 16px rgba(185, 38, 185, 0.12);
}

html[data-theme='light'] .affiliates-referral-field {
  background: #fff;
  border-color: rgba(42, 36, 48, 0.2);
  color: #2a2430;
}

html[data-theme='light'] .affiliates-referral-title,
html[data-theme='light'] .affiliates-stat-value,
html[data-theme='light'] .affiliates-panel-head h2,
html[data-theme='light'] .affiliates-terms-content h1,
html[data-theme='light'] .affiliates-terms-content h2,
html[data-theme='light'] .affiliates-terms-content h3,
html[data-theme='light'] .affiliates-terms-content h4,
html[data-theme='light'] .affiliates-terms-content h5,
html[data-theme='light'] .affiliates-terms-content h6,
html[data-theme='light'] .affiliates-terms-content strong,
html[data-theme='light'] .affiliates-terms-content b {
  color: #2a2430;
}

html[data-theme='light'] .affiliates-stat-card,
html[data-theme='light'] .affiliates-terms-card,
html[data-theme='light'] .affiliates-panel {
  background: #fff;
  border-color: rgba(189, 14, 220, 0.45);
}

html[data-theme='light'] .affiliates-stat-label,
html[data-theme='light'] .affiliates-terms-content,
html[data-theme='light'] .affiliates-table td {
  color: #4a4450;
}

@media (max-width: 1200px) {
  .affiliates-stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .affiliates-referral-card {
    flex-direction: column;
    align-items: stretch;
  }

  .affiliates-referral-divider {
    width: 100%;
    min-height: 1px;
    height: 1px;
  }

  .affiliates-referral-qr-wrap {
    align-self: center;
  }
}

@media (max-width: 768px) {
  .affiliates-page {
    gap: 32px;
    padding-top: 0;
  }

  .affiliates-referral-card {
    padding: 24px 20px;
  }

  .affiliates-referral-subtitle,
  .affiliates-referral-note p {
    font-size: 16px;
  }

  .affiliates-referral-actions {
    flex-direction: column;
  }

  .affiliates-btn {
    width: 100%;
  }

  .affiliates-stats-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .affiliates-stat-card {
    padding: 24px 20px;
  }

  .affiliates-terms-card,
  .affiliates-panel {
    padding: 24px 20px;
  }
}

/* Dashboard page */
.dashboard-page {
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
  width: 100%;
  padding-top: 16px;
}

.dashboard-overview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--page-block-gap);
  width: 100%;
}

.dashboard-account-card,
.dashboard-progress-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--panel-radius);
  isolation: isolate;
}

.dashboard-account-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  min-height: 356px;
  box-sizing: border-box;
  border: 1px solid #cd36e7;
  background-color: #1a161e;
  background-image: url('https://storage.perfectcdn.com/770smr/h4ebrt1jqk2il5l0.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.dashboard-progress-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 20px;
  min-height: 356px;
  box-sizing: border-box;
  container-type: inline-size;
  container-name: progress-card;
  border: 1px solid #cd36e7;
  background-color: #1a161e;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.dashboard-account-card::before {
  display: none;
}

.dashboard-account-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dashboard-account-user {
  min-width: 0;
  flex: 1;
}

.page-content p.dashboard-account-username {
  margin: 0;
  font-family: 'Parkinsans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}

.page-content p.dashboard-account-label {
  margin: 0;
  font-family: 'Parkinsans', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: #a2a2a2;
}

.page-content .dashboard-level-badge {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  padding: 4px 12px;
  border-radius: 999px;
  background: #bd0edc;
  background-image: none;
  color: #fff;
  font-family: 'Parkinsans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
}

.dashboard-account-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}

.dashboard-stat-tile {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
  align-items: start;
  column-gap: 12px;
  row-gap: 12px;
  min-height: 112px;
  padding: 20px;
  border-radius: 12px;
  background: #221d25;
  background-image: none;
  box-sizing: border-box;
}

.dashboard-stat-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

img.dashboard-stat-icon {
  display: block;
  grid-column: 1;
  grid-row: 1;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  padding: 8px;
  border-radius: 50%;
  overflow: hidden;
  object-fit: contain;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.2);
}

img.dashboard-stat-icon--light {
  display: none;
}

.dashboard-stat-label {
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: end;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  white-space: nowrap;
}

.dashboard-stat-value {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  align-self: start;
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 36px;
  color: #fff;
  white-space: nowrap;
  text-align: right;
}

.dashboard-progress-head {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
}

.dashboard-progress-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 0;
  min-width: 0;
}

.dashboard-progress-level-icon {
  flex-shrink: 0;
  width: 42px;
  height: 44px;
  object-fit: contain;
}

.page-content p.dashboard-progress-title {
  margin: 0;
  font-family: 'Parkinsans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #a2a2a2;
  white-space: nowrap;
}

.page-content p.dashboard-progress-level-name {
  margin: 0;
  font-family: 'Parkinsans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  white-space: nowrap;
}

.dashboard-progress-next {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.dashboard-progress-next-label {
  font-family: 'Parkinsans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #a2a2a2;
  white-space: nowrap;
}

.dashboard-progress-next-arrow {
  flex-shrink: 0;
  width: 12px;
  height: 24px;
  overflow: hidden;
}

.dashboard-progress-next-arrow img {
  display: block;
  width: 12px;
  height: 24px;
}

.dashboard-progress-next-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #fff;
  font-family: 'Parkinsans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}

.dashboard-progress-next-pill img {
  flex-shrink: 0;
  width: 23px;
  height: 24px;
  object-fit: contain;
}

.dashboard-progress-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dashboard-progress-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: 'Parkinsans', sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: #a2a2a2;
}

.page-content p.dashboard-progress-message {
  margin: 0;
  font-family: 'Parkinsans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: #a2a2a2;
}

.dashboard-progress-percent {
  flex-shrink: 0;
  color: #a2a2a2;
}

.dashboard-progress-bar {
  position: relative;
  height: 36px;
  border-radius: 100px;
  background: rgba(214, 214, 214, 0.23);
  backdrop-filter: blur(100px);
  overflow: hidden;
}

.dashboard-progress-bar-fill {
  width: var(--dashboard-progress, 0%);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  min-width: 0;
  border-radius: 100px;
  background: #bd0edc;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.02);
  transition: width 0.25s ease;
}

.dashboard-progress-bar-badge {
  position: absolute;
  top: 4px;
  left: clamp(28px, var(--dashboard-progress, 0%), calc(100% - 28px));
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 28px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #fff;
  color: #1a1a1a;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.02);
  font-family: 'Parkinsans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
}

.dashboard-progress-bar-badge img {
  width: 31px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.dashboard-progress-perks {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}

.dashboard-perk-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 113px;
  padding: 20px;
  border-radius: 20px;
  background: #221d25;
  text-align: center;
  box-sizing: border-box;
}

.dashboard-perk-icon {
  display: block;
  width: auto;
  height: auto;
  max-width: none;
  flex-shrink: 0;
}

.dashboard-perk-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.dashboard-perk-value {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  color: #fff;
}

.page-content p.dashboard-perk-label {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
}

.dashboard-notice-card {
  width: 100%;
  padding: 20px;
  border: 1px solid #3e2809;
  border-radius: 20px;
  background: #1a161e;
  background-image: none;
  box-sizing: border-box;
  overflow: hidden;
}

.dashboard-notice-inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.dashboard-notice-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  padding: 6px;
  border: 0.5px solid #ca9936;
  border-radius: 8px;
  background: rgba(222, 182, 49, 0.2);
  box-sizing: border-box;
}

.dashboard-notice-icon img {
  display: block;
  width: 24px;
  height: 24px;
}

.dashboard-notice-copy {
  min-width: 0;
  flex: 1;
}

.page-content p.dashboard-notice-title {
  margin: 0;
  font-family: 'Parkinsans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: #deb631;
  white-space: nowrap;
}

.page-content p.dashboard-notice-text {
  margin: 0;
  font-family: 'Parkinsans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #ebecef;
}

.dashboard-notice-brand {
  color: #d338ec;
}

.dashboard-levels-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.dashboard-levels-heading h2 {
  margin: 0;
  font-family: 'Parkinsans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}

.dashboard-levels-heading p {
  margin: 4px 0 0;
  font-family: 'Parkinsans', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #a2a2a2;
}

.dashboard-levels-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  width: 100%;
}

.dashboard-level-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  border: 1px solid #2c2531;
  border-radius: 20px;
  background-color: #1a161e;
  background-image: none;
  box-sizing: border-box;
}

.dashboard-level-card.is-current {
  border-color: #cd36e7;
  background-color: #1a161e;
  background-image: url('https://storage.perfectcdn.com/770smr/crlmbuch9i3uy1lm.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.dashboard-level-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.dashboard-level-card-title-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.dashboard-level-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.dashboard-level-card-name {
  margin: 0;
  font-family: 'Parkinsans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}

.dashboard-level-card-spent {
  margin: 0;
  font-family: 'Parkinsans', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #a2a2a2;
}

.page-content .dashboard-level-current-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 6px;
  border-radius: 99px;
  background: #bd0edc;
  background-image: none;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.dashboard-level-perk-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 73px;
  padding: 16px;
  border-radius: 16px;
  background: #221d25;
  background-image: none;
  text-align: center;
}

.dashboard-level-perk-value {
  margin: 0;
  font-family: 'Parkinsans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
}

.dashboard-level-perk-label {
  margin: 0;
  font-family: 'Parkinsans', sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: #a2a2a2;
}

.dashboard-level-perk-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.dashboard-level-benefits {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: 'Parkinsans', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #ebecef;
}

.dashboard-level-benefits ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dashboard-level-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
}

.dashboard-level-benefits li + li {
  margin-top: 18px;
}

.dashboard-level-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #d338ec;
}

.dashboard-level-benefits li::before {
  content: none;
}

.dashboard-level-current-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  background-image: none;
  color: #d338ec;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: normal;
  text-align: center;
}

.dashboard-level-current-footer::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d338ec;
  flex-shrink: 0;
}

.dashboard-level-progress {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
}

.dashboard-level-progress-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Parkinsans', sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: #a2a2a2;
}

.dashboard-level-progress-track {
  height: 10px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.dashboard-level-progress-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #bd0edc 0%, #d338ec 100%);
}

html[data-theme='light'] .dashboard-account-card {
  background-color: #fff !important;
  background-image: none !important;
  border: none;
  box-shadow: 0 8px 24px rgba(42, 36, 48, 0.06);
}

html[data-theme='light'] .dashboard-account-card::before {
  display: block;
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(
      ellipse 72% 88% at 100% 8%,
      rgba(189, 14, 220, 0.28) 0%,
      rgba(189, 14, 220, 0.08) 38%,
      rgba(189, 14, 220, 0) 68%
    ),
    radial-gradient(
      ellipse 70% 80% at 100% 100%,
      rgba(189, 14, 220, 0.2) 0%,
      rgba(189, 14, 220, 0) 62%
    );
}

html[data-theme='light'] .dashboard-progress-card {
  background-color: #fff !important;
  background-image: linear-gradient(180deg, #f6e9fb 0%, #ffffff 46%) !important;
  border: none;
  box-shadow: 0 8px 24px rgba(42, 36, 48, 0.06);
}

html[data-theme='light'] .dashboard-level-card {
  background-color: #fff;
  background-image: none;
  border-color: #ececec;
  box-shadow: 0 8px 24px rgba(42, 36, 48, 0.06);
}

html[data-theme='light'] .dashboard-level-card.is-current {
  background-color: #fff;
  background-image: linear-gradient(180deg, #f7e6f9 0%, #ffffff 38%);
  border-color: #bd0edc;
}

html[data-theme='light'] .page-content p.dashboard-account-username,
html[data-theme='light'] .dashboard-progress-next-pill,
html[data-theme='light'] .dashboard-stat-value,
html[data-theme='light'] .dashboard-level-card-name,
html[data-theme='light'] .dashboard-levels-heading h2,
html[data-theme='light'] .dashboard-perk-value,
html[data-theme='light'] .dashboard-level-perk-value,
html[data-theme='light'] .page-content p.dashboard-progress-level-name,
html[data-theme='light'] .page-content p.dashboard-stat-label,
html[data-theme='light'] .dashboard-stat-label {
  color: #111;
}

html[data-theme='light'] .page-content p.dashboard-account-label,
html[data-theme='light'] .page-content p.dashboard-progress-title,
html[data-theme='light'] .dashboard-progress-title,
html[data-theme='light'] .dashboard-progress-next-label,
html[data-theme='light'] .dashboard-progress-row,
html[data-theme='light'] .page-content p.dashboard-progress-message,
html[data-theme='light'] .dashboard-progress-percent,
html[data-theme='light'] .dashboard-levels-heading p,
html[data-theme='light'] .dashboard-level-card-spent,
html[data-theme='light'] .dashboard-level-perk-label,
html[data-theme='light'] .page-content p.dashboard-perk-label,
html[data-theme='light'] .dashboard-level-progress-row {
  color: #848484;
}

html[data-theme='light'] .page-content .dashboard-level-badge {
  background: #bd0edc;
  background-image: none;
  color: #fff;
}

html[data-theme='light'] .dashboard-stat-tile,
html[data-theme='light'] .dashboard-perk-tile,
html[data-theme='light'] .dashboard-level-perk-highlight {
  background: #f0f0f0;
  background-image: none;
}

html[data-theme='light'] .dashboard-account-card .dashboard-stat-tile {
  background: rgba(237, 237, 237, 0.62);
}

html[data-theme='light'] img.dashboard-stat-icon--dark {
  display: none;
}

html[data-theme='light'] img.dashboard-stat-icon--light {
  display: block;
  padding: 0;
  background: transparent;
  filter: none;
}

html[data-theme='light'] .dashboard-perk-icon,
html[data-theme='light'] .dashboard-progress-next-arrow img {
  filter: brightness(0);
}

html[data-theme='light'] .dashboard-progress-bar {
  background: #ebebeb;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

html[data-theme='light'] .dashboard-notice-card {
  background: #fff;
  border-color: #ffd79e;
}

html[data-theme='light'] .page-content p.dashboard-notice-title {
  color: #deb631;
}

html[data-theme='light'] .page-content p.dashboard-notice-text {
  color: #323232;
}

html[data-theme='light'] .dashboard-level-benefits {
  color: #2a2430;
}

html[data-theme='light'] .dashboard-level-check {
  color: #c4c4c4;
}

html[data-theme='light'] .dashboard-level-current-footer {
  background: rgba(189, 14, 220, 0.08);
  color: #bd0edc;
}

html[data-theme='light'] .dashboard-level-progress-track {
  background: #ebebeb;
}

@media (max-width: 1200px) {
  .dashboard-levels-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (max-width: 992px) {
  .dashboard-overview {
    grid-template-columns: minmax(0, 1fr);
  }
}

@container progress-card (max-width: 480px) {
  .dashboard-progress-head {
    gap: 6px;
  }

  .dashboard-progress-title-wrap {
    gap: 8px;
  }

  .dashboard-progress-level-icon {
    width: 32px;
    height: 34px;
  }

  .page-content p.dashboard-progress-title {
    font-size: 12px;
  }

  .page-content p.dashboard-progress-level-name {
    font-size: 14px;
  }

  .dashboard-progress-next {
    gap: 4px;
  }

  .dashboard-progress-next-label {
    display: none;
  }
}

@container progress-card (max-width: 360px) {
  .dashboard-progress-level-icon {
    width: 26px;
    height: 28px;
  }

  .page-content p.dashboard-progress-title {
    font-size: 11px;
  }

  .page-content p.dashboard-progress-level-name {
    font-size: 12px;
  }

  .dashboard-progress-next-pill {
    font-size: 11px;
  }

  .dashboard-progress-next-pill img {
    width: 18px;
    height: 19px;
  }
}

/* Orders — light mode */
html[data-theme='light'] .orders-top::before {
  opacity: 0.22;
  filter: blur(48px);
}

html[data-theme='light'] .orders-hero {
  background-color: #fff !important;
  background-image: linear-gradient(
    90deg,
    #ffffff 0%,
    #ffffff 36%,
    #f3e2f8 68%,
    #e4c4f2 100%
  ) !important;
  border: none;
  box-shadow: 0 10px 28px rgba(42, 36, 48, 0.08);
}

html[data-theme='light'] .orders-hero::before {
  display: none;
}

html[data-theme='light'] .orders-hero::after {
  background-image: url('https://storage.perfectcdn.com/770smr/29ye7bbishlscygp.png');
}

html[data-theme='light'] .page-content h1.orders-hero-title,
html[data-theme='light'] .orders-hero-title {
  color: #111;
  font-weight: 700;
}

html[data-theme='light'] .page-content p.orders-hero-text,
html[data-theme='light'] .orders-hero-text {
  color: #848484;
  font-weight: 400;
}

html[data-theme='light'] .orders-toolbar {
  background: #fff;
  border: none;
  box-shadow: 0 8px 24px rgba(42, 36, 48, 0.06);
}

html[data-theme='light'] .orders-filter {
  background: #f0f0f0;
  border-color: #f0f0f0;
  color: #848484;
}

html[data-theme='light'] .orders-filter-icon iconify-icon {
  color: #848484;
}

html[data-theme='light'] .orders-filter:hover {
  border-color: rgba(189, 14, 220, 0.45);
  color: #1d1d1d;
}

html[data-theme='light'] .orders-filter.is-active {
  background: #bd0edc;
  border-color: #bd0edc;
  color: #fff;
}

html[data-theme='light']
  .orders-filter.is-active
  .orders-filter-icon
  iconify-icon {
  color: #fff;
}

html[data-theme='light'] .orders-search {
  background: #fff;
  border: 1px solid #e4e4e4;
}

html[data-theme='light'] .orders-search-icon {
  color: #848484;
}

html[data-theme='light'] .orders-search-input {
  color: #1d1d1d;
}

html[data-theme='light'] .orders-search-input::placeholder {
  color: #b0b0b0;
}

html[data-theme='light'] .orders-table-card {
  background: #fff;
  border: none;
  box-shadow: 0 8px 24px rgba(42, 36, 48, 0.06);
}

html[data-theme='light'] .orders-table {
  --bs-table-color: #2a2430;
  --bs-table-border-color: #ececec;
}

html[data-theme='light'] .orders-table > :not(caption) > * > * {
  border-bottom-color: #ececec;
}

html[data-theme='light'] .orders-table > thead > tr > th {
  background: #f7e6f9;
  color: #2a2430;
}

html[data-theme='light'] .orders-cell-inner,
html[data-theme='light'] .orders-row-id {
  color: #2a2430;
}

html[data-theme='light'] .orders-date-time,
html[data-theme='light'] .orders-link-text,
html[data-theme='light'] .orders-cell-service,
html[data-theme='light'] .orders-action-text,
html[data-theme='light'] .orders-empty-cell {
  color: #848484;
}

html[data-theme='light'] .orders-row-check {
  border-color: #848484;
}

html[data-theme='light'] .orders-cell-id:hover .orders-row-check {
  border-color: #bd0edc;
}

html[data-theme='light'] .orders-row-check.is-selected {
  border-color: #bd0edc;
  background: #bd0edc;
}

html[data-theme='light'] .orders-selection-glow {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(189, 14, 220, 0.55) 100%
  );
}

html[data-theme='light'] .orders-selection-btn {
  box-shadow: 0 10px 28px rgba(189, 14, 220, 0.28);
}

html[data-theme='light'] .orders-copy-ids-btn {
  background: rgba(189, 14, 220, 0.1);
  border-color: rgba(189, 14, 220, 0.45);
  color: #bd0edc;
}

html[data-theme='light'] .orders-copy-ids-btn:hover {
  background: rgba(189, 14, 220, 0.18);
  border-color: #bd0edc;
  color: #bd0edc;
}

html[data-theme='light'] .orders-copy-ids-btn.is-copied {
  border-color: #19ab1e;
  background: rgba(25, 171, 30, 0.12);
  color: #19ab1e;
}

html[data-theme='light'] .orders-details-btn,
html[data-theme='light'] .orders-reason-btn {
  color: #bd0edc;
}

html[data-theme='light'] .orders-btn {
  background: #fff;
  border-color: #d9d9d9;
  color: #2a2430;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

html[data-theme='light'] .orders-btn:hover {
  border-color: #bd0edc;
  color: #bd0edc;
}

html[data-theme='light'] .orders-hover-tooltip {
  background: #fff;
  border-color: rgba(189, 14, 220, 0.35);
  color: #2a2430;
  box-shadow: 0 4px 12px rgba(42, 36, 48, 0.12);
}

html[data-theme='light'] .orders-empty-state {
  color: #848484;
}

html[data-theme='light'] .orders-pagination a {
  background: #fff;
  border-color: #e4e4e4;
  color: #2a2430;
}

html[data-theme='light'] .orders-pagination a:hover {
  border-color: #bd0edc;
  color: #bd0edc;
}

html[data-theme='light'] .orders-pagination .is-active a,
html[data-theme='light'] .orders-pagination li.is-active a {
  background: #bd0edc;
  border-color: #bd0edc;
  color: #fff;
}

@media (max-width: 768px) {
  html[data-theme='light'] .orders-hero {
    background-color: #fff !important;
    background-image: linear-gradient(
      90deg,
      #ffffff 0%,
      #ffffff 28%,
      #f3e2f8 70%,
      #e4c4f2 100%
    ) !important;
  }

  html[data-theme='light'] .orders-hero::before {
    display: none;
  }

  html[data-theme='light'] .orders-hero::after {
    display: none;
  }

  html[data-theme='light'] .orders-table-card {
    background: transparent;
    box-shadow: none;
  }

  html[data-theme='light'] .orders-table > tbody > tr.orders-row {
    background: #fff;
    border-color: rgba(189, 189, 189, 0.45);
  }

  html[data-theme='light'] .orders-table > tbody > tr > td {
    border-bottom-color: #ececec;
  }

  html[data-theme='light'] .orders-table > tbody > tr > td::before {
    color: #848484;
  }

  html[data-theme='light'] .orders-table > tbody > tr > td:first-child {
    background: #f7e6f9;
    border-bottom-color: #ececec;
  }

  html[data-theme='light'] .orders-copy-id-btn {
    background: rgba(189, 14, 220, 0.1);
    border-color: rgba(189, 14, 220, 0.45);
    color: #bd0edc;
  }

  html[data-theme='light'] .orders-copy-id-btn.is-copied {
    border-color: #19ab1e;
    background: rgba(25, 171, 30, 0.12);
    color: #19ab1e;
  }
}

@media (max-width: 768px) {
  .dashboard-page {
    gap: 20px;
    padding-top: 0;
  }

  .dashboard-account-card,
  .dashboard-progress-card {
    min-height: 0;
    padding: 16px;
  }

  .dashboard-account-head {
    gap: 8px;
    align-items: flex-start;
  }

  .page-content p.dashboard-account-username {
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .page-content p.dashboard-account-label {
    font-size: 16px;
  }

  .page-content .dashboard-level-badge {
    flex-shrink: 0;
    max-width: 42%;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .dashboard-account-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .dashboard-stat-tile {
    min-height: 0;
    padding: 12px;
    column-gap: 8px;
    row-gap: 8px;
  }

  img.dashboard-stat-icon {
    width: 28px;
    height: 28px;
    padding: 4px;
  }

  html[data-theme='light'] img.dashboard-stat-icon--light {
    padding: 0;
  }

  .dashboard-stat-value {
    font-size: 13px;
    line-height: 1.3;
  }

  .dashboard-stat-label {
    font-size: 12px;
    white-space: normal;
  }

  .dashboard-progress-perks {
    grid-template-columns: minmax(0, 1fr);
  }

  .dashboard-levels-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .dashboard-level-card {
    padding: 16px;
  }
}

/* AI Recommended Services */
.ai-rec-page {
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
  width: 100%;
  padding-top: 16px;
}

.ai-rec-platforms {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.ai-rec-platform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  min-height: 56px;
  padding: 12px 16px;
  border: 1px solid #cd36e7;
  border-radius: 12px;
  background: #151515;
  color: #ebecef;
  cursor: pointer;
}

.ai-rec-platform:hover,
.ai-rec-platform:focus {
  outline: none;
  background: #1d1d1d;
}

.ai-rec-platform.is-active {
  background: #bd0edc;
  border-color: #bd0edc;
}

.ai-rec-platform-icon {
  display: flex;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.ai-rec-platform-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ai-rec-platform-label {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.21;
  color: #ebecef;
  white-space: nowrap;
}

.ai-rec-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: var(--page-block-gap);
  width: 100%;
  align-items: start;
}

.ai-rec-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #cd36e7;
  border-radius: var(--panel-radius);
  background: #1a161e;
}

.ai-rec-card-head {
  padding: 24px;
  background: #251f2c;
}

.page-content h2.ai-rec-card-title,
.ai-rec-card-title {
  margin: 0;
  font-family: 'Parkinsans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: #ebecef;
}

.ai-rec-table-wrap {
  padding: 16px 16px 8px;
}

.ai-rec-table-body {
  max-height: 720px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #5a4a62 #1a161e;
}

.ai-rec-table-body::-webkit-scrollbar {
  width: 4px;
}

.ai-rec-table-body::-webkit-scrollbar-track {
  background: #1a161e;
  border-radius: 8px;
}

.ai-rec-table-body::-webkit-scrollbar-thumb {
  background: #5a4a62;
  border-radius: 8px;
}

.ai-rec-table-body::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

.ai-rec-empty {
  margin: 0;
  padding: 24px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #ebecef;
  text-align: center;
}

.ai-rec-table-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 8px;
  background: #d338ec;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  color: #fff;
}

.ai-rec-table-row,
.ai-rec-best-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
}

.ai-rec-table-row {
  border-bottom: 0.5px solid #4f586d;
}

.ai-rec-table-row:last-child {
  border-bottom: none;
}

.ai-rec-col {
  min-width: 0;
}

.ai-rec-col-id {
  flex: 0 0 60px;
  width: 60px;
}

.ai-rec-col-service {
  flex: 1 1 0;
  min-width: 0;
}

.ai-rec-col-rate {
  flex: 0 0 120px;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}

.ai-rec-col-action {
  flex: 0 0 72px;
  width: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-content p.ai-rec-service-name,
.ai-rec-service-name {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.21;
  color: #ebecef;
}

.ai-rec-rate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-family: 'Parkinsans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #01d86b;
  white-space: nowrap;
}

.ai-rec-rate img {
  width: 24px;
  height: 24px;
}

.ai-rec-table-head .ai-rec-col-id,
.ai-rec-table-head .ai-rec-col-service,
.ai-rec-table-head .ai-rec-col-rate,
.ai-rec-table-head .ai-rec-col-action,
.ai-rec-table-row .ai-rec-col-id {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.21;
  color: #ebecef;
}

.ai-rec-table-head .ai-rec-col-id,
.ai-rec-table-head .ai-rec-col-service,
.ai-rec-table-head .ai-rec-col-rate,
.ai-rec-table-head .ai-rec-col-action {
  font-weight: 700;
  color: #fff;
}

.ai-rec-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 16px;
  border-radius: 4px;
  background: #bd0edc;
  font-family: 'Parkinsans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  text-decoration: none;
}

.ai-rec-buy:hover,
.ai-rec-buy:focus {
  color: #fff;
  text-decoration: none;
  filter: brightness(1.08);
}

.ai-rec-best-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 16px 16px 0;
  padding: 14px 16px;
  border-radius: 8px;
  background: #d338ec;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  color: #fff;
}

.ai-rec-best-head-service {
  flex: 1 1 0;
  min-width: 0;
}

.ai-rec-best-head-rate {
  flex: 0 0 120px;
  width: 120px;
  text-align: left;
}

.ai-rec-best-list {
  display: flex;
  flex-direction: column;
  padding: 8px 16px 0;
}

.ai-rec-best-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  grid-template-areas:
    'service rate'
    'orders rate';
  align-items: center;
  column-gap: 16px;
  row-gap: 0;
  padding: 12px 0;
}

.ai-rec-best-field--service {
  grid-area: service;
  min-width: 0;
}

.ai-rec-best-field--orders {
  grid-area: orders;
  min-width: 0;
}

.ai-rec-best-field--rate {
  grid-area: rate;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.ai-rec-best-item .ai-rec-rate {
  flex: 0 0 auto;
  width: auto;
  justify-content: flex-start;
}

.ai-rec-best-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background-image: repeating-linear-gradient(
    to right,
    #2d2d2d 0,
    #2d2d2d 5px,
    transparent 5px,
    transparent 10px
  );
}

.page-content a.ai-rec-best-name,
.ai-rec-best-name {
  display: inline-block;
  margin: 0;
  font-family: 'Parkinsans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #bd0edc;
  text-decoration: none;
  cursor: pointer;
}

.page-content a.ai-rec-best-name:hover,
.page-content a.ai-rec-best-name:focus,
.ai-rec-best-name:hover,
.ai-rec-best-name:focus {
  color: #d338ec;
  text-decoration: underline;
}

.page-content span.ai-rec-best-orders,
.ai-rec-best-orders {
  margin: 0;
  font-family: 'Parkinsans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
}

.ai-rec-view-all {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px 16px 16px;
  padding: 10px 16px;
  border-radius: 8px;
  background: #bd0edc;
  font-family: 'Parkinsans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  text-decoration: none;
}

.ai-rec-view-all:hover,
.ai-rec-view-all:focus {
  color: #fff;
  text-decoration: none;
  filter: brightness(1.08);
}

@media (max-width: 1100px) {
  .ai-rec-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .ai-rec-platforms {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ai-rec-platform-label {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .ai-rec-page {
    gap: 20px;
    padding-top: 0;
  }

  .ai-rec-platforms {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 6px;
  }

  .ai-rec-platform {
    flex-direction: column;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
    padding: 4px;
    gap: 0;
    font-size: 0;
    border-radius: 10px;
  }

  .ai-rec-platform-label {
    display: none;
  }

  .ai-rec-platform-icon {
    width: 72%;
    height: 72%;
    max-width: 28px;
    max-height: 28px;
  }

  .ai-rec-card-head {
    padding: 16px;
  }

  .ai-rec-table-wrap {
    overflow-x: visible;
    padding: 12px;
  }

  .ai-rec-table-head,
  .ai-rec-best-head {
    display: none;
  }

  .ai-rec-table-body,
  .ai-rec-best-list {
    max-height: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .ai-rec-best-list {
    padding: 12px;
  }

  .ai-rec-table-row,
  .ai-rec-best-item {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(205, 54, 231, 0.55);
    border-radius: 16px;
    background: #1a161e;
  }

  .ai-rec-table-row:last-child,
  .ai-rec-best-item:last-child {
    border-bottom: 1px solid rgba(205, 54, 231, 0.55);
  }

  .ai-rec-best-item:not(:last-child)::after {
    display: none;
  }

  .ai-rec-col,
  .ai-rec-best-field {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
    padding: 14px 16px;
    border-bottom: 0.5px solid #2d2d2d;
  }

  .ai-rec-col-id,
  .ai-rec-best-field--service {
    background: #28202d;
    border-bottom: 1px solid #2d2d2d;
  }

  .ai-rec-col-action,
  .ai-rec-best-field--rate {
    border-bottom: none;
  }

  .ai-rec-col::before,
  .ai-rec-best-field::before {
    content: attr(data-label);
    flex: 0 0 38%;
    max-width: 110px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    color: #b7b7b8;
  }

  .ai-rec-col-id,
  .ai-rec-col-service,
  .ai-rec-col-rate,
  .ai-rec-col-action,
  .ai-rec-best-field--service,
  .ai-rec-best-field--orders,
  .ai-rec-best-field--rate {
    flex: none;
    width: 100%;
  }

  .ai-rec-col-value,
  .ai-rec-col .ai-rec-service-name,
  .ai-rec-col .ai-rec-rate,
  .ai-rec-best-field .ai-rec-best-name,
  .ai-rec-best-field .ai-rec-best-orders,
  .ai-rec-best-field .ai-rec-rate {
    flex: 1;
    min-width: 0;
    text-align: right;
  }

  .ai-rec-col .ai-rec-rate,
  .ai-rec-best-field .ai-rec-rate {
    justify-content: flex-end;
  }

  .ai-rec-col-rate,
  .ai-rec-best-field--rate {
    align-items: center;
  }

  .ai-rec-col-rate::before,
  .ai-rec-best-field--rate::before {
    text-align: left;
  }

  .ai-rec-col-action {
    align-items: center;
    justify-content: space-between;
  }

  .ai-rec-col-action .ai-rec-buy {
    flex: 0 0 auto;
    width: auto;
    min-width: 0;
    padding: 4px 14px;
    font-size: 13px;
    line-height: 1.3;
  }

  .ai-rec-best-orders-suffix {
    display: none;
  }

  .page-content p.ai-rec-service-name,
  .ai-rec-service-name,
  .page-content a.ai-rec-best-name,
  .ai-rec-best-name {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .ai-rec-view-all {
    margin: 0 12px 12px;
  }

  .ai-rec-empty {
    padding: 16px 8px;
  }
}

html[data-theme='light'] .ai-rec-platform {
  background: #fff;
  border-color: #ececec;
  box-shadow: 0 4px 14px rgba(42, 36, 48, 0.05);
}

html[data-theme='light'] .ai-rec-platform:hover,
html[data-theme='light'] .ai-rec-platform:focus {
  background: #fafafa;
  border-color: rgba(189, 14, 220, 0.45);
}

html[data-theme='light'] .ai-rec-platform.is-active {
  background: #bd0edc;
  border-color: #bd0edc;
}

html[data-theme='light'] .ai-rec-platform-label {
  color: #111;
}

html[data-theme='light'] .ai-rec-platform.is-active .ai-rec-platform-label {
  color: #fff;
}

html[data-theme='light'] .ai-rec-platform.is-active .ai-rec-platform-icon img {
  filter: brightness(0) invert(1);
}

html[data-theme='light'] .ai-rec-card {
  background: #fff;
  border: none;
  box-shadow: 0 8px 24px rgba(42, 36, 48, 0.06);
}

html[data-theme='light'] .ai-rec-card-head {
  background: #f7e6f9;
}

html[data-theme='light'] .page-content h2.ai-rec-card-title,
html[data-theme='light'] .ai-rec-card-title {
  color: #111;
}

html[data-theme='light'] .ai-rec-table-row {
  border-bottom-color: #ececec;
}

@media (max-width: 768px) {
  html[data-theme='light'] .ai-rec-table-row,
  html[data-theme='light'] .ai-rec-best-item {
    background: #fff;
    border-color: #ececec;
  }

  html[data-theme='light'] .ai-rec-col,
  html[data-theme='light'] .ai-rec-best-field {
    border-bottom-color: #ececec;
  }

  html[data-theme='light'] .ai-rec-col-id,
  html[data-theme='light'] .ai-rec-best-field--service {
    background: #f7e6f9;
    border-bottom-color: #ececec;
  }

  html[data-theme='light'] .ai-rec-col::before,
  html[data-theme='light'] .ai-rec-best-field::before {
    color: #848484;
  }

  html[data-theme='light'] .ai-rec-table-row:last-child,
  html[data-theme='light'] .ai-rec-best-item:last-child {
    border-bottom-color: #ececec;
  }
}

html[data-theme='light'] .page-content p.ai-rec-service-name,
html[data-theme='light'] .ai-rec-service-name {
  color: #111;
}

html[data-theme='light'] .ai-rec-table-row .ai-rec-col-id {
  color: #848484;
}

html[data-theme='light'] .ai-rec-best-item:not(:last-child)::after {
  background-image: repeating-linear-gradient(
    to right,
    #d9d9d9 0,
    #d9d9d9 5px,
    transparent 5px,
    transparent 10px
  );
}

html[data-theme='light'] .page-content a.ai-rec-best-name,
html[data-theme='light'] .ai-rec-best-name {
  color: #bd0edc;
}

html[data-theme='light'] .page-content span.ai-rec-best-orders,
html[data-theme='light'] .ai-rec-best-orders {
  color: #848484;
}

html[data-theme='light'] .ai-rec-empty {
  color: #848484;
}

html[data-theme='light'] .ai-rec-table-body {
  scrollbar-color: #c8c0cc #f6f6f6;
}

html[data-theme='light'] .ai-rec-table-body::-webkit-scrollbar-track {
  background: #f6f6f6;
}

html[data-theme='light'] .ai-rec-table-body::-webkit-scrollbar-thumb {
  background: #c8c0cc;
}

/* Child Panel */
.child-panel-page {
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
  width: 100%;
  padding-top: 16px;
}

.child-panel-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--page-block-gap);
  align-items: start;
  width: 100%;
}

.child-panel-aside {
  display: flex;
  flex-direction: column;
  gap: var(--page-block-gap);
  min-width: 0;
}

.child-panel-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #cd36e7;
  border-radius: var(--panel-radius);
  background: #1a161e;
  isolation: isolate;
}

.child-panel-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: clamp(72px, 6.5vw, 92px);
  padding: var(--panel-pad);
  background: #251f2c;
  box-sizing: border-box;
  border-radius: calc(var(--panel-radius) - 1px) calc(var(--panel-radius) - 1px) 0 0;
}

.child-panel-card-head .child-panel-card-title {
  font-size: 18px;
}

.child-panel-aside .child-panel-card-head {
  gap: 16px;
}

.child-panel-aside .child-panel-card-title {
  font-size: 16px;
}

.child-panel-head-icon,
.child-panel-note-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  object-fit: contain;
}

.page-content h2.child-panel-card-title,
.child-panel-card-title {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
}

.child-panel-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 29px 24px 20px;
}

.child-panel-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.page-content .child-panel-label,
.child-panel-label {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #ebecef;
}

.child-panel-input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  height: 58px;
  padding: 16px;
  border: 1.5px solid #2d2d2d;
  border-radius: 10px;
  background: #221d25;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.child-panel-input:focus {
  outline: none;
  border-color: #cd36e7;
}

.child-panel-select-wrap {
  position: relative;
  overflow: visible;
  z-index: 5;
}

.child-panel-select {
  appearance: none;
  padding-right: 48px;
  cursor: pointer;
}

.child-panel-select-icon {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  pointer-events: none;
}

.child-panel-page .select2-container {
  width: 100% !important;
}

.child-panel-page
  #createorderform-currency.select2-hidden-accessible {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.child-panel-page .select2-container--default .select2-selection--single {
  height: 58px;
  padding: 16px;
  border: 1.5px solid #2d2d2d;
  border-radius: 10px;
  background: #221d25;
}

.child-panel-page
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  padding: 0;
  line-height: 26px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.child-panel-page
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  display: none;
}

.child-panel-page .select2-container--open {
  z-index: 10060 !important;
}

.child-panel-page .select2-container ~ .child-panel-select-icon {
  z-index: 2;
}

/* Currency dropdown is appended to body — style it dark and force visible */
.select2-dropdown.child-panel-currency-dropdown,
body
  > .select2-container
  .select2-dropdown:has(#select2-createorderform-currency-results),
.select2-dropdown:has(#select2-createorderform-currency-results) {
  display: block !important;
  z-index: 10070 !important;
  margin-top: 6px;
  padding: 8px;
  border: 1.5px solid #2d2d2d !important;
  border-radius: 10px !important;
  background: #221d25 !important;
  background-color: #221d25 !important;
  color: #fff !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45) !important;
  overflow: hidden;
}

.select2-dropdown.child-panel-currency-dropdown .select2-results,
.select2-dropdown:has(#select2-createorderform-currency-results) .select2-results,
#select2-createorderform-currency-results {
  background: #221d25 !important;
  color: #fff !important;
}

.select2-dropdown.child-panel-currency-dropdown .select2-results__option,
.select2-dropdown:has(#select2-createorderform-currency-results)
  .select2-results__option,
#select2-createorderform-currency-results .select2-results__option {
  padding: 10px 12px !important;
  border-radius: 8px;
  color: #fff !important;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  background: transparent !important;
}

.select2-dropdown.child-panel-currency-dropdown
  .select2-results__option--highlighted,
.select2-dropdown.child-panel-currency-dropdown
  .select2-results__option--highlighted[aria-selected],
.select2-dropdown.child-panel-currency-dropdown
  .select2-results__option[aria-selected='true'],
.select2-dropdown:has(#select2-createorderform-currency-results)
  .select2-results__option--highlighted,
.select2-dropdown:has(#select2-createorderform-currency-results)
  .select2-results__option[aria-selected='true'],
#select2-createorderform-currency-results
  .select2-results__option--highlighted,
#select2-createorderform-currency-results
  .select2-results__option[aria-selected='true'] {
  background: var(--select2-option-hover-gradient) !important;
  color: #fff !important;
}

.child-panel-ns {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.page-content p.child-panel-ns-title,
.child-panel-ns-title {
  margin: 0;
  font-family: 'Parkinsans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: #b7b7b8;
}

.child-panel-ns-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 12px;
  border: 1px solid #2d2d2d;
  border-radius: 8px;
  background: #151515;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #ebecef;
}

.child-panel-ns-copy {
  border: 0;
  background: transparent;
  color: #d338ec;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.child-panel-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 16px;
  padding: 16px 32px;
  border: 0;
  border-radius: 12px;
  background-image: linear-gradient(138deg, #d338ec 0%, #7516a9 100%);
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
  cursor: pointer;
}

.child-panel-submit:hover,
.child-panel-submit:focus {
  color: #fff;
  filter: brightness(1.06);
}

.child-panel-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 0;
  padding: 29px 24px 20px;
}

.child-panel-steps::before {
  content: '';
  position: absolute;
  left: 47px;
  top: 48px;
  bottom: 48px;
  width: 1px;
  background-image: repeating-linear-gradient(
    to bottom,
    #2d2d2d 0,
    #2d2d2d 5px,
    transparent 5px,
    transparent 10px
  );
}

.child-panel-step {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 20px;
}

.child-panel-step-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  object-fit: contain;
}

.child-panel-step-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.page-content p.child-panel-step-title,
.child-panel-step-title {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  color: #fff;
}

.page-content p.child-panel-step-text,
.child-panel-step-text {
  margin: 0;
  font-family: 'Parkinsans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #ebecef;
}

.child-panel-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border: 0.5px solid #cd36e7;
  border-radius: 20px;
  background: #1a161e;
}

.child-panel-note-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.page-content p.child-panel-note-title,
.child-panel-note-title {
  margin: 0;
  font-family: 'Parkinsans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}

.page-content p.child-panel-note-text,
.child-panel-note-text {
  margin: 0;
  font-family: 'Parkinsans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #ebecef;
}

.child-panel-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid #cd36e7;
  border-radius: 16px;
  background: #1a161e;
}

.child-panel-faq {
  padding: clamp(16px, 1.7vw, 24px);
  gap: 0;
}

.child-panel-faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
  width: 100%;
}

.child-panel-faq-item-inner {
  gap: 0;
  padding: 16px 18px;
  border: 1px solid rgba(189, 14, 220, 0.55);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 1px rgba(189, 14, 220, 0.08);
}

.child-panel-faq-item.is-open .child-panel-faq-item-inner {
  gap: 8px;
  border-color: #bd0edc;
}

.child-panel-faq .faq-item-header {
  gap: 12px;
}

.child-panel-faq .faq-question {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 500;
  line-height: 1.45;
}

.child-panel-faq .faq-toggle {
  width: 32px;
  height: 32px;
  padding: 4px;
  background: #bd0edc;
}

.child-panel-faq .faq-icon {
  width: 20px;
  height: 20px;
}

.child-panel-faq .faq-answer p {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: #cfc7d8;
}

.page-content p.child-panel-banner-text,
.child-panel-banner-text {
  margin: 0;
  font-family: 'Parkinsans', sans-serif;
  font-size: 14px;
  color: #ebecef;
}

.child-panel-banner-btn,
.child-panel-admin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 8px;
  background: #bd0edc;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.child-panel-banner-btn:hover,
.child-panel-admin-btn:hover {
  color: #fff;
  text-decoration: none;
}

.child-panel-table-wrap {
  overflow-x: auto;
  padding: 8px 16px 20px;
}

.child-panel-table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
  color: #ebecef;
}

.child-panel-table th,
.child-panel-table td {
  padding: 12px 10px;
  border-bottom: 0.5px solid #4f586d;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  text-align: left;
}

.child-panel-table th {
  font-weight: 700;
  color: #fff;
}

.child-panel-mobile-list {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 0 16px 20px;
}

.child-panel-mobile-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border: 1px solid #2d2d2d;
  border-radius: 12px;
  background: #221d25;
}

.page-content p.child-panel-mobile-row,
.child-panel-mobile-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  font-family: 'Parkinsans', sans-serif;
  font-size: 14px;
  color: #ebecef;
}

.child-panel-page .alert {
  margin: 0;
}

@media (max-width: 1100px) {
  .child-panel-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .child-panel-page {
    gap: 20px;
    padding-top: 0;
  }

  .child-panel-card-head {
    min-height: 0;
    padding: 16px;
  }

  .child-panel-form,
  .child-panel-steps {
    padding-left: 16px;
    padding-right: 16px;
  }

  .child-panel-steps::before {
    left: 39px;
  }

  .child-panel-table-wrap {
    display: none;
  }

  .child-panel-mobile-list {
    display: flex;
  }

  .child-panel-banner {
    flex-direction: column;
    align-items: stretch;
  }

  .child-panel-faq-list {
    grid-template-columns: 1fr;
  }
}

/* Add funds — light mode */
html[data-theme='light'] .addfunds-heading {
  display: flex;
  align-items: center;
  height: 103px;
  min-height: 103px;
  background-color: #fff !important;
  background-image: linear-gradient(
    90deg,
    #ffffff 0%,
    #ffffff 36%,
    #f3e2f8 68%,
    #e4c4f2 100%
  ) !important;
  border: none;
  box-shadow: 0 10px 28px rgba(42, 36, 48, 0.08);
}

@media (max-width: 768px) {
  html[data-theme='light'] .addfunds-heading {
    height: auto;
    min-height: 0;
    background-image: linear-gradient(
      90deg,
      #ffffff 0%,
      #ffffff 28%,
      #f3e2f8 70%,
      #e4c4f2 100%
    ) !important;
  }

  html[data-theme='light'] .addfunds-heading::after {
    display: none;
  }
}

html[data-theme='light'] .addfunds-heading::after {
  background-image: url('https://storage.perfectcdn.com/770smr/29ye7bbishlscygp.png');
}

html[data-theme='light'] .addfunds-heading-copy {
  position: relative;
  z-index: 1;
}

html[data-theme='light'] .addfunds-heading-title,
html[data-theme='light']
  .addfunds-page
  .addfunds-heading-copy
  .addfunds-heading-title,
html[data-theme='light']
  .giveaway-page
  .addfunds-heading-copy
  .addfunds-heading-title,
html[data-theme='light']
  .account-page
  .addfunds-heading-copy
  .addfunds-heading-title,
html[data-theme='light']
  .notifications-page
  .addfunds-heading-copy
  .addfunds-heading-title,
html[data-theme='light']
  .dashboard-page
  .addfunds-heading-copy
  .addfunds-heading-title,
html[data-theme='light']
  .ai-rec-page
  .addfunds-heading-copy
  .addfunds-heading-title {
  color: #111;
  font-weight: 700;
}

html[data-theme='light'] .addfunds-heading-text,
html[data-theme='light']
  .addfunds-page
  .addfunds-heading-copy
  .addfunds-heading-text,
html[data-theme='light']
  .giveaway-page
  .addfunds-heading-copy
  .addfunds-heading-text,
html[data-theme='light']
  .account-page
  .addfunds-heading-copy
  .addfunds-heading-text,
html[data-theme='light']
  .notifications-page
  .addfunds-heading-copy
  .addfunds-heading-text,
html[data-theme='light']
  .dashboard-page
  .addfunds-heading-copy
  .addfunds-heading-text,
html[data-theme='light']
  .ai-rec-page
  .addfunds-heading-copy
  .addfunds-heading-text {
  color: #848484;
  font-weight: 400;
}

html[data-theme='light'] .addfunds-methods-title {
  color: #111;
}

html[data-theme='light'] .addfunds-method-chip {
  background: #fff;
  border-color: #ececec;
  box-shadow: 0 4px 14px rgba(42, 36, 48, 0.05);
}

html[data-theme='light'] .addfunds-method-chip:hover,
html[data-theme='light'] .addfunds-method-chip:focus {
  background: #fafafa;
  border-color: rgba(189, 14, 220, 0.45);
}

html[data-theme='light'] .addfunds-method-chip.is-active {
  background: #bd0edc;
  border-color: #bd0edc;
}

html[data-theme='light'] .addfunds-method-logo--light {
  display: block;
}

html[data-theme='light'] .addfunds-method-logo--dark {
  display: none;
}

html[data-theme='light']
  .addfunds-method-chip.is-active
  .addfunds-method-logo--light {
  display: none;
}

html[data-theme='light']
  .addfunds-method-chip.is-active
  .addfunds-method-logo--dark {
  display: block;
}

html[data-theme='light'] .addfunds-method-option-logo--light {
  display: block;
}

html[data-theme='light'] .addfunds-method-option-logo--dark {
  display: none;
}

html[data-theme='light'] .addfunds-method-label {
  color: #2a2430;
}

html[data-theme='light']
  .addfunds-method-chip.is-active
  .addfunds-method-label {
  color: #fff;
}

html[data-theme='light'] .addfunds-panel {
  background: #fff;
  border: none;
  box-shadow: 0 8px 24px rgba(42, 36, 48, 0.06);
}

html[data-theme='light'] .addfunds-panel-head,
html[data-theme='light'] .addfunds-info-head {
  background: #f7e6f9;
}

html[data-theme='light'] .addfunds-tabs {
  border-bottom-color: rgba(115, 115, 115, 0.18);
}

html[data-theme='light'] .addfunds-tab {
  color: #848484;
}

html[data-theme='light'] .addfunds-tab.is-active {
  color: #111;
  border-bottom-color: #d338ec;
}

html[data-theme='light'] .addfunds-tab img,
html[data-theme='light'] .addfunds-tab.is-active img,
html[data-theme='light'] .addfunds-info-icon {
  filter: brightness(0);
}

html[data-theme='light'] .addfunds-field .control-label,
html[data-theme='light']
  .addfunds-page
  .addfunds-form
  .form-group
  > .control-label,
html[data-theme='light']
  .addfunds-page
  .addfunds-form
  #amount-fields
  .control-label,
html[data-theme='light'] .addfunds-info-head h2,
html[data-theme='light'] .addfunds-info-lead,
html[data-theme='light'] .addfunds-info-card h3,
html[data-theme='light'] .addfunds-info-copy p {
  color: #2a2430;
}

html[data-theme='light']
  .addfunds-page
  .addfunds-form
  #method
  + .select2
  .select2-selection--single,
html[data-theme='light'] .addfunds-page .addfunds-form #method.form-control,
html[data-theme='light'] .addfunds-input,
html[data-theme='light']
  .addfunds-page
  .addfunds-form
  #amount-fields
  .form-control,
html[data-theme='light']
  .addfunds-page
  .addfunds-form
  input.form-control,
html[data-theme='light']
  .addfunds-page
  .addfunds-form
  [id^='order_']
  .form-control {
  background: #f0f0f0;
  border-color: #f0f0f0;
  color: #2a2430;
}

html[data-theme='light']
  .addfunds-page
  .addfunds-form
  #method
  + .select2
  .select2-selection__rendered,
html[data-theme='light']
  .addfunds-page
  .addfunds-form
  #method
  + .select2
  #select2-method-container {
  color: #2a2430;
}

html[data-theme='light']
  .addfunds-page
  .addfunds-form
  #method
  + .select2
  .select2-selection__arrow
  b {
  border-color: #848484 transparent transparent transparent;
}

html[data-theme='light']
  .addfunds-page
  .addfunds-form
  .addfunds-input::placeholder,
html[data-theme='light']
  .addfunds-page
  .addfunds-form
  #amount-fields
  .form-control::placeholder,
html[data-theme='light']
  .addfunds-page
  .addfunds-form
  input.form-control::placeholder,
html[data-theme='light']
  .addfunds-page
  .addfunds-form
  [id^='order_']
  .form-control::placeholder {
  color: #848484;
}

html[data-theme='light'] .addfunds-page .addfunds-form .addfunds-input:focus,
html[data-theme='light']
  .addfunds-page
  .addfunds-form
  .addfunds-input:focus-visible,
html[data-theme='light']
  .addfunds-page
  .addfunds-form
  #amount-fields
  .form-control:focus,
html[data-theme='light']
  .addfunds-page
  .addfunds-form
  #amount-fields
  .form-control:focus-visible,
html[data-theme='light']
  .addfunds-page
  .addfunds-form
  input.form-control:focus,
html[data-theme='light']
  .addfunds-page
  .addfunds-form
  input.form-control:focus-visible,
html[data-theme='light']
  .addfunds-page
  .addfunds-form
  [id^='order_']
  .form-control:focus,
html[data-theme='light']
  .addfunds-page
  .addfunds-form
  [id^='order_']
  .form-control:focus-visible,
html[data-theme='light']
  .addfunds-page
  .addfunds-form
  #method.form-control:focus,
html[data-theme='light']
  .addfunds-page
  .addfunds-form
  #method.form-control:focus-visible {
  background: #f0f0f0;
  border-color: rgba(189, 14, 220, 0.45);
  color: #2a2430;
}

html[data-theme='light'] .addfunds-info-card {
  background: #f4f4f4;
  border-color: #ececec;
  color: #2a2430;
}

html[data-theme='light'] .addfunds-table-card,
html[data-theme='light'] .addfunds-table {
  background: #fff;
  border-color: #ececec;
  color: #2a2430;
}

html[data-theme='light']
  .addfunds-page
  .addfunds-table-card
  .addfunds-table.table
  > thead
  > tr
  > th,
html[data-theme='light']
  .addfunds-page
  .addfunds-table-card
  .addfunds-table.table
  > tbody
  > tr
  > td {
  background-color: #fff;
  border-color: #ececec;
  color: #2a2430;
}

html[data-theme='light'] .addfunds-table > thead > tr > th {
  background: #f7e6f9;
  color: #2a2430;
}

html[data-theme='light'] .addfunds-table > tbody > tr:hover > td {
  background: #faf6fc;
  color: #2a2430;
}

html[data-theme='light'] .addfunds-pagination .pagination > li > a,
html[data-theme='light'] .addfunds-pagination .pagination > li > span {
  background: #fff;
  border-color: #e4e4e4;
  color: #2a2430;
}

html[data-theme='light'] .addfunds-page .alert.alert-danger,
html[data-theme='light'] .addfunds-page .alert.alert-success {
  color: #2a2430;
}

html[data-theme='light'] .addfunds-page .alert .close {
  color: #2a2430;
}

html[data-theme='light']
  .select2-dropdown.dropdown-menu:is(
    :has(#select2-orderform-category-results),
    :has(#select2-orderform-service-results),
    :has(#select2-new-order-search-results),
    :has(#select2-method-results),
    :has(#select2-template-input-results)
  ),
html[data-theme='light']
  .select2-dropdown:is(
    :has(#select2-orderform-category-results),
    :has(#select2-orderform-service-results),
    :has(#select2-new-order-search-results),
    :has(#select2-method-results),
    :has(#select2-template-input-results)
  ) {
  background: #fff;
  border-color: #ececec;
  color: #2a2430;
}

html[data-theme='light']
  .select2-dropdown.dropdown-menu:is(
    :has(#select2-orderform-category-results),
    :has(#select2-orderform-service-results),
    :has(#select2-new-order-search-results),
    :has(#select2-method-results),
    :has(#select2-template-input-results)
  )
  .select2-search__field,
html[data-theme='light']
  .select2-dropdown:is(
    :has(#select2-orderform-category-results),
    :has(#select2-orderform-service-results),
    :has(#select2-new-order-search-results),
    :has(#select2-method-results),
    :has(#select2-template-input-results)
  )
  .select2-search__field {
  background: #f4f4f4;
  color: #2a2430;
  border-color: #ececec;
}

html[data-theme='light']
  .select2-dropdown.dropdown-menu:is(
    :has(#select2-orderform-category-results),
    :has(#select2-orderform-service-results),
    :has(#select2-new-order-search-results),
    :has(#select2-method-results),
    :has(#select2-template-input-results)
  )
  .select2-search__field::placeholder,
html[data-theme='light']
  .select2-dropdown:is(
    :has(#select2-orderform-category-results),
    :has(#select2-orderform-service-results),
    :has(#select2-new-order-search-results),
    :has(#select2-method-results),
    :has(#select2-template-input-results)
  )
  .select2-search__field::placeholder {
  color: #848484;
}

html[data-theme='light']
  :is(
    #select2-orderform-category-results,
    #select2-orderform-service-results,
    #select2-new-order-search-results,
    #select2-method-results,
    #select2-template-input-results
  ),
html[data-theme='light']
  :is(
    #select2-orderform-category-results,
    #select2-orderform-service-results,
    #select2-new-order-search-results,
    #select2-method-results,
    #select2-template-input-results
  ).select2-results__options,
html[data-theme='light']
  .select2-dropdown:is(
    :has(#select2-orderform-category-results),
    :has(#select2-orderform-service-results),
    :has(#select2-new-order-search-results),
    :has(#select2-method-results),
    :has(#select2-template-input-results)
  )
  .select2-results {
  background: #fff;
  color: #2a2430 !important;
}

html[data-theme='light']
  :is(
    #select2-orderform-category-results,
    #select2-orderform-service-results,
    #select2-new-order-search-results,
    #select2-method-results,
    #select2-template-input-results
  )
  .select2-results__option,
html[data-theme='light']
  :is(
    #select2-orderform-category-results,
    #select2-orderform-service-results,
    #select2-new-order-search-results,
    #select2-method-results,
    #select2-template-input-results
  )
  .select2-results__option
  *:not(.neworder-service-id) {
  color: #2a2430 !important;
}

html[data-theme='light']
  :is(
    #select2-orderform-category-results,
    #select2-orderform-service-results,
    #select2-new-order-search-results,
    #select2-method-results,
    #select2-template-input-results
  )
  .select2-results__option[aria-selected='true'] {
  background: var(--select2-option-hover-gradient) !important;
  color: #fff !important;
}

html[data-theme='light']
  :is(
    #select2-orderform-category-results,
    #select2-orderform-service-results,
    #select2-new-order-search-results,
    #select2-method-results,
    #select2-template-input-results
  )
  .select2-results__option[aria-selected='true']
  * {
  color: #fff !important;
}

html[data-theme='light']
  :is(
    #select2-orderform-category-results,
    #select2-orderform-service-results,
    #select2-new-order-search-results,
    #select2-method-results,
    #select2-template-input-results
  )
  .select2-results__option--highlighted,
html[data-theme='light']
  :is(
    #select2-orderform-category-results,
    #select2-orderform-service-results,
    #select2-new-order-search-results,
    #select2-method-results,
    #select2-template-input-results
  )
  .select2-results__option--highlighted[aria-selected],
html[data-theme='light']
  :is(
    #select2-orderform-category-results,
    #select2-orderform-service-results,
    #select2-new-order-search-results,
    #select2-method-results,
    #select2-template-input-results
  )
  .select2-results__option.select2-results__option--selectable:hover,
html[data-theme='light']
  :is(
    #select2-orderform-category-results,
    #select2-orderform-service-results,
    #select2-new-order-search-results,
    #select2-method-results,
    #select2-template-input-results
  )
  .select2-results__option--highlighted
  *,
html[data-theme='light']
  :is(
    #select2-orderform-category-results,
    #select2-orderform-service-results,
    #select2-new-order-search-results,
    #select2-method-results,
    #select2-template-input-results
  )
  .select2-results__option--highlighted[aria-selected]
  *,
html[data-theme='light']
  :is(
    #select2-orderform-category-results,
    #select2-orderform-service-results,
    #select2-new-order-search-results,
    #select2-method-results,
    #select2-template-input-results
  )
  .select2-results__option.select2-results__option--selectable:hover
  *,
html[data-theme='light']
  :is(
    #select2-orderform-category-results,
    #select2-orderform-service-results,
    #select2-new-order-search-results,
    #select2-method-results,
    #select2-template-input-results
  )
  .select2-results__option[aria-selected='true'].select2-results__option--highlighted,
html[data-theme='light']
  :is(
    #select2-orderform-category-results,
    #select2-orderform-service-results,
    #select2-new-order-search-results,
    #select2-method-results,
    #select2-template-input-results
  )
  .select2-results__option[aria-selected='true'].select2-results__option--highlighted
  * {
  color: #fff !important;
}

html[data-theme='light']
  .neworder-search-shell
  > .search-dropdown
  #select-category-container
  .select2-dropdown,
html[data-theme='light']
  .neworder-search-shell
  > .search-dropdown
  #select-category-container
  .select2-dropdown.dropdown-menu,
html[data-theme='light']
  .neworder-page
  .neworder-search-shell
  .neworder-search-select2-dropdown,
html[data-theme='light']
  .neworder-page
  .neworder-search-shell
  .neworder-search-select2-dropdown.dropdown-menu,
html[data-theme='light']
  .neworder-page
  .neworder-search-shell
  .neworder-search-select2-dropdown.select2-dropdown--below {
  background: #fff !important;
  background-color: #fff !important;
  border-color: #ececec !important;
  color: #2a2430 !important;
}

html[data-theme='light']
  .neworder-search-shell
  > .search-dropdown
  #select-category-container
  .select2-results,
html[data-theme='light']
  .neworder-search-shell
  > .search-dropdown
  #select-category-container
  .select2-results__options,
html[data-theme='light']
  .neworder-search-shell
  > .search-dropdown
  #select-category-container
  .select2-results__options.dropdown-menu,
html[data-theme='light']
  .neworder-page
  .neworder-search-shell
  .neworder-search-select2-dropdown
  .select2-results,
html[data-theme='light']
  .neworder-page
  .neworder-search-shell
  .neworder-search-select2-results,
html[data-theme='light']
  .neworder-page
  .neworder-search-shell
  .neworder-search-select2-results.select2-results__options,
html[data-theme='light']
  .neworder-page
  .neworder-search-shell
  .neworder-search-select2-results.dropdown-menu,
html[data-theme='light']
  .neworder-page
  .neworder-search-shell
  .neworder-search-select2-dropdown
  .select2-results__options,
html[data-theme='light']
  .neworder-page
  .neworder-search-shell
  .neworder-search-select2-dropdown
  .select2-results__options.dropdown-menu {
  background: #fff !important;
  background-color: #fff !important;
  color: #2a2430 !important;
}

html[data-theme='light']
  .neworder-search-shell
  > .search-dropdown
  #select-category-container
  .select2-results__option,
html[data-theme='light']
  .neworder-search-shell
  > .search-dropdown
  #select-category-container
  .select2-results__option
  *,
html[data-theme='light']
  .neworder-page
  .neworder-search-shell
  .neworder-search-select2-dropdown
  .select2-results__option,
html[data-theme='light']
  .neworder-page
  .neworder-search-shell
  .neworder-search-select2-results
  .select2-results__option,
html[data-theme='light']
  .neworder-page
  .neworder-search-shell
  .neworder-search-select2-dropdown
  .select2-results__option
  *,
html[data-theme='light']
  .neworder-page
  .neworder-search-shell
  .neworder-search-select2-results
  .select2-results__option
  *:not(.neworder-service-id) {
  color: #2a2430 !important;
}

html[data-theme='light']
  .neworder-search-shell
  > .search-dropdown
  #select-category-container
  .select2-results__option--highlighted,
html[data-theme='light']
  .neworder-search-shell
  > .search-dropdown
  #select-category-container
  .select2-results__option.select2-results__option--selectable:hover,
html[data-theme='light']
  .neworder-page
  .neworder-search-shell
  .neworder-search-select2-dropdown
  .select2-results__option--highlighted,
html[data-theme='light']
  .neworder-page
  .neworder-search-shell
  .neworder-search-select2-results
  .select2-results__option--highlighted,
html[data-theme='light']
  .neworder-page
  .neworder-search-shell
  .neworder-search-select2-dropdown
  .select2-results__option.select2-results__option--selectable:hover,
html[data-theme='light']
  .neworder-page
  .neworder-search-shell
  .neworder-search-select2-results
  .select2-results__option.select2-results__option--selectable:hover {
  background: var(--select2-option-hover-gradient) !important;
  color: #fff !important;
}

html[data-theme='light']
  .neworder-search-shell
  > .search-dropdown
  #select-category-container
  .select2-results__option--highlighted
  *,
html[data-theme='light']
  .neworder-search-shell
  > .search-dropdown
  #select-category-container
  .select2-results__option.select2-results__option--selectable:hover
  *,
html[data-theme='light']
  .neworder-page
  .neworder-search-shell
  .neworder-search-select2-dropdown
  .select2-results__option--highlighted
  *,
html[data-theme='light']
  .neworder-page
  .neworder-search-shell
  .neworder-search-select2-results
  .select2-results__option--highlighted
  *,
html[data-theme='light']
  .neworder-page
  .neworder-search-shell
  .neworder-search-select2-dropdown
  .select2-results__option.select2-results__option--selectable:hover
  *,
html[data-theme='light']
  .neworder-page
  .neworder-search-shell
  .neworder-search-select2-results
  .select2-results__option.select2-results__option--selectable:hover
  * {
  color: #fff !important;
}

html[data-theme='light']
  .neworder-search-shell
  > .search-dropdown
  #select-category-container
  .select2-results__option[aria-selected='true'],
html[data-theme='light']
  .neworder-page
  .neworder-search-shell
  .neworder-search-select2-dropdown
  .select2-results__option[aria-selected='true'],
html[data-theme='light']
  .neworder-page
  .neworder-search-shell
  .neworder-search-select2-results
  .select2-results__option[aria-selected='true'] {
  background: var(--select2-option-hover-gradient) !important;
  color: #fff !important;
}

html[data-theme='light']
  .neworder-search-shell
  > .search-dropdown
  #select-category-container
  .select2-results__option[aria-selected='true']
  *,
html[data-theme='light']
  .neworder-page
  .neworder-search-shell
  .neworder-search-select2-dropdown
  .select2-results__option[aria-selected='true']
  *,
html[data-theme='light']
  .neworder-page
  .neworder-search-shell
  .neworder-search-select2-results
  .select2-results__option[aria-selected='true']
  * {
  color: #fff !important;
}

/* Services — light mode */
html[data-theme='light'] .services-toolbar-figma {
  background: #fff;
  border: none;
  box-shadow: 0 8px 24px rgba(42, 36, 48, 0.06);
}

html[data-theme='light'] .services-section.is-collapsed .services-category-bar {
  background: #fff;
  color: #111;
  box-shadow: 0 8px 24px rgba(42, 36, 48, 0.06);
}

html[data-theme='light'] .services-search-figma {
  background: #fff;
  border: 1px solid #e4e4e4;
}

html[data-theme='light'] .services-search-input,
html[data-theme='light'] .services-search-input:focus,
html[data-theme='light'] .services-search-figma .services-search-input.form-control,
html[data-theme='light'] .services-search-figma .services-search-input.form-control:focus {
  color: #1d1d1d;
  caret-color: #1d1d1d;
  background: transparent;
}

html[data-theme='light'] .services-search-input::placeholder {
  color: #b0b0b0;
}

html[data-theme='light'] .services-search-figma .services-search-input:-webkit-autofill,
html[data-theme='light'] .services-search-figma .services-search-input:-webkit-autofill:focus {
  -webkit-text-fill-color: #1d1d1d;
  caret-color: #1d1d1d;
}

html[data-theme='light'] .services-category-pill--currency {
  background: #fff;
  border-color: #e4e4e4;
  color: #2a2430;
}

html[data-theme='light'] .services-page .services-filter-menu {
  background: #fff;
  border-color: #ececec;
  box-shadow: 0 12px 32px rgba(42, 36, 48, 0.12);
  scrollbar-color: #d9d9d9 #fff;
}

html[data-theme='light'] .services-page .services-filter-menu::-webkit-scrollbar-track {
  background: #f4f4f4;
}

html[data-theme='light'] .services-page .services-filter-menu::-webkit-scrollbar-thumb {
  background: #d9d9d9;
}

html[data-theme='light'] .services-page .services-filter-menu > li > a {
  color: #2a2430;
}

html[data-theme='light'] .services-page .services-filter-menu .dropdown-item.is-active,
html[data-theme='light'] .services-page .services-filter-menu > li.active > a,
html[data-theme='light'] .services-page .services-filter-menu > li > a:hover,
html[data-theme='light'] .services-page .services-filter-menu > li.active > a {
  background: rgba(189, 14, 220, 0.1);
  color: #2a2430;
}

html[data-theme='light'] .services-page .services-table-card,
html[data-theme='light'] .services-section-body .services-table-card {
  background: #fff;
  border: none;
  box-shadow: 0 8px 24px rgba(42, 36, 48, 0.06);
}

html[data-theme='light'] .services-page .services-table > thead > tr > th,
html[data-theme='light'] .services-section-body .services-table > thead > tr > th {
  background: #fff;
  color: #111;
  border-bottom: 1px solid #ececec;
}

html[data-theme='light'] .services-page .services-table > tbody > tr.services-row,
html[data-theme='light'] .services-page .services-table > tbody > tr.services-row > td {
  background: #fff;
  color: #111;
  border-bottom-color: #ececec;
}

html[data-theme='light'] .services-name-title,
html[data-theme='light'] .services-row-id,
html[data-theme='light'] .services-rate-value,
html[data-theme='light'] .services-minmax-cell,
html[data-theme='light'] .services-page .orders-cell-inner {
  color: #111;
}

html[data-theme='light'] .services-name-meta {
  color: #848484;
}

html[data-theme='light'] .services-favorite-btn {
  color: #c4c4c4;
}

html[data-theme='light'] .services-favorite-btn:hover,
html[data-theme='light'] .services-favorite-btn.favorite-active,
html[data-theme='light'] .services-favorite-btn.is-active {
  color: #f5c518;
}

html[data-theme='light'] .services-rate-icon {
  background: #f0f0f0;
  color: #111;
}

html[data-theme='light'] a.services-rate-icon:hover {
  background: #bd0edc;
  color: #fff;
}

html[data-theme='light'] .services-refill-badge {
  background: #fff;
  border: 1px solid #e4e4e4;
  color: #111;
}

html[data-theme='light'] .services-page .services-desc-btn.orders-btn,
html[data-theme='light'] .services-page .services-desc-btn {
  background: #bd0edc;
  border-color: #bd0edc;
  color: #fff;
}

html[data-theme='light'] .services-page .services-desc-btn:hover {
  background: #d042ee;
  border-color: #d042ee;
  color: #fff;
}

html[data-theme='light'] .services-text-card {
  background: #fff;
  border: none;
  box-shadow: 0 8px 24px rgba(42, 36, 48, 0.06);
}

html[data-theme='light'] .services-text-card-inner {
  color: #2a2430;
}

html[data-theme='light'] .services-details-dialog {
  background: #fff;
  border: none;
  box-shadow: 0 24px 64px rgba(42, 36, 48, 0.18);
}

html[data-theme='light'] .services-details-body {
  scrollbar-color: #d9d9d9 #fff;
}

html[data-theme='light'] .services-details-stat {
  background: #f4f4f4;
  border-color: #ececec;
}

html[data-theme='light'] .services-details-stat-label {
  color: #848484;
}

html[data-theme='light'] .services-details-stat-value,
html[data-theme='light'] .services-details-desc-content,
html[data-theme='light'] .services-details-desc-label {
  color: #2a2430;
}

html[data-theme='light'] .services-details-desc {
  background: #f4f4f4;
  border-color: #ececec;
}

html[data-theme='light'] .services-details-btn--close {
  background: #f0f0f0;
  border-color: #ececec;
  color: #2a2430;
}

@media (max-width: 768px) {
  html[data-theme='light'] .services-section-body .services-table-card {
    background: transparent;
    box-shadow: none;
  }

  html[data-theme='light'] .services-section-body .services-table > tbody > tr.services-row {
    background: #fff;
    border-color: #ececec;
    box-shadow: 0 8px 24px rgba(42, 36, 48, 0.06);
  }

  html[data-theme='light'] .services-section-body .services-table > tbody > tr.services-row > td {
    background: #fff;
    border-bottom-color: #ececec;
    color: #111;
  }

  html[data-theme='light'] .services-section-body .services-table > tbody > tr > td::before {
    color: #848484;
  }

  html[data-theme='light'] .services-section-body .services-table > tbody > tr > td:first-child {
    background: #fff;
  }
}

/* Mass Order */
.massorder-page {
  display: flex;
  flex-direction: column;
  gap: var(--page-block-gap);
  width: 100%;
  overflow: visible;
}

.massorder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--page-block-gap);
  align-items: start;
  width: 100%;
}

.massorder-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #cd36e7;
  border-radius: var(--panel-radius);
  background: #1a161e;
}

.massorder-card-head {
  padding: 24px 24px 0;
  background: #251f2c;
}

.massorder-tabs {
  display: flex;
  align-items: center;
  gap: 24px;
  border-bottom: 2px solid #483954;
  overflow-x: auto;
}

.massorder-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px;
  border: 0;
  border-bottom: 4px solid transparent;
  border-radius: 8px 8px 0 0;
  background: transparent;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  text-decoration: none;
  white-space: nowrap;
}

.massorder-tab img {
  width: auto;
  height: 24px;
  object-fit: contain;
}

.massorder-tab:hover,
.massorder-tab:focus {
  color: #fff;
  text-decoration: none;
}

.massorder-tab.is-active {
  border-bottom-color: #d338ec;
}

.massorder-card-head--info {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 92px;
  padding: 24px;
}

.massorder-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 6px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
}

.massorder-info-icon img {
  width: 37px;
  height: 37px;
}

.page-content h2.massorder-info-title,
.massorder-info-title {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
}

.massorder-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 24px 20px;
}

.massorder-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}

.page-content .massorder-label,
.massorder-page .massorder-label.control-label {
  margin: 0;
  font-family: 'Parkinsans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
}

.massorder-page .massorder-textarea.form-control {
  display: block;
  width: 100%;
  min-height: 280px;
  padding: 16px;
  border: 1.5px solid #2d2d2d;
  border-radius: 10px;
  background: #221d25;
  color: #fff;
  font-family: 'Parkinsans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  resize: vertical;
  box-shadow: none;
}

.massorder-page .massorder-textarea.form-control:focus {
  outline: none;
  border-color: #cd36e7;
  box-shadow: none;
}

.massorder-page .massorder-textarea.form-control::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.massorder-submit,
.massorder-page .btn.btn-primary.massorder-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 32px;
  border: 0;
  border-radius: 12px;
  background: #bd0edc;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
}

.massorder-submit:hover,
.massorder-submit:focus,
.massorder-page .btn.btn-primary.massorder-submit:hover,
.massorder-page .btn.btn-primary.massorder-submit:focus {
  background: #bd0edc;
  color: #fff;
  filter: brightness(1.06);
}

.massorder-guide {
  margin: 24px 24px 20px;
  padding: 16px;
  border: 1.5px solid #2d2d2d;
  border-radius: 10px;
  background: #221d25;
}

.page-content .massorder-guide p,
.massorder-guide p,
.page-content .massorder-guide li,
.massorder-guide li {
  margin: 0 0 16px;
  font-family: 'Parkinsans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
}

.massorder-guide p:last-child,
.massorder-guide ul:last-child {
  margin-bottom: 0;
}

.massorder-guide ul {
  margin: 0;
  padding-left: 24px;
}

.massorder-guide a {
  color: #d338ec;
  text-decoration: none;
}

.massorder-guide a:hover,
.massorder-guide a:focus {
  color: #d338ec;
  text-decoration: underline;
}

.massorder-page .massorder-alert a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
}

.page-content .massorder-page .massorder-alert.alert {
  display: block;
  position: relative;
  box-sizing: border-box;
  margin: 0 0 20px;
  padding: 12px 40px 12px 14px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-shadow: none;
}

.page-content .massorder-page .massorder-alert.alert.alert-danger {
  background: rgba(255, 87, 90, 0.14) !important;
  border: 1px solid rgba(255, 87, 90, 0.45) !important;
  border-left: 4px solid #ff575a !important;
  color: #ffc2c4 !important;
}

.page-content .massorder-page .massorder-alert.alert.alert-success {
  background: rgba(46, 204, 113, 0.14) !important;
  border: 1px solid rgba(46, 204, 113, 0.45) !important;
  border-left: 4px solid #2ecc71 !important;
  color: #b8f0cb !important;
}

.page-content .massorder-page .massorder-alert.alert h4 {
  margin: 0 0 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: #fff !important;
}

.page-content .massorder-page .massorder-alert.alert a {
  color: inherit !important;
  font-weight: 600;
  text-decoration: underline;
}

.page-content .massorder-page .massorder-alert.alert .close {
  position: absolute;
  top: 12px;
  right: 12px;
  float: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  opacity: 0.75;
  text-shadow: none;
}

.page-content .massorder-page .massorder-alert.alert-danger .close {
  color: #ffc2c4 !important;
}

.page-content .massorder-page .massorder-alert.alert-success .close {
  color: #b8f0cb !important;
}

.page-content .massorder-page .massorder-alert.alert .close:hover,
.page-content .massorder-page .massorder-alert.alert .close:focus {
  opacity: 1;
  outline: none;
  color: #fff !important;
}

@media (max-width: 1100px) {
  .massorder-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .massorder-page {
    gap: 20px;
  }

  .massorder-tabs {
    gap: 8px;
  }

  .massorder-form {
    padding: 20px 16px;
  }

  .massorder-guide {
    margin: 20px 16px 16px;
  }

  .massorder-card-head {
    padding: 16px 16px 0;
  }

  .massorder-card-head--info {
    padding: 16px;
  }
}

/* Mass Order — light mode */
html[data-theme='light'] .massorder-card {
  border: 1px solid #fff;
  background: #fff;
  box-shadow: 0 8px 24px rgba(42, 36, 48, 0.06);
}

html[data-theme='light'] .massorder-card-head {
  background: #f7e6f9;
}

html[data-theme='light'] .massorder-tabs {
  border-bottom-color: rgba(115, 115, 115, 0.2);
}

html[data-theme='light'] .massorder-tab {
  color: #000;
}

html[data-theme='light'] .massorder-tab img,
html[data-theme='light'] .massorder-tab.is-active img {
  filter: brightness(0);
}

html[data-theme='light'] .massorder-tab:hover,
html[data-theme='light'] .massorder-tab:focus {
  color: #111;
}

html[data-theme='light'] .massorder-tab.is-active {
  border-bottom-color: #d338ec;
  color: #111;
}

html[data-theme='light'] .massorder-info-icon {
  background: rgba(189, 14, 220, 0.12);
}

html[data-theme='light'] .massorder-info-icon img {
  filter: brightness(0);
}

html[data-theme='light'] .page-content h2.massorder-info-title,
html[data-theme='light'] .massorder-info-title {
  color: #111;
}

html[data-theme='light'] .page-content .massorder-label,
html[data-theme='light'] .massorder-page .massorder-label.control-label {
  color: #4a4a4a;
}

html[data-theme='light'] .massorder-page .massorder-textarea.form-control {
  border: none;
  background: #ebebeb;
  color: #323232;
}

html[data-theme='light'] .massorder-page .massorder-textarea.form-control:focus {
  border: none;
  box-shadow: none;
}

html[data-theme='light'] .massorder-page .massorder-textarea.form-control::placeholder {
  color: #848484;
}

html[data-theme='light'] .massorder-guide {
  border: none;
  background: #ebebeb;
}

html[data-theme='light'] .page-content .massorder-guide p,
html[data-theme='light'] .massorder-guide p,
html[data-theme='light'] .page-content .massorder-guide li,
html[data-theme='light'] .massorder-guide li {
  color: #323232;
}

html[data-theme='light'] .massorder-guide a,
html[data-theme='light'] .massorder-guide a:hover,
html[data-theme='light'] .massorder-guide a:focus {
  color: #bd0edc;
}

html[data-theme='light'] .page-content .massorder-page .massorder-alert.alert.alert-danger {
  background: rgba(255, 87, 90, 0.1) !important;
  border: 1px solid rgba(180, 35, 24, 0.28) !important;
  border-left: 4px solid #b42318 !important;
  color: #b42318 !important;
}

html[data-theme='light'] .page-content .massorder-page .massorder-alert.alert.alert-success {
  background: rgba(46, 204, 113, 0.12) !important;
  border: 1px solid rgba(26, 127, 55, 0.28) !important;
  border-left: 4px solid #1a7f37 !important;
  color: #1a7f37 !important;
}

html[data-theme='light'] .page-content .massorder-page .massorder-alert.alert h4 {
  color: #1d1d1d !important;
}

html[data-theme='light'] .page-content .massorder-page .massorder-alert.alert-danger .close {
  color: #b42318 !important;
}

html[data-theme='light'] .page-content .massorder-page .massorder-alert.alert-success .close {
  color: #1a7f37 !important;
}

html[data-theme='light'] .page-content .massorder-page .massorder-alert.alert .close:hover,
html[data-theme='light'] .page-content .massorder-page .massorder-alert.alert .close:focus {
  color: #111 !important;
}

/* =========================================================
   Mid-desktop polish (< 1400px): tighten boxes/text that stay
   oversized even after the global fluid scale.
   ========================================================= */
@media (max-width: 1399.98px) {
  .bfnav-shell {
    padding: clamp(12px, 1.4vw, 20px) 0;
  }

  .bfnav-masthead-inner {
    gap: var(--section-gap);
  }

  .bfnav-menu {
    gap: clamp(8px, 0.7vw, 12px);
  }

  .bfnav-menu-link {
    font-size: clamp(14px, 1.1vw, 16px);
    min-height: clamp(44px, 3.6vw, 50px);
    padding: clamp(11px, 1vw, 14px) clamp(8px, 0.8vw, 10px);
  }

  .account-panel-head,
  .ai-rec-card-head,
  .addfunds-panel-head,
  .child-panel-card-head {
    min-height: clamp(72px, 6.5vw, 92px);
    padding: var(--panel-pad);
  }

  .massorder-card-head,
  .massorder-card-head--info {
    padding: var(--panel-pad) var(--panel-pad) 0;
  }

  .account-panel-body,
  .addfunds-panel-body {
    padding: var(--panel-pad);
    gap: var(--section-gap);
  }

  .account-panel-head h2,
  .page-content h2.ai-rec-card-title,
  .ai-rec-card-title,
  .page-content h2.child-panel-card-title,
  .child-panel-card-title,
  .page-content h2 {
    font-size: clamp(15px, 1.2vw, 18px);
  }

  .neworder-stat-value {
    font-size: clamp(20px, 1.8vw, 28px);
  }

  .neworder-stat-label,
  .giveaway-card-desc,
  .account-subnav-link {
    font-size: var(--text-body);
  }

  .giveaway-card-amount {
    font-size: var(--text-title);
  }

  .api-card-title {
    font-size: clamp(18px, 1.6vw, 24px);
  }

  .api-card-body {
    padding: clamp(18px, 2.2vw, 32px);
  }
}

/* Purple gradient – primary buttons & active purple states */
.bfnav-menu-link:hover,
.bfnav-menu-link.is-active,
.bfnav-more-dropdown .bfnav-dropdown-panel a:not(.is-active):hover,
.bfnav-more-dropdown .bfnav-dropdown-panel a.is-active,
.bfnav-more-dropdown .bfnav-dropdown-panel a.is-active:hover,
.bfnav-sheet-grid a.is-active,
.bfnav-sheet-grid a.is-active:hover,
.bfnav-drawer-add-funds,
.signin-page__back,
.signin-page__submit:not(.signin-page__submit--ghost),
.neworder-submit,
.account-btn--primary,
.massorder-submit,
.massorder-page .btn.btn-primary.massorder-submit,
.addfunds-submit,
.invoice-submit,
.child-panel-submit,
.tickets-submit,
.orders-selection-btn,
.orders-filter.is-active,
.faq-tab.is-active,
.neworder-platform.is-active,
.ai-rec-platform.is-active,
.ai-rec-buy,
.addfunds-method-chip.is-active,
.orders-pagination .is-active a,
.orders-pagination li.is-active a,
.addfunds-pagination .pagination > .active > a,
.addfunds-pagination .pagination > .active > span,
.services-search-submit,
.services-details-btn--close,
.giveaway-card-btn,
.modal:not(#module-captcha) .modal-footer .btn-primary,
html[data-theme='light'] .bfnav-menu-link:hover,
html[data-theme='light'] .bfnav-menu-link.is-active,
html[data-theme='light'] .bfnav-more-dropdown .bfnav-dropdown-panel a:not(.is-active):hover,
html[data-theme='light'] .bfnav-more-dropdown .bfnav-dropdown-panel a.is-active,
html[data-theme='light'] .bfnav-more-dropdown .bfnav-dropdown-panel a.is-active:hover,
html[data-theme='light'] .bfnav-sheet-grid a.is-active,
html[data-theme='light'] .bfnav-sheet-grid a.is-active:hover,
html[data-theme='light'] .neworder-platform.is-active,
html[data-theme='light'] .orders-filter.is-active,
html[data-theme='light'] .ai-rec-platform.is-active,
html[data-theme='light'] .giveaway-card-btn,
html[data-theme='light'] .addfunds-method-chip.is-active,
html[data-theme='light'] .updates-page .updates-filter-tab,
html[data-theme='light'] .updates-page .services-filter-tab.updates-filter-tab,
html[data-theme='light'] .updates-page .orders-filter.is-active,
html[data-theme='light'] .orders-pagination .is-active a,
html[data-theme='light'] .orders-pagination li.is-active a,
html[data-theme='light'] .faq-page .faq-tab.is-active,
html[data-theme='light'] .services-page .services-desc-btn.orders-btn,
html[data-theme='light'] .services-page .services-desc-btn {
  background: var(--btn-purple-gradient);
  background-image: var(--btn-purple-gradient);
}

.bfnav-drawer-add-funds:hover,
.signin-page__back:hover,
.signin-page__submit:not(.signin-page__submit--ghost):hover,
.neworder-submit:hover,
.account-btn--primary:hover,
.account-btn--primary:focus,
.massorder-submit:hover,
.massorder-submit:focus,
.massorder-page .btn.btn-primary.massorder-submit:hover,
.massorder-page .btn.btn-primary.massorder-submit:focus,
.addfunds-submit:hover,
.invoice-submit:hover,
.child-panel-submit:hover,
.child-panel-submit:focus,
.tickets-submit:hover,
.orders-selection-btn:hover,
.ai-rec-buy:hover,
.services-search-submit:hover,
.services-details-btn--close:hover,
.giveaway-card-btn:hover,
.modal:not(#module-captcha) .modal-footer .btn-primary:hover,
html[data-theme='light'] .account-btn--primary:hover,
html[data-theme='light'] .account-btn--primary:focus,
html[data-theme='light'] .giveaway-card-btn:hover {
  background: var(--btn-purple-gradient-hover);
  background-image: var(--btn-purple-gradient-hover);
}


