/* Logged-in header dropdowns — uses native nav-menu-* classes from site CSS */

.mirror-user-nav.nav-menu-container.header-user-nav {
  display: flex;
  align-items: center;
  height: 36px;
}

.mirror-user-nav > .nav-menu-other {
  display: flex;
  align-items: center;
  height: 36px;
}

.mirror-user-nav .nav-menu-other > li {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}

.mirror-user-nav .nav-menu-sub {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 220px;
  background: #2b2b2b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0 0 6px 6px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  padding: 6px 0;
  z-index: 10050;
  list-style: none;
  margin: 0;
}

.mirror-user-nav .nav-menu-other > li:hover > .nav-menu-sub,
.mirror-user-nav .nav-menu-other > li:focus-within > .nav-menu-sub {
  display: block;
}

.mirror-user-nav .nav-menu-sub {
  display: none;
}

.mirror-user-nav .nav-menu-sub .nav-menu-item-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  min-height: 42px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: background 0.15s;
}

.mirror-user-nav .nav-menu-sub .nav-menu-item-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.mirror-user-nav .nav-menu-sub .nav-menu-item-btn i {
  font-size: 16px;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
  color: rgba(var(--hero), 1);
}

.mirror-user-nav .mirror-balance-trigger {
  cursor: pointer;
}

.mirror-user-nav .mirror-balance-trigger:hover,
.mirror-user-nav .mirror-profile-trigger:hover {
  background: rgba(255, 255, 255, 0.05);
}

.mirror-user-nav .logout-profile {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 4px;
  padding-top: 4px;
}

.mirror-user-nav .logout-profile .userLogoutBtn {
  color: rgba(255, 255, 255, 0.55);
  background: transparent;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.mirror-user-nav .logout-profile .userLogoutBtn:hover {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
}

/* Match native header-user-nav trigger styling (site CSS targets li > a) */
.mirror-user-nav .nav-menu-other > li > .nav-menu-item {
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-top: 2px solid transparent;
  line-height: 1;
  box-sizing: border-box;
}

.mirror-user-nav .mirror-balance-trigger .hdr-user-info-content-bc {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.mirror-user-nav .mirror-balance-trigger .hdr-user-info-texts-bc {
  align-items: center;
}

.mirror-user-nav .mirror-balance-trigger .balanceAmount {
  margin: 0;
  line-height: 1;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.mirror-user-nav .mirror-balance-trigger .currencySymbol {
  font-size: 1em;
  font-weight: 600;
}

.mirror-user-nav .mirror-profile-trigger {
  min-width: 36px;
  padding: 0 8px !important;
}

.mirror-user-nav .mirror-profile-trigger .hdr-user-avatar-icon-bc {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin: 0;
}

.hdr-user-bc:has(.mirror-user-nav) {
  display: flex;
  align-items: center;
  gap: 0;
}

.mirror-user-nav .nav-menu-item-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
  color: inherit;
  width: 100%;
  text-align: inherit;
  padding: 0;
}

/* Account overlay panel */

.mirror-profile-panel.popup-holder-bc.blocked .popup-inner-bc {
  width: min(1200px, 96vw) !important;
  max-width: 96vw;
  height: 88vh !important;
  max-height: 920px;
  overflow: hidden;
}

.mirror-profile-panel.popup-holder-bc .popup-inner-bc {
  padding: 0;
  background: #0a0a0a;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.65);
}

.mirror-profile-layout.user-profile-container {
  display: flex;
  width: 100%;
  min-height: 560px;
  height: 100%;
  max-height: 88vh;
  overflow: hidden;
}

.mirror-profile-left {
  width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  background: #343434;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.06);
  overflow-y: auto;
}

.mirror-profile-right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #0a0a0a;
}

.mirror-profile-right .overlay-header {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: #0a0a0a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mirror-profile-right .overlay-header .mirror-overlay-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.mirror-profile-right .overlay-header .e-p-close-icon-bc {
  font-size: 14px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.55);
}

.mirror-profile-content {
  flex: 1;
  overflow-y: auto;
  padding: 12px 18px 24px;
  width: 100%;
  min-width: 0;
  background: #0a0a0a;
}

.mirror-pay-list {
  width: 100%;
}

.mirror-user-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 16px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mirror-user-head .hdr-user-avatar-icon-bc {
  font-size: 40px;
  color: rgba(255, 255, 255, 0.35);
}

.mirror-user-id {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  gap: 8px;
}

.mirror-user-id .bc-i-copy {
  font-size: 12px;
  cursor: pointer;
  opacity: 0.6;
}

.mirror-balance-cards {
  padding: 0 14px 12px;
}

.mirror-balance-card {
  border-radius: 6px;
  padding: 14px 16px;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}

.mirror-balance-card.main {
  background: linear-gradient(145deg, #3d9a4a 0%, #2a7a38 55%, #1f5f2c 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.mirror-balance-card.bonus {
  background: linear-gradient(145deg, #d4b44a 0%, #b8922a 55%, #8f6f18 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.mirror-balance-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 6px;
}

.mirror-balance-card-head .bc-i-eye-hidden,
.mirror-balance-card-head .bc-i-eye {
  cursor: pointer;
  font-size: 14px;
}

.mirror-balance-amount {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
}

.mirror-balance-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 4px;
}

.mirror-balance-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.mirror-balance-actions button {
  flex: 1;
  border: none;
  border-radius: 4px;
  padding: 9px 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.22);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.mirror-balance-actions button:hover {
  background: rgba(0, 0, 0, 0.4);
}

.mirror-balance-card.bonus .mirror-balance-card-icon {
  position: absolute;
  right: 10px;
  bottom: 8px;
  font-size: 28px;
  opacity: 0.25;
  color: #fff;
}

.mirror-loyalty-strip {
  margin: 0 14px 12px;
  padding: 10px 14px;
  border-radius: 6px;
  background: linear-gradient(90deg, #7a5230 0%, #5c3d22 100%);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  border: none;
  width: calc(100% - 28px);
  text-align: left;
  color: rgba(255, 255, 255, 0.92);
}

.mirror-loyalty-strip .mirror-loyalty-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #cd7f32, #8b4513);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  color: #fff;
  flex-shrink: 0;
}

.mirror-loyalty-strip span {
  font-size: 12px;
  font-weight: 600;
}

.mirror-profile-nav {
  flex: 1;
  padding: 6px 0 8px;
}

.mirror-nav-group {
  margin-bottom: 0;
}

.mirror-nav-group .componentFilterWrapper-bc {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mirror-nav-group .componentFilterLabel-bc {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.82);
  padding: 12px 16px;
  background: transparent;
}

.mirror-nav-group .componentFilterLabel-filter-i-bc {
  color: rgba(var(--hero), 1);
  font-size: 15px;
}

.mirror-nav-sub {
  background: rgba(0, 0, 0, 0.18);
}

.mirror-nav-sub button {
  display: block;
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  padding: 11px 16px 11px 40px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  cursor: pointer;
}

.mirror-nav-sub button:hover,
.mirror-nav-sub button.active {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.95);
}

.mirror-nav-item {
  display: flex;
  align-items: center;
  width: 100%;
  border: none;
  background: transparent;
  padding: 13px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
}

.mirror-nav-item i {
  font-size: 16px;
  color: rgba(var(--hero), 1);
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.mirror-nav-item::after {
  content: '›';
  position: absolute;
  right: 16px;
  font-size: 16px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.28);
}

.mirror-nav-item:hover,
.mirror-nav-item.active {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.95);
}

.mirror-promo-block {
  padding: 10px 14px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mirror-promo-row {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
}

.mirror-promo-row input {
  flex: 1;
  min-width: 0;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.22);
  color: rgba(255, 255, 255, 0.75);
  padding: 0 10px;
  font-size: 11px;
}

.mirror-promo-row button {
  flex-shrink: 0;
  border: none;
  border-radius: var(--border-radius, 4px);
  padding: 0 12px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(180deg, rgba(var(--hero), 1), rgba(var(--hero), 0.75));
  color: rgba(var(--hero-sc), 1);
}

.mirror-profile-logout {
  padding: 8px 14px 16px;
  margin-top: auto;
}

.mirror-profile-logout button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 36px;
  border: none;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.25);
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
}

.mirror-profile-logout button:hover {
  background: rgba(var(--b-sc), 0.15);
  color: rgba(var(--b-sc), 0.9);
}

.mirror-deposit-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.mirror-deposit-tab {
  border: 1px solid rgba(var(--b-sc), 0.12);
  background: rgba(var(--b-sc), 0.04);
  color: rgba(var(--b-sc), 0.7);
  border-radius: var(--border-radius, 4px);
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
}

.mirror-deposit-tab.active {
  border-color: rgba(var(--hero), 1);
  color: rgba(var(--hero), 1);
  background: rgba(var(--hero), 0.1);
}

.mirror-pay-card {
  background: rgba(var(--b-sc), 0.04);
  border: 1px solid rgba(var(--b-sc), 0.1);
  border-radius: var(--border-radius, 6px);
  padding: 14px 16px;
  margin-bottom: 12px;
}

.mirror-pay-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(var(--hero), 1);
  font-size: 14px;
  font-weight: 600;
}

.mirror-pay-row {
  display: grid;
  grid-template-columns: minmax(90px, 120px) 1fr;
  gap: 12px;
  align-items: start;
  padding: 8px 0;
  border-bottom: 1px solid rgba(var(--b-sc), 0.06);
  font-size: 13px;
}

.mirror-pay-row:last-child {
  border-bottom: none;
}

.mirror-pay-label {
  color: rgba(var(--b-sc), 0.5);
  word-break: normal;
}

.mirror-pay-value {
  color: rgba(var(--b-sc), 0.92);
  word-break: break-all;
  text-align: start;
  min-width: 0;
}

.mirror-pay-value.copied {
  color: rgba(var(--hero), 1);
}

.mirror-pay-value[data-copy] {
  cursor: pointer;
}

.mirror-section-lead {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 14px;
}

.mirror-section-empty {
  color: rgba(255, 255, 255, 0.38);
  font-size: 13px;
  padding: 32px 0;
  text-align: center;
}

.mirror-section-note {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(var(--b-sc), 0.5);
  line-height: 1.5;
}

.mirror-profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mirror-profile-grid > div span {
  display: block;
  font-size: 11px;
  color: rgba(var(--b-sc), 0.5);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.mirror-loyalty-panel-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(var(--b-sc), 0.04);
  border-radius: var(--border-radius, 6px);
  margin-bottom: 20px;
}

.mirror-loyalty-panel-head .mirror-loyalty-badge {
  width: 56px;
  height: 56px;
  font-size: 22px;
}

.mirror-loyalty-xp {
  margin-top: 8px;
  height: 4px;
  background: rgba(var(--b-sc), 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.mirror-loyalty-xp span {
  display: block;
  height: 100%;
  width: 0;
  background: rgba(var(--hero), 1);
}

html.mirror-profile-open,
html.mirror-profile-open body {
  overflow: hidden;
}

@media (max-width: 768px) {
  .mirror-profile-layout.user-profile-container {
    flex-direction: column;
    max-height: 90vh;
  }

  .mirror-profile-left {
    width: 100%;
    max-height: 40vh;
  }

  .mirror-fulgur-layout {
    flex-direction: column;
  }
}

/* Payment method grid (deposit / withdraw) */

.mirror-deposit-promo-banner {
  margin-bottom: 12px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #000;
}

.mirror-deposit-promo-banner img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 72px;
  object-fit: cover;
  object-position: center;
}

.mirror-deposit-promo {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 12px;
  text-align: center;
}

.mirror-pay-notice {
  background: rgba(200, 160, 60, 0.1);
  border: 1px solid rgba(200, 160, 60, 0.28);
  border-radius: 4px;
  color: #e8c86a;
  font-size: 12px;
  line-height: 1.5;
  padding: 10px 14px;
  margin-bottom: 14px;
}

.mirror-pay-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.mirror-pay-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #252525;
  color: rgba(255, 255, 255, 0.62);
  border-radius: 4px;
  padding: 8px 11px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.mirror-pay-category i {
  font-size: 14px;
  color: rgba(var(--hero), 1);
}

.mirror-pay-category.active {
  border-color: rgba(var(--hero), 1);
  color: rgba(255, 255, 255, 0.95);
  background: rgba(var(--hero), 0.14);
}

.mirror-pay-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 0;
}

.mirror-pay-tile {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #252525;
  border-radius: 4px;
  padding: 6px 8px;
  cursor: pointer;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

.mirror-pay-tile:hover {
  border-color: rgba(var(--hero), 0.45);
  background: #2c2c2c;
}

.mirror-pay-tile.selected {
  border-color: rgba(var(--hero), 1);
  background: rgba(var(--hero), 0.1);
  box-shadow: inset 0 0 0 1px rgba(var(--hero), 0.45);
}

.mirror-pay-tile img {
  max-width: 100%;
  max-height: 36px;
  object-fit: contain;
}

.mirror-deposit-detail {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mirror-deposit-detail > .mirror-pay-notice:first-child {
  margin-top: 0;
}

.mirror-pay-info-table {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  margin-bottom: 14px;
  overflow: hidden;
}

.mirror-pay-info-col {
  flex: 1 1 120px;
  min-width: 100px;
  padding: 10px 12px;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.06);
}

.mirror-pay-info-col:last-child {
  border-inline-end: none;
}

.mirror-pay-info-label {
  display: block;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.42);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.mirror-pay-info-value {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.mirror-pay-video-link {
  margin: 0 0 14px;
  font-size: 12px;
}

.mirror-pay-video-link a {
  color: #3498db;
  text-decoration: none;
}

.mirror-form-field {
  margin-bottom: 14px;
}

.mirror-form-field label,
.mirror-form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.48);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.mirror-form-field input,
.mirror-form-field select {
  width: 100%;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.92);
  padding: 0 12px;
  font: inherit;
  box-sizing: border-box;
}

.mirror-action-btn {
  display: block;
  width: 100%;
  border: none;
  border-radius: 4px;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  text-transform: uppercase;
  background: linear-gradient(180deg, #d4b44a 0%, #a8842a 100%);
  color: #1a1208;
  margin-top: 8px;
}

.mirror-fulgur-layout {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}

.mirror-fulgur-left {
  flex: 1;
  min-width: 0;
}

.mirror-fulgur-right {
  width: 200px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.mirror-wallet-field {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(52, 152, 219, 0.08);
  border: 1px solid rgba(52, 152, 219, 0.25);
  border-radius: var(--border-radius, 4px);
  padding: 0 10px;
}

.mirror-wallet-field input {
  flex: 1;
  border: none;
  background: transparent;
  color: rgba(var(--b-sc), 0.92);
  font-size: 12px;
  padding: 10px 0;
  min-width: 0;
}

.mirror-wallet-field .bc-i-copy {
  cursor: pointer;
  opacity: 0.7;
  font-size: 14px;
}

.mirror-wallet-hint {
  font-size: 11px;
  color: rgba(var(--b-sc), 0.5);
  margin: 8px 0 12px;
  line-height: 1.4;
}

.mirror-wallet-hint i {
  margin-inline-end: 4px;
}

.mirror-timer-btn {
  display: block;
  width: 100%;
  border: none;
  border-radius: var(--border-radius, 4px);
  padding: 12px;
  background: #3498db;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  cursor: default;
  margin-bottom: 10px;
}

.mirror-wallet-foot,
.mirror-wallet-rate {
  font-size: 11px;
  color: rgba(var(--b-sc), 0.5);
  line-height: 1.4;
  margin: 6px 0 0;
}

.mirror-qr {
  width: 180px;
  height: 180px;
  border-radius: 8px;
  background: #fff;
  padding: 8px;
  box-sizing: border-box;
}

.mirror-qr-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  color: #666;
  border: 1px dashed #ccc;
}

.mirror-fulgur-logo {
  max-width: 120px;
  max-height: 36px;
  object-fit: contain;
}

.mirror-back-link {
  border: none;
  background: transparent;
  color: rgba(var(--hero), 1);
  font-size: 12px;
  cursor: pointer;
  margin-top: 16px;
  padding: 0;
}

.mirror-withdraw-balances {
  border: 1px solid rgba(var(--b-sc), 0.1);
  border-radius: var(--border-radius, 4px);
  margin-bottom: 14px;
  overflow: hidden;
}

.mirror-withdraw-balance-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(var(--b-sc), 0.06);
  font-size: 12px;
}

.mirror-withdraw-balance-row:last-child {
  border-bottom: none;
}

.mirror-withdraw-balance-row span {
  color: rgba(var(--b-sc), 0.55);
}

.mirror-withdraw-balance-row strong {
  color: rgba(var(--b-sc), 0.9);
  font-weight: 600;
}

@media (max-width: 1100px) {
  .mirror-pay-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .mirror-pay-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mirror-profile-panel.popup-holder-bc.blocked .popup-inner-bc {
    width: 100vw !important;
    height: 100vh !important;
    max-height: none;
    border-radius: 0;
  }
}
