:root {
  --primary: #F5A623;
  --secondary: #1A1A2E;
  --background: #0D0D1A;
  --card: #1E1E32;
  --text-main: #FFFFFF;
  --text-secondary: #CDD0E3;
  --accent-green: #00E676;
  --accent-red: #FF5252;
  --divider: #33334D;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body.oro-bg {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-weight: 400;
  color: var(--text-main);
  background:
    radial-gradient(circle at 0% -20%, rgba(245, 166, 35, 0.28), transparent 40%),
    radial-gradient(circle at 100% 0%, rgba(245, 166, 35, 0.18), transparent 34%),
    linear-gradient(170deg, #0D0D1A 0%, #0A0A14 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.page-title,
.section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--text-main);
}

.page-title {
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0.2px;
}

.page-subtitle {
  margin-top: 3px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #D8D8E8;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: #FFD082;
}

code {
  color: #FFD68F;
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.24);
  border-radius: 8px;
  padding: 2px 6px;
}

.app-topbar-wrap {
  position: sticky;
  top: 0;
  z-index: 1050;
  backdrop-filter: blur(12px);
  background: linear-gradient(180deg, rgba(13, 13, 26, 0.96), rgba(13, 13, 26, 0.84));
  border-bottom: 1px solid rgba(245, 166, 35, 0.2);
}

.app-topbar {
  width: min(100%, 560px);
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background-image: linear-gradient(120deg, rgba(245, 166, 35, 0.13), transparent 42%);
}

.app-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--text-main);
}

.app-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(245, 166, 35, 0.52);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.34);
}

.app-brand-meta {
  min-width: 0;
}

.app-brand-title {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1;
}

.app-brand-sub {
  margin-top: 2px;
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1;
}

.live-badge {
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(0, 230, 118, 0.16);
  color: var(--accent-green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: 1px solid rgba(0, 230, 118, 0.45);
}

.app-topbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.icon-action {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: #E2E3F3;
  transition: all 0.2s ease;
}

.icon-action:hover {
  transform: translateY(-1px);
  color: var(--primary);
  border-color: rgba(245, 166, 35, 0.35);
}

.icon-action.logout-action {
  border-color: rgba(255, 82, 82, 0.28);
  color: #FFD0D0;
}

.icon-action.logout-action:hover {
  color: #FFE8E8;
  border-color: rgba(255, 82, 82, 0.52);
  background: rgba(255, 82, 82, 0.16);
}

.icon-action ion-icon {
  font-size: 18px;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
}

.lang-switcher.compact {
  min-width: 0;
}

.lang-dropdown-toggle {
  min-height: 34px;
  padding: 4px 9px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #EFF1FB;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  box-shadow: none !important;
}

.lang-dropdown-toggle:hover,
.lang-dropdown-toggle:focus,
.lang-dropdown.show .lang-dropdown-toggle {
  color: #FFFFFF;
  border-color: rgba(245, 166, 35, 0.45);
  background: rgba(245, 166, 35, 0.12);
}

.lang-dropdown-toggle::after {
  margin-left: 1px;
  font-size: 10px;
}

.lang-dropdown-menu {
  margin-top: 8px !important;
  border-radius: 12px;
  border: 1px solid rgba(245, 166, 35, 0.28);
  background: rgba(20, 20, 35, 0.98);
  min-width: 152px;
  padding: 6px;
  box-shadow: 0 16px 24px rgba(0, 0, 0, 0.4);
}

.lang-dropdown-item {
  border-radius: 8px;
  padding: 7px 8px;
  color: #E5E8F8;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  transition: all 0.2s ease;
}

.lang-dropdown-item:hover {
  background: rgba(245, 166, 35, 0.13);
  color: #FFFFFF;
}

.lang-dropdown-item.active,
.lang-dropdown-item:active {
  background: rgba(245, 166, 35, 0.2);
  color: #FFFFFF;
}

.lang-item-text {
  line-height: 1;
}

.lang-flag {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  flex: 0 0 16px;
  display: inline-block;
}

.lang-flag.flag-id {
  background: linear-gradient(180deg, #D61F26 0 50%, #FFFFFF 50% 100%);
}

.lang-flag.flag-en {
  background:
    linear-gradient(90deg, transparent 40%, #FFFFFF 40% 60%, transparent 60%),
    linear-gradient(180deg, transparent 40%, #FFFFFF 40% 60%, transparent 60%),
    linear-gradient(90deg, transparent 46%, #C8102E 46% 54%, transparent 54%),
    linear-gradient(180deg, transparent 46%, #C8102E 46% 54%, transparent 54%),
    #012169;
}

.lang-flag.flag-ms {
  background:
    linear-gradient(90deg, #012169 0 54%, transparent 54%),
    repeating-linear-gradient(180deg, #D2202F 0 12.5%, #FFFFFF 12.5% 25%);
}

.app-main {
  width: min(100%, 560px);
  margin: 0 auto;
  padding: 16px 16px 98px;
}

.admin-main {
  width: min(100%, 1220px);
  padding-bottom: 28px;
}

body.admin-mode .app-topbar-wrap {
  border-bottom-color: rgba(103, 156, 255, 0.28);
  background: linear-gradient(180deg, rgba(12, 15, 34, 0.96), rgba(11, 14, 31, 0.88));
}

body.admin-mode .app-topbar {
  width: min(100%, 1220px);
  background-image:
    radial-gradient(circle at 80% -80%, rgba(103, 156, 255, 0.18), transparent 42%),
    linear-gradient(120deg, rgba(245, 166, 35, 0.12), transparent 44%);
}

.admin-page-hero {
  border-radius: 18px;
  border: 1px solid rgba(103, 156, 255, 0.28);
  background:
    radial-gradient(circle at 92% 8%, rgba(103, 156, 255, 0.22), transparent 42%),
    radial-gradient(circle at 10% 100%, rgba(245, 166, 35, 0.16), transparent 44%),
    linear-gradient(150deg, rgba(28, 31, 58, 0.98), rgba(18, 20, 38, 0.98));
  padding: 16px;
  margin-bottom: 14px;
}

.admin-page-eyebrow {
  font-size: 11px;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  color: #9EBBFF;
}

.admin-page-title {
  margin: 4px 0 0;
  font-size: clamp(24px, 3.3vw, 30px);
  line-height: 1.08;
}

.admin-page-sub {
  margin: 7px 0 0;
  font-size: 13px;
  color: #D3DCF7;
}

.admin-shortcuts {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 8px;
}

.admin-shortcut {
  min-height: 62px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #E7EBFF;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 4px;
  font-size: 11px;
  transition: all 0.2s ease;
}

.admin-shortcut ion-icon {
  font-size: 18px;
  color: #9EBBFF;
}

.admin-shortcut:hover {
  transform: translateY(-1px);
  border-color: rgba(103, 156, 255, 0.45);
  color: #FFFFFF;
}

.admin-shortcut.is-active {
  border-color: rgba(245, 166, 35, 0.48);
  background: rgba(245, 166, 35, 0.18);
  color: #FFFFFF;
}

.admin-shortcut.is-active ion-icon {
  color: #FFD58A;
}

body.admin-mode .card-glass {
  border-color: rgba(103, 156, 255, 0.22);
  background:
    radial-gradient(circle at 100% 0, rgba(103, 156, 255, 0.14), transparent 40%),
    linear-gradient(162deg, rgba(26, 29, 54, 0.98), rgba(18, 20, 37, 0.98));
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.36);
}

body.admin-mode .card-glass h1,
body.admin-mode .card-glass h2,
body.admin-mode .card-glass h3,
body.admin-mode .card-glass h4,
body.admin-mode .card-glass h5,
body.admin-mode .card-glass h6 {
  color: #F5F7FF;
}

body.admin-mode .table-responsive {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
}

body.admin-mode .table-oro thead th {
  color: #D2DEFF;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-size: 11px;
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

body.admin-mode .table-oro > :not(caption) > * > * {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

body.admin-mode .table-oro tbody tr {
  background: rgba(255, 255, 255, 0.01);
}

body.admin-mode .table-oro tbody tr:hover {
  background: rgba(103, 156, 255, 0.08);
}

body.admin-mode .stat-box {
  border-color: rgba(103, 156, 255, 0.34);
  background:
    radial-gradient(circle at 90% 10%, rgba(103, 156, 255, 0.2), transparent 42%),
    rgba(22, 25, 47, 0.96);
  padding: 12px;
}

body.admin-mode .stat-box .label {
  font-size: 11px;
  color: #CAD5F2;
}

body.admin-mode .stat-box .value {
  font-size: 24px;
  color: #FFFFFF;
}

body.admin-mode .form-control,
body.admin-mode .form-select {
  border-color: rgba(103, 156, 255, 0.28) !important;
  background: #161a31 !important;
}

body.admin-mode .form-control:focus,
body.admin-mode .form-select:focus {
  border-color: rgba(103, 156, 255, 0.58) !important;
  box-shadow: 0 0 0 0.2rem rgba(103, 156, 255, 0.2) !important;
}

body.admin-mode .alert {
  border-radius: 12px;
  border-width: 1px;
}

body.admin-mode .btn-outline-warning {
  border-color: rgba(103, 156, 255, 0.46) !important;
  color: #CFE0FF !important;
}

body.admin-mode .btn-outline-warning:hover {
  background: rgba(103, 156, 255, 0.16) !important;
}

body.admin-mode .btn-outline-success {
  border-color: rgba(0, 230, 118, 0.52) !important;
  color: #9BFFD0 !important;
}

body.admin-mode .btn-outline-success:hover {
  background: rgba(0, 230, 118, 0.16) !important;
  color: #D9FFEC !important;
}

body.admin-mode .btn-outline-danger {
  border-color: rgba(255, 82, 82, 0.52) !important;
  color: #FFC8C8 !important;
}

body.admin-mode .btn-outline-danger:hover {
  background: rgba(255, 82, 82, 0.18) !important;
  color: #FFE7E7 !important;
}

body.admin-mode .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.26) !important;
  color: #E5E8F8 !important;
}

body.admin-mode .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.14) !important;
}

.admin-page-shell {
  display: grid;
  gap: 14px;
}

.admin-panel-card {
  border-radius: 16px;
}

.admin-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.admin-card-sub {
  margin-top: 3px;
  font-size: 12px;
  line-height: 1.35;
  color: #C8D4F6;
}

.admin-filter-row {
  border-radius: 12px;
  border: 1px solid rgba(103, 156, 255, 0.2);
  background: rgba(255, 255, 255, 0.02);
  padding: 10px;
  margin-bottom: 12px;
}

.admin-chip-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-chip-nav .btn {
  border-radius: 999px;
  min-height: 34px;
  padding-inline: 12px;
}

.admin-table-wrap {
  border-radius: 14px;
}

.admin-table-wrap.admin-table-scroll-x {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.admin-withdraw-page .admin-table-wrap.admin-table-scroll-x,
.admin-deposit-page .admin-table-wrap.admin-table-scroll-x,
.admin-members-page .admin-table-wrap.admin-table-scroll-x {
  position: relative;
  max-width: 100%;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  touch-action: pan-x;
  border: 1px solid rgba(103, 156, 255, 0.24);
  background: linear-gradient(180deg, rgba(15, 18, 34, 0.96), rgba(12, 14, 28, 0.96));
}

.admin-withdraw-page .admin-table-wrap.admin-table-scroll-x::-webkit-scrollbar,
.admin-deposit-page .admin-table-wrap.admin-table-scroll-x::-webkit-scrollbar,
.admin-members-page .admin-table-wrap.admin-table-scroll-x::-webkit-scrollbar {
  height: 8px;
}

.admin-withdraw-page .admin-table-wrap.admin-table-scroll-x::-webkit-scrollbar-track,
.admin-deposit-page .admin-table-wrap.admin-table-scroll-x::-webkit-scrollbar-track,
.admin-members-page .admin-table-wrap.admin-table-scroll-x::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

.admin-withdraw-page .admin-table-wrap.admin-table-scroll-x::-webkit-scrollbar-thumb,
.admin-deposit-page .admin-table-wrap.admin-table-scroll-x::-webkit-scrollbar-thumb,
.admin-members-page .admin-table-wrap.admin-table-scroll-x::-webkit-scrollbar-thumb {
  background: rgba(103, 156, 255, 0.58);
  border-radius: 999px;
}

.admin-withdraw-page .withdraw-scroll-hint,
.admin-deposit-page .withdraw-scroll-hint,
.admin-members-page .withdraw-scroll-hint {
  display: none;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 11px;
  color: #BFD0FB;
}

.admin-withdraw-page .withdraw-scroll-hint ion-icon,
.admin-deposit-page .withdraw-scroll-hint ion-icon,
.admin-members-page .withdraw-scroll-hint ion-icon {
  font-size: 14px;
  color: #9EBBFF;
}

.admin-withdraw-page .admin-withdraw-table {
  min-width: 1180px !important;
  width: max-content !important;
  table-layout: auto;
}

.admin-withdraw-page .withdraw-wallet-address {
  display: inline-block;
  max-width: 240px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-withdraw-page .admin-withdraw-table .withdraw-action-cell {
  min-width: 260px;
  position: sticky;
  right: 0;
}

.admin-withdraw-page .withdraw-action-form {
  min-width: 240px;
}

.admin-withdraw-page .admin-withdraw-table thead th,
.admin-withdraw-page .admin-withdraw-table tbody td {
  vertical-align: top;
}

.admin-withdraw-page .admin-withdraw-table thead th {
  white-space: nowrap;
}

.admin-withdraw-page .admin-withdraw-table thead th:nth-child(1),
.admin-withdraw-page .admin-withdraw-table tbody td:nth-child(1) {
  min-width: 160px;
}

.admin-withdraw-page .admin-withdraw-table thead th:nth-child(2),
.admin-withdraw-page .admin-withdraw-table tbody td:nth-child(2) {
  min-width: 130px;
}

.admin-withdraw-page .admin-withdraw-table thead th:nth-child(3),
.admin-withdraw-page .admin-withdraw-table tbody td:nth-child(3) {
  min-width: 190px;
}

.admin-withdraw-page .admin-withdraw-table thead th:nth-child(4),
.admin-withdraw-page .admin-withdraw-table tbody td:nth-child(4) {
  min-width: 250px;
}

.admin-withdraw-page .admin-withdraw-table thead th:nth-child(5),
.admin-withdraw-page .admin-withdraw-table tbody td:nth-child(5) {
  min-width: 210px;
}

.admin-withdraw-page .admin-withdraw-table thead .withdraw-action-cell {
  z-index: 5;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(24, 27, 50, 0.98);
  white-space: nowrap;
}

.admin-withdraw-page .admin-withdraw-table tbody .withdraw-action-cell {
  z-index: 3;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(18, 21, 40, 0.97);
  box-shadow: -10px 0 16px -12px rgba(0, 0, 0, 0.72);
}

body.admin-mode .admin-withdraw-page .admin-withdraw-table tbody tr:hover .withdraw-action-cell {
  background: rgba(27, 33, 61, 0.98);
}

.admin-withdraw-page .withdraw-page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 5px;
  color: #AFC7FF;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-withdraw-page .withdraw-page-kicker ion-icon {
  color: #8DB2FF;
  font-size: 14px;
}

.admin-withdraw-page .withdraw-page-limit {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(156, 184, 255, 0.2);
  border-radius: 999px;
  background: rgba(156, 184, 255, 0.07);
  color: #E2EBFF;
  padding: 6px 9px;
  font-size: 11px;
  line-height: 1;
}

.admin-withdraw-page .withdraw-page-limit ion-icon {
  color: #9CB9FF;
  font-size: 13px;
}

/* ===== WITHDRAW OVERVIEW GRID ===== */
.admin-withdraw-page .withdraw-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 16px;
}

.admin-withdraw-page .withdraw-overview-card {
  position: relative;
  min-width: 0;
  min-height: 110px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(148, 180, 255, 0.28);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(39, 48, 88, 0.92), rgba(20, 25, 48, 0.98)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.045);
  padding: 14px 13px;
}

.admin-withdraw-page .withdraw-overview-card::before {
  position: absolute;
  top: 13px;
  bottom: 13px;
  left: 0;
  width: 3px;
  border-radius: 0 999px 999px 0;
  background: #9DBBFF;
  content: "";
}

.admin-withdraw-page .withdraw-overview-card::after {
  position: absolute;
  z-index: -1;
  top: -42px;
  right: -37px;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(134, 169, 255, 0.26), transparent 68%);
  content: "";
}

.admin-withdraw-page .withdraw-overview-card.is-pending {
  border-color: rgba(245, 166, 35, 0.42);
  background: linear-gradient(135deg, rgba(86, 61, 28, 0.82), rgba(36, 30, 34, 0.98));
}

.admin-withdraw-page .withdraw-overview-card.is-pending::before {
  background: #FFD071;
}

.admin-withdraw-page .withdraw-overview-card.is-pending::after {
  background: radial-gradient(circle, rgba(245, 166, 35, 0.27), transparent 68%);
}

.admin-withdraw-page .withdraw-overview-card.is-approved {
  border-color: rgba(112, 163, 255, 0.46);
  background: linear-gradient(135deg, rgba(40, 66, 118, 0.88), rgba(21, 31, 59, 0.98));
}

.admin-withdraw-page .withdraw-overview-card.is-approved::before {
  background: #8EB7FF;
}

.admin-withdraw-page .withdraw-overview-card.is-paid {
  border-color: rgba(0, 230, 118, 0.4);
  background: linear-gradient(135deg, rgba(23, 91, 66, 0.82), rgba(20, 43, 47, 0.98));
}

.admin-withdraw-page .withdraw-overview-card.is-paid::before {
  background: #74F2B0;
}

.admin-withdraw-page .withdraw-overview-card.is-paid::after {
  background: radial-gradient(circle, rgba(0, 230, 118, 0.25), transparent 68%);
}

.admin-withdraw-page .withdraw-overview-card > * {
  position: relative;
  z-index: 1;
}

.admin-withdraw-page .withdraw-overview-icon {
  flex: 0 0 auto;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(183, 205, 255, 0.48);
  border-radius: 12px;
  background: rgba(147, 181, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  color: #E3ECFF;
}

.admin-withdraw-page .withdraw-overview-icon ion-icon {
  font-size: 19px;
}

.admin-withdraw-page .is-pending .withdraw-overview-icon {
  border-color: rgba(255, 211, 126, 0.54);
  background: rgba(245, 166, 35, 0.22);
  color: #FFE3A8;
}

.admin-withdraw-page .is-approved .withdraw-overview-icon {
  border-color: rgba(170, 204, 255, 0.54);
  background: rgba(103, 156, 255, 0.23);
  color: #E0EAFF;
}

.admin-withdraw-page .is-paid .withdraw-overview-icon {
  border-color: rgba(121, 255, 192, 0.52);
  background: rgba(0, 230, 118, 0.2);
  color: #C9FFE1;
}

.admin-withdraw-page .withdraw-overview-card div {
  min-width: 0;
  flex: 1;
}

/* Perbaikan warna teks untuk overview cards */
.admin-withdraw-page .withdraw-overview-card span:not(.withdraw-overview-icon) {
  color: #9EB5E6 !important;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  opacity: 0.9;
}

.admin-withdraw-page .withdraw-overview-card strong {
  display: block;
  margin: 5px 0 4px;
  color: #FFFFFF !important;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(23px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  text-shadow: 0 2px 9px rgba(0, 0, 0, 0.32);
}

.admin-withdraw-page .withdraw-overview-card small {
  display: block;
  color: #A8BDE5 !important;
  font-size: 11px;
  font-weight: 500;
  opacity: 0.85;
}

.admin-withdraw-page .withdraw-liquidity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 16px;
}

.admin-withdraw-page .withdraw-liquidity-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  min-height: 112px;
  overflow: hidden;
  border: 1px solid rgba(126, 159, 232, 0.2);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(28, 40, 75, 0.88), rgba(15, 23, 47, 0.78));
  padding: 14px;
  box-shadow: 0 10px 24px rgba(2, 9, 26, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.admin-withdraw-page .withdraw-liquidity-card::after {
  position: absolute;
  top: -34px;
  right: -34px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(103, 156, 255, 0.11);
  content: '';
}

.admin-withdraw-page .withdraw-liquidity-card.is-vault {
  border-color: rgba(0, 230, 118, 0.24);
}

.admin-withdraw-page .withdraw-liquidity-card.is-vault::after {
  background: rgba(0, 230, 118, 0.09);
}

.admin-withdraw-page .withdraw-liquidity-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(126, 159, 232, 0.23);
  border-radius: 13px;
  background: rgba(103, 156, 255, 0.12);
  color: #9EBBFF;
}

.admin-withdraw-page .withdraw-liquidity-icon ion-icon {
  font-size: 21px;
}

.admin-withdraw-page .is-vault .withdraw-liquidity-icon {
  border-color: rgba(0, 230, 118, 0.22);
  background: rgba(0, 230, 118, 0.09);
  color: #9BFFD0;
}

.admin-withdraw-page .withdraw-liquidity-content {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.admin-withdraw-page .withdraw-liquidity-content > span {
  display: block;
  overflow: hidden;
  color: #AFC2EA;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.admin-withdraw-page .withdraw-liquidity-content strong {
  display: block;
  margin: 4px 0 3px;
  overflow: hidden;
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(16px, 1.6vw, 21px);
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-withdraw-page .withdraw-liquidity-content strong.is-unavailable {
  color: #FFC2C2;
  font-size: 15px;
}

.admin-withdraw-page .withdraw-liquidity-content small {
  display: block;
  overflow: hidden;
  color: #91A8D5;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-withdraw-page .withdraw-current-payable {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: -4px 0 15px;
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.13), rgba(43, 34, 28, 0.18));
  padding: 13px 15px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.admin-withdraw-page .withdraw-current-payable.is-usdt {
  border-color: rgba(0, 230, 118, 0.28);
  background: linear-gradient(135deg, rgba(0, 230, 118, 0.1), rgba(16, 70, 54, 0.15));
}

.admin-withdraw-page .withdraw-current-payable-icon {
  display: inline-flex;
  flex: 0 0 46px;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: 13px;
  background: rgba(245, 166, 35, 0.12);
  color: #FFD58A;
}

.admin-withdraw-page .withdraw-current-payable.is-usdt .withdraw-current-payable-icon {
  border-color: rgba(0, 230, 118, 0.27);
  background: rgba(0, 230, 118, 0.1);
  color: #9BFFD0;
}

.admin-withdraw-page .withdraw-current-payable-icon ion-icon {
  font-size: 22px;
}

.admin-withdraw-page .withdraw-current-payable > div {
  min-width: 0;
}

.admin-withdraw-page .withdraw-current-payable > div > span,
.admin-withdraw-page .withdraw-current-payable small {
  display: block;
  color: #AFC2EA;
  font-size: 10px;
}

.admin-withdraw-page .withdraw-current-payable > div > span {
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.admin-withdraw-page .withdraw-current-payable strong {
  display: block;
  margin: 3px 0 2px;
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(19px, 2.1vw, 25px);
  line-height: 1.1;
}

@media (max-width: 991.98px) {
  .admin-withdraw-page .withdraw-liquidity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .admin-withdraw-page .withdraw-liquidity-grid {
    grid-template-columns: 1fr;
  }

  .admin-withdraw-page .withdraw-liquidity-card {
    min-height: 96px;
  }
}

/* ===== WITHDRAW STATUS TABS ===== */
.admin-withdraw-page .withdraw-status-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin: 0 -2px 15px;
  padding: 2px 2px 7px;
  scrollbar-width: thin;
  scrollbar-color: rgba(132, 168, 255, 0.56) transparent;
}

.admin-withdraw-page .withdraw-status-tabs::-webkit-scrollbar {
  height: 5px;
}

.admin-withdraw-page .withdraw-status-tabs::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(132, 168, 255, 0.56);
}

.admin-withdraw-page .withdraw-status-tab {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  min-height: 39px;
  border: 1px solid rgba(156, 184, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  color: #C8D9FF !important;
  padding: 7px 9px 7px 10px;
  font-size: 12px;
  font-weight: 600;
  transition: 0.18s ease;
}

.admin-withdraw-page .withdraw-status-tab:hover {
  border-color: rgba(156, 184, 255, 0.42);
  background: rgba(156, 184, 255, 0.09);
  color: #FFFFFF !important;
  transform: translateY(-1px);
}

.admin-withdraw-page .withdraw-status-tab ion-icon {
  color: #7A9CD9 !important;
  font-size: 16px;
}

.admin-withdraw-page .withdraw-status-tab b {
  min-width: 21px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: #FFFFFF !important;
  padding: 2px 6px;
  font-size: 10px;
  line-height: 1.15;
  text-align: center;
}

.admin-withdraw-page .withdraw-status-tab.is-active {
  border-color: rgba(103, 156, 255, 0.62);
  background: linear-gradient(145deg, rgba(103, 156, 255, 0.27), rgba(51, 63, 118, 0.24));
  box-shadow: 0 7px 16px rgba(0, 0, 0, 0.18);
  color: #FFFFFF !important;
}

.admin-withdraw-page .withdraw-status-tab.is-active b {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF !important;
}

.admin-withdraw-page .withdraw-status-tab.is-pending.is-active {
  border-color: rgba(245, 166, 35, 0.6);
  background: linear-gradient(145deg, rgba(245, 166, 35, 0.26), rgba(91, 63, 27, 0.2));
}

.admin-withdraw-page .withdraw-status-tab.is-pending.is-active ion-icon {
  color: #FFD58A !important;
}

.admin-withdraw-page .withdraw-status-tab.is-approved.is-active {
  border-color: rgba(103, 156, 255, 0.65);
}

.admin-withdraw-page .withdraw-status-tab.is-paid.is-active {
  border-color: rgba(0, 230, 118, 0.6);
  background: linear-gradient(145deg, rgba(0, 230, 118, 0.2), rgba(16, 91, 65, 0.2));
}

.admin-withdraw-page .withdraw-status-tab.is-paid.is-active ion-icon {
  color: #A8FFD2 !important;
}

.admin-withdraw-page .withdraw-status-tab.is-rejected.is-active,
.admin-withdraw-page .withdraw-status-tab.is-failed.is-active {
  border-color: rgba(255, 82, 82, 0.56);
  background: linear-gradient(145deg, rgba(255, 82, 82, 0.19), rgba(91, 37, 51, 0.22));
}

.admin-withdraw-page .withdraw-status-tab.is-rejected.is-active ion-icon,
.admin-withdraw-page .withdraw-status-tab.is-failed.is-active ion-icon {
  color: #FFAEAE !important;
}

.admin-withdraw-page .withdraw-destination-section {
  margin: 0 0 17px;
  padding: 13px;
  border: 1px solid rgba(126, 159, 232, 0.18);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(26, 39, 75, 0.76), rgba(15, 24, 49, 0.62));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.admin-withdraw-page .withdraw-destination-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 2px 10px;
}

.admin-withdraw-page .withdraw-destination-heading > div {
  display: grid;
  gap: 2px;
}

.admin-withdraw-page .withdraw-destination-heading strong {
  color: #F5F7FF;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}

.admin-withdraw-page .withdraw-destination-heading small {
  color: #9EB3DF;
  font-size: 10px;
}

.admin-withdraw-page .withdraw-destination-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.admin-withdraw-page .withdraw-destination-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border: 1px solid rgba(156, 184, 255, 0.2);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
  color: #C8D9FF !important;
  padding: 9px 13px;
  font-size: 12px;
  font-weight: 700;
  transition: 0.18s ease;
}

.admin-withdraw-page .withdraw-destination-tab:hover {
  border-color: rgba(156, 184, 255, 0.46);
  background: rgba(103, 156, 255, 0.1);
  color: #FFFFFF !important;
  transform: translateY(-1px);
}

.admin-withdraw-page .withdraw-destination-tab.is-active {
  border-color: rgba(103, 156, 255, 0.68);
  background: linear-gradient(145deg, rgba(103, 156, 255, 0.3), rgba(51, 63, 118, 0.26));
  color: #FFFFFF !important;
  box-shadow: 0 8px 18px rgba(3, 12, 34, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.admin-withdraw-page .withdraw-destination-tab.is-bank.is-active {
  border-color: rgba(103, 156, 255, 0.68);
}

.admin-withdraw-page .withdraw-destination-tab.is-usdt_bep20.is-active {
  border-color: rgba(0, 230, 118, 0.58);
  background: linear-gradient(145deg, rgba(0, 230, 118, 0.19), rgba(16, 91, 65, 0.2));
}

.admin-withdraw-page .withdraw-destination-tab ion-icon {
  color: #7EA7FF;
  font-size: 18px;
}

.admin-withdraw-page .withdraw-destination-tab.is-usdt_bep20.is-active ion-icon {
  color: #9BFFD0;
}

.admin-withdraw-page .withdraw-destination-tab b {
  min-width: 21px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  color: #FFFFFF;
  font-size: 10px;
  text-align: center;
}

.admin-withdraw-page .withdraw-table-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 9px;
}

.admin-withdraw-page .withdraw-table-head > div {
  display: grid;
  gap: 1px;
}

.admin-withdraw-page .withdraw-table-eyebrow {
  color: #D2DDF6;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.admin-withdraw-page .withdraw-table-head strong {
  color: #F5F7FF;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
}

.admin-withdraw-page .withdraw-table-head > span {
  color: #D0DCF5;
  font-size: 11px;
  text-align: right;
}

.admin-withdraw-page .admin-withdraw-table {
  min-width: 1210px !important;
}

.admin-withdraw-page .withdraw-request-cell,
.admin-withdraw-page .withdraw-user-cell,
.admin-withdraw-page .withdraw-method-cell,
.admin-withdraw-page .withdraw-amount-cell,
.admin-withdraw-page .withdraw-status-cell {
  line-height: 1.35;
}

/* ===== WITHDRAW TABLE STYLES ===== */
.admin-withdraw-page .withdraw-request-id {
  display: inline-block;
  max-width: 160px;
  overflow: hidden;
  border-radius: 8px;
  border-color: rgba(156, 184, 255, 0.2);
  background: rgba(156, 184, 255, 0.08);
  color: #C8D9FF !important;
  padding: 3px 6px;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-withdraw-page .withdraw-request-cell small {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 5px;
  color: #B0C4EA !important;
  font-size: 10px;
}

.admin-withdraw-page .withdraw-request-cell small ion-icon {
  color: #93B0F8;
  font-size: 12px;
}

.admin-withdraw-page .withdraw-user-cell {
  white-space: nowrap;
}

.admin-withdraw-page .withdraw-user-avatar {
  display: inline-flex;
  width: 27px;
  height: 27px;
  align-items: center;
  justify-content: center;
  margin-right: 7px;
  border: 1px solid rgba(156, 184, 255, 0.28);
  border-radius: 9px;
  background: rgba(156, 184, 255, 0.11);
  color: #C8D9FF !important;
  font-size: 11px;
  font-weight: 700;
  vertical-align: middle;
}

.admin-withdraw-page .withdraw-user-cell strong {
  color: #F2F5FF !important;
  font-size: 13px;
  font-weight: 600;
  vertical-align: middle;
}

.admin-withdraw-page .withdraw-method-name {
  display: block;
  margin-bottom: 3px;
  color: #EEF2FF !important;
  font-size: 12px;
  font-weight: 700;
}

.admin-withdraw-page .withdraw-method-cell small {
  display: block;
  color: #B8C9EC !important;
  font-size: 11px;
  line-height: 1.45;
}

.admin-withdraw-page .withdraw-amount-cell strong {
  display: block;
  color: #FFFFFF !important;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.admin-withdraw-page .withdraw-amount-cell small {
  display: block;
  margin-top: 2px;
  color: #B8C9EC !important;
  font-size: 11px;
}

.admin-withdraw-page .withdraw-status-cell > .badge-status {
  display: inline-flex;
  margin-bottom: 5px;
}

.admin-withdraw-page .withdraw-status-note {
  display: block;
  max-width: 190px;
  overflow: hidden;
  color: #B8C9EC !important;
  font-size: 11px;
  line-height: 1.42;
  text-overflow: ellipsis;
}

.admin-withdraw-page .withdraw-reference {
  display: block;
  max-width: 190px;
  overflow: hidden;
  margin-top: 5px;
  border-color: rgba(156, 184, 255, 0.19);
  background: rgba(156, 184, 255, 0.07);
  color: #99B8F0 !important;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ===== ACTION FORM ===== */
.admin-withdraw-page .withdraw-action-form {
  display: grid;
  gap: 7px;
  min-width: 246px;
}

.admin-withdraw-page .withdraw-action-inputs {
  display: grid;
  gap: 5px;
}

.admin-withdraw-page .withdraw-action-inputs .form-control {
  min-height: 30px;
  color: #EAF0FF !important;
  font-size: 11px;
}

.admin-withdraw-page .withdraw-action-inputs .form-control::placeholder {
  color: #7A8BB0 !important;
}

.admin-withdraw-page .withdraw-primary-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.admin-withdraw-page .withdraw-primary-actions .btn,
.admin-withdraw-page .withdraw-manual-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 30px;
  font-size: 11px;
}

.admin-withdraw-page .withdraw-primary-actions ion-icon {
  font-size: 14px;
}

.admin-withdraw-page .withdraw-manual-actions {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-top: 6px;
}

.admin-withdraw-page .withdraw-manual-actions summary {
  width: max-content;
  cursor: pointer;
  color: #B7C6E8;
  font-size: 10px;
  list-style: none;
}

.admin-withdraw-page .withdraw-manual-actions summary::-webkit-details-marker {
  display: none;
}

.admin-withdraw-page .withdraw-manual-actions summary::after {
  margin-left: 5px;
  content: "+";
  color: #98B8FF;
  font-size: 13px;
  font-weight: 700;
}

.admin-withdraw-page .withdraw-manual-actions[open] summary::after {
  content: "-";
}

.admin-withdraw-page .withdraw-manual-actions > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 6px;
}

.admin-withdraw-page .withdraw-action-locked {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #B8C9EC !important;
  padding: 6px 9px;
  font-size: 10px;
}

.admin-withdraw-page .withdraw-action-locked ion-icon {
  color: #7A8BB0 !important;
  font-size: 13px;
}

/* ===== EMPTY STATE ===== */
.admin-withdraw-page .withdraw-empty-state {
  height: 220px;
  background: rgba(255, 255, 255, 0.015) !important;
  color: #B8C9EC !important;
  text-align: center;
  vertical-align: middle !important;
}

.admin-withdraw-page .withdraw-empty-state ion-icon {
  margin-bottom: 8px;
  color: #7A9CD9 !important;
  font-size: 25px;
}

.admin-withdraw-page .withdraw-empty-state strong {
  color: #E8F0FF !important;
  font-size: 13px;
}

.admin-withdraw-page .withdraw-empty-state span {
  margin-top: 4px;
  color: #A8BDE5 !important;
  font-size: 11px;
}

/* ===== BADGE STATUS ===== */
.badge-status {
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
}

.badge-status.Pending,
.badge-status.pending {
  color: #FAD58C !important;
  background: rgba(245, 166, 35, 0.16);
  border: 1px solid rgba(245, 166, 35, 0.3);
}

.badge-status.Approved,
.badge-status.approved,
.badge-status.Processing,
.badge-status.processing {
  color: #BFD6FF !important;
  background: rgba(103, 156, 255, 0.16);
  border-color: rgba(103, 156, 255, 0.34);
}

.badge-status.Paid,
.badge-status.paid,
.badge-status.Success,
.badge-status.success {
  color: #8BFFC4 !important;
  background: rgba(0, 230, 118, 0.14);
  border: 1px solid rgba(0, 230, 118, 0.3);
}

.badge-status.Rejected,
.badge-status.rejected,
.badge-status.Failed,
.badge-status.failed {
  color: #FFB0B0 !important;
  background: rgba(255, 82, 82, 0.16);
  border: 1px solid rgba(255, 82, 82, 0.3);
}

/* ===== BUTTON OVERRIDES FOR ADMIN WITHDRAW ===== */
.admin-withdraw-page .btn-outline-success {
  border-color: rgba(0, 230, 118, 0.52) !important;
  color: #8BFFC4 !important;
}

.admin-withdraw-page .btn-outline-success:hover {
  background: rgba(0, 230, 118, 0.16) !important;
  color: #B8FFDF !important;
}

.admin-withdraw-page .btn-outline-danger {
  border-color: rgba(255, 82, 82, 0.52) !important;
  color: #FFB0B0 !important;
}

.admin-withdraw-page .btn-outline-danger:hover {
  background: rgba(255, 82, 82, 0.18) !important;
  color: #FFD4D4 !important;
}

.admin-withdraw-page .btn-outline-warning {
  border-color: rgba(245, 166, 35, 0.46) !important;
  color: #FAD58C !important;
}

.admin-withdraw-page .btn-outline-warning:hover {
  background: rgba(245, 166, 35, 0.16) !important;
  color: #FFE8C0 !important;
}

.admin-withdraw-page .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.26) !important;
  color: #C8D9FF !important;
}

.admin-withdraw-page .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.14) !important;
  color: #FFFFFF !important;
}

body.admin-mode .admin-withdraw-page .admin-card-sub,
body.admin-mode .admin-withdraw-page .text-secondary,
body.admin-mode .admin-withdraw-page small.text-secondary {
  color: #B8C9EC !important;
  opacity: 1;
}

body.admin-mode .admin-withdraw-page .table-oro > :not(caption) > * > * {
  color: #E8F0FF !important;
}

body.admin-mode .admin-withdraw-page .table-oro thead th {
  color: #B0C8F0 !important;
}

/* ===== DEPOSIT PAGE ===== */
.admin-deposit-page .admin-deposit-table {
  min-width: 1140px !important;
  width: max-content !important;
  table-layout: auto;
}

.admin-deposit-page .admin-deposit-table thead th,
.admin-deposit-page .admin-deposit-table tbody td {
  vertical-align: top;
}

.admin-deposit-page .admin-deposit-table thead th {
  white-space: nowrap;
}

.admin-deposit-page .admin-deposit-table thead th:nth-child(1),
.admin-deposit-page .admin-deposit-table tbody td:nth-child(1) {
  min-width: 185px;
}

.admin-deposit-page .admin-deposit-table thead th:nth-child(2),
.admin-deposit-page .admin-deposit-table tbody td:nth-child(2) {
  min-width: 130px;
}

.admin-deposit-page .admin-deposit-table thead th:nth-child(3),
.admin-deposit-page .admin-deposit-table tbody td:nth-child(3) {
  min-width: 180px;
}

.admin-deposit-page .admin-deposit-table thead th:nth-child(4),
.admin-deposit-page .admin-deposit-table tbody td:nth-child(4) {
  min-width: 210px;
}

.admin-deposit-page .admin-deposit-table thead th:nth-child(5),
.admin-deposit-page .admin-deposit-table tbody td:nth-child(5) {
  min-width: 140px;
}

.admin-deposit-page .admin-deposit-table thead th:nth-child(6),
.admin-deposit-page .admin-deposit-table tbody td:nth-child(6) {
  min-width: 220px;
}

.admin-deposit-page .admin-deposit-table thead .deposit-action-cell {
  z-index: 5;
  min-width: 220px;
  position: sticky;
  right: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(24, 27, 50, 0.98);
  white-space: nowrap;
}

.admin-deposit-page .admin-deposit-table tbody .deposit-action-cell {
  z-index: 3;
  min-width: 220px;
  position: sticky;
  right: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(18, 21, 40, 0.97);
  box-shadow: -10px 0 16px -12px rgba(0, 0, 0, 0.72);
}

body.admin-mode .admin-deposit-page .admin-deposit-table tbody tr:hover .deposit-action-cell {
  background: rgba(27, 33, 61, 0.98);
}

.admin-deposit-page .deposit-tx-cell {
  line-height: 1.35;
}

.admin-deposit-page .deposit-tx-hash {
  display: inline-block;
  max-width: 210px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-radius: 999px;
  border: 1px solid rgba(157, 183, 255, 0.28);
  background: rgba(157, 183, 255, 0.08);
  color: #DCE7FF;
  padding: 3px 8px;
  font-size: 12px;
}

/* ===== MEMBERS PAGE ===== */
.admin-members-page .admin-members-table {
  min-width: 1260px !important;
  width: max-content !important;
  table-layout: auto;
}

.admin-members-page .admin-members-table thead th,
.admin-members-page .admin-members-table tbody td {
  vertical-align: top;
}

.admin-members-page .admin-members-table thead th {
  white-space: nowrap;
}

.admin-members-page .admin-members-table thead th:nth-child(1),
.admin-members-page .admin-members-table tbody td:nth-child(1) {
  min-width: 95px;
}

.admin-members-page .admin-members-table thead th:nth-child(2),
.admin-members-page .admin-members-table tbody td:nth-child(2) {
  min-width: 230px;
}

.admin-members-page .admin-members-table thead th:nth-child(3),
.admin-members-page .admin-members-table tbody td:nth-child(3) {
  min-width: 170px;
}

.admin-members-page .admin-members-table thead th:nth-child(4),
.admin-members-page .admin-members-table tbody td:nth-child(4) {
  min-width: 180px;
}

.admin-members-page .admin-members-table thead th:nth-child(5),
.admin-members-page .admin-members-table tbody td:nth-child(5) {
  min-width: 150px;
}

.admin-members-page .admin-members-table thead th:nth-child(6),
.admin-members-page .admin-members-table tbody td:nth-child(6) {
  min-width: 120px;
}

.admin-members-page .admin-members-table thead th:nth-child(7),
.admin-members-page .admin-members-table tbody td:nth-child(7) {
  min-width: 420px;
}

.admin-members-page .admin-members-table .member-action-cell .admin-inline-form {
  flex-wrap: nowrap;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
  .admin-withdraw-page .withdraw-scroll-hint,
  .admin-deposit-page .withdraw-scroll-hint,
  .admin-members-page .withdraw-scroll-hint {
    display: inline-flex;
  }

  .admin-withdraw-page .admin-table-wrap.admin-table-scroll-x,
  .admin-deposit-page .admin-table-wrap.admin-table-scroll-x,
  .admin-members-page .admin-table-wrap.admin-table-scroll-x {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
  }

  .admin-withdraw-page .admin-withdraw-table {
    min-width: 1180px !important;
    width: max-content !important;
  }

  .admin-withdraw-page .admin-withdraw-table thead {
    display: table-header-group;
  }

  .admin-withdraw-page .admin-withdraw-table tbody {
    display: table-row-group;
  }

  .admin-withdraw-page .admin-withdraw-table tbody tr {
    display: table-row;
  }

  .admin-withdraw-page .admin-withdraw-table tbody td {
    display: table-cell;
    width: auto;
    padding: 10px 9px;
  }

  .admin-withdraw-page .admin-withdraw-table .withdraw-action-cell {
    position: static;
    right: auto;
    min-width: 260px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
    background: transparent;
  }

  .admin-withdraw-page .withdraw-action-form {
    min-width: 240px;
    width: 240px;
  }

  .admin-withdraw-page .admin-inline-form {
    display: flex !important;
    flex-wrap: nowrap;
    gap: 6px;
  }

  .admin-withdraw-page .admin-inline-form .btn {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
  }

  .admin-deposit-page .admin-deposit-table {
    min-width: 1140px !important;
    width: max-content !important;
  }

  .admin-deposit-page .admin-deposit-table .deposit-action-cell {
    position: static;
    right: auto;
    min-width: 220px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
    background: transparent;
  }

  .admin-deposit-page .admin-inline-form {
    display: flex !important;
    flex-wrap: nowrap;
    gap: 6px;
  }

  .admin-deposit-page .admin-inline-form .btn {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
  }

  .admin-members-page .admin-members-table {
    min-width: 1260px !important;
    width: max-content !important;
  }

  .admin-members-page .member-action-cell .admin-inline-form {
    display: flex !important;
    flex-wrap: nowrap;
    gap: 6px;
    min-width: 390px;
  }

  .admin-members-page .member-action-cell .admin-inline-form .btn {
    flex: 0 0 auto;
  }

  .admin-withdraw-page .admin-card-head {
    gap: 8px;
  }

  .admin-withdraw-page .withdraw-page-limit {
    font-size: 10px;
  }

  /* Responsive overview grid */
  .admin-withdraw-page .withdraw-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin: 16px 0 14px;
  }

  .admin-withdraw-page .withdraw-overview-card {
    min-height: 104px;
    gap: 8px;
    border-radius: 14px;
    padding: 11px 10px;
  }

  .admin-withdraw-page .withdraw-overview-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .admin-withdraw-page .withdraw-overview-icon ion-icon {
    font-size: 16px;
  }

  .admin-withdraw-page .withdraw-overview-card strong {
    margin-top: 4px;
    font-size: 21px;
  }

  .admin-withdraw-page .withdraw-status-tabs {
    margin-bottom: 12px;
  }

  .admin-withdraw-page .withdraw-status-tab {
    min-height: 37px;
    border-radius: 11px;
    padding: 6px 8px;
    font-size: 11px;
  }

  .admin-withdraw-page .withdraw-table-head {
    margin-bottom: 7px;
  }

  .admin-withdraw-page .withdraw-table-head > span {
    font-size: 10px;
  }

  .admin-withdraw-page .admin-withdraw-table {
    min-width: 1210px !important;
  }

  .admin-withdraw-page .withdraw-action-form {
    min-width: 246px;
    width: 246px;
  }
}

@media (max-width: 480px) {
  .admin-withdraw-page .withdraw-overview-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .admin-withdraw-page .withdraw-overview-card {
    min-height: 90px;
    padding: 10px 9px;
  }

  .admin-withdraw-page .withdraw-overview-card strong {
    font-size: 18px;
  }

  .app-main {
    padding: 14px 14px 96px;
  }

  .admin-main {
    padding-left: 14px;
    padding-right: 14px;
  }

  .admin-shortcuts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reward-progress-grid,
  .reward-kpi-grid,
  .reward-member-metrics {
    grid-template-columns: 1fr;
  }

  .package-grid,
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .landing-subtitle {
    max-width: 100%;
  }

  .landing-cta-row {
    grid-template-columns: 1fr;
  }

  .balance-strip {
    grid-template-columns: 1fr;
  }

  .selected-package-main,
  .staking-order-metrics {
    grid-template-columns: 1fr;
  }

  .presale-stage-metrics {
    grid-template-columns: 1fr;
  }

  .presale-tab-nav {
    grid-template-columns: 1fr;
  }

  .admin-staking-kpi-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .admin-card-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-card-sub {
    font-size: 11px;
  }

  .admin-filter-row {
    padding: 8px;
  }

  .admin-inline-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .admin-presale-tabs {
    grid-template-columns: 1fr;
  }

  .admin-inline-form .form-control,
  .admin-inline-form .form-select {
    min-width: 0;
  }

  body.admin-mode .app-brand-sub,
  body.admin-mode .live-badge {
    display: none;
  }

  body.admin-mode .app-topbar {
    padding: 10px 12px;
  }

  body.admin-mode .app-brand-title {
    font-size: 14px;
  }
}

@media (min-width: 481px) and (max-width: 719px) {
  .admin-shortcuts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .admin-staking-kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 720px) {
  .app-main {
    padding-left: 20px;
    padding-right: 20px;
  }

  .admin-shortcuts {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .mobile-dock {
    position: sticky;
    bottom: 0;
    margin: 12px auto 0;
  }

  .app-main {
    padding-bottom: 20px;
  }
}

@media (max-width: 991px) {
  body.admin-mode .mobile-dock {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-inline: 10px;
  }

  body.admin-mode .mobile-dock::-webkit-scrollbar {
    display: none;
  }

  body.admin-mode .mobile-dock-item {
    flex: 0 0 82px;
    min-height: 56px;
  }

  body.admin-mode .table-oro {
    min-width: 740px;
  }
}

/* ===== ADMIN INLINE FORM ===== */
.admin-inline-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.admin-inline-form .form-control,
.admin-inline-form .form-select {
  flex: 1 1 120px;
  min-width: 120px;
}

.admin-inline-form .btn {
  white-space: nowrap;
}

/* ===== ADMIN PRESALE ===== */
.admin-presale-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.admin-presale-tabs .nav-link {
  border-radius: 12px;
  border: 1px solid rgba(103, 156, 255, 0.24);
  background: rgba(255, 255, 255, 0.03);
  color: #E5EAFB;
  min-height: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 10px;
}

.admin-presale-tabs .nav-link ion-icon {
  font-size: 16px;
}

.admin-presale-tabs .nav-link.active {
  border-color: rgba(245, 166, 35, 0.54);
  background: linear-gradient(145deg, rgba(245, 166, 35, 0.24), rgba(36, 39, 66, 0.95));
  color: #FFFFFF;
}

.admin-presale-form .form-control,
.admin-presale-form .form-select {
  min-height: 38px;
}

.admin-presale-page .table-oro tbody td {
  vertical-align: top;
}

/* ===== ADMIN LOG ===== */
.admin-log-stack {
  display: grid;
  gap: 8px;
}

.admin-log-item {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: 10px;
}

.admin-log-item .meta {
  font-size: 11px;
  color: #AEBBDD;
}

.admin-rule-list {
  margin: 0;
  padding-left: 16px;
  display: grid;
  gap: 6px;
  color: #E3E9FF;
}

.admin-rule-list li {
  font-size: 12px;
  line-height: 1.35;
}

/* ===== ADMIN STAT BOX ===== */
body.admin-mode .stat-box {
  border-radius: 16px;
  border: 1px solid rgba(103, 156, 255, 0.34);
  min-height: 98px;
  display: grid;
  align-content: center;
  gap: 2px;
}

body.admin-mode .table-oro tbody td {
  font-size: 13px;
}

body.admin-mode .table-oro .small {
  color: #C6D1F0 !important;
}

/* ===== ADMIN STAKING ===== */
.admin-staking-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.admin-staking-kpi {
  border-radius: 14px;
  border: 1px solid rgba(103, 156, 255, 0.24);
  background:
    radial-gradient(circle at 88% 0, rgba(103, 156, 255, 0.14), transparent 42%),
    rgba(255, 255, 255, 0.03);
  padding: 12px;
}

.admin-staking-kpi .label {
  font-size: 11px;
  color: #C3D1F7;
}

.admin-staking-kpi .value {
  margin-top: 5px;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
}

.admin-staking-page .section-note {
  color: #BDCBF3 !important;
}

.admin-staking-page .table-oro tbody td {
  vertical-align: top;
}

.admin-staking-page .input-group-text {
  min-width: 42px;
  justify-content: center;
}

.admin-staking-source-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(245, 166, 35, 0.42);
  background: rgba(245, 166, 35, 0.16);
  color: #FFE7BB;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
}

.admin-staking-page .btn.btn-oro {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ===== TOAST ===== */
.oro-toast-container {
  z-index: 2000;
}

.oro-toast {
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(8px);
}

/* ===== AUTH ===== */
.auth-shell {
  width: min(100%, 620px);
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.auth-logo-wrap {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 4px;
  padding-top: 4px;
}

.auth-logo-large {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 2px solid rgba(245, 166, 35, 0.5);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.42);
  object-fit: cover;
}

.auth-logo-title {
  margin-top: 2px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #FFFFFF;
}

.auth-logo-sub {
  font-size: 12px;
  color: #D7DAEB;
}

.auth-card {
  border-color: rgba(245, 166, 35, 0.3);
  background:
    radial-gradient(circle at 97% 8%, rgba(245, 166, 35, 0.12), transparent 44%),
    linear-gradient(160deg, rgba(30, 30, 50, 0.98), rgba(22, 22, 38, 0.98));
}

.admin-auth-shell {
  gap: 12px;
}

.admin-auth-badge-line {
  margin-top: 2px;
  display: inline-flex;
  justify-content: center;
}

.admin-auth-card {
  border-color: rgba(103, 156, 255, 0.28);
  background:
    radial-gradient(circle at 95% 8%, rgba(103, 156, 255, 0.2), transparent 44%),
    radial-gradient(circle at 10% 100%, rgba(245, 166, 35, 0.12), transparent 42%),
    linear-gradient(160deg, rgba(28, 31, 58, 0.98), rgba(18, 20, 38, 0.98));
}

.admin-login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.admin-login-btn ion-icon {
  font-size: 16px;
}

.auth-form-sub {
  font-size: 12px;
  color: #D4D8EC;
}

.auth-switch-line small {
  color: #C9CDDF;
}

/* ===== LANDING ===== */
.landing-app {
  display: grid;
  gap: 14px;
}

.landing-hero {
  position: relative;
  overflow: hidden;
  padding: 18px 16px;
  border-radius: 20px;
  border: 1px solid rgba(245, 166, 35, 0.34);
  background:
    radial-gradient(circle at 86% 12%, rgba(245, 166, 35, 0.2), transparent 40%),
    radial-gradient(circle at 8% 88%, rgba(92, 134, 255, 0.12), transparent 36%),
    linear-gradient(150deg, rgba(245, 166, 35, 0.14), rgba(30, 30, 50, 0.96) 46%, rgba(15, 15, 28, 0.98));
}

.landing-hero::before {
  content: '';
  position: absolute;
  top: -64px;
  right: -58px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.24), transparent 66%);
  pointer-events: none;
}

.landing-hero-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.landing-title {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  display: grid;
  gap: 2px;
  line-height: 1.05;
}

.landing-title-mark {
  font-size: clamp(34px, 10vw, 46px);
  font-weight: 700;
  letter-spacing: 0.7px;
  color: #FFD78E;
  text-shadow: 0 6px 18px rgba(245, 166, 35, 0.28);
}

.landing-title > span:last-child {
  font-size: clamp(22px, 6vw, 30px);
  color: #FFFFFF;
}

.landing-subtitle {
  position: relative;
  z-index: 1;
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: #E7EAF8;
  max-width: 92%;
}

.landing-range-pill {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  font-size: clamp(17px, 5.4vw, 22px);
  padding-inline: 14px;
}

.landing-hero-note {
  position: relative;
  z-index: 1;
  font-size: 12px;
  color: #CDD2EC;
}

.landing-cta-row {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.landing-cta-btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.landing-cta-btn ion-icon {
  font-size: 17px;
}

.landing-feature-wrap {
  border-color: rgba(245, 166, 35, 0.25);
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 166, 35, 0.09), transparent 38%),
    linear-gradient(160deg, rgba(30, 30, 50, 0.98), rgba(22, 22, 38, 0.98));
}

.landing-feature-grid .feature-item {
  min-height: 102px;
}

/* ===== PASSWORD INPUT ===== */
.password-input-group .form-control {
  border-radius: 12px 0 0 12px !important;
}

.password-toggle-btn {
  min-width: 46px;
  border-radius: 0 12px 12px 0 !important;
  border-left: 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.password-toggle-btn ion-icon {
  font-size: 18px;
}

/* ===== SCREEN STACK ===== */
.screen-stack {
  display: grid;
  gap: 14px;
}

.app-card,
.section-card,
.card-glass {
  border-radius: 16px;
  border: 1px solid rgba(245, 166, 35, 0.22);
  background: linear-gradient(160deg, rgba(30, 30, 50, 0.98), rgba(22, 22, 38, 0.98));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
}

.section-card {
  padding: 14px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.section-title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.section-note {
  font-size: 11px;
  color: var(--text-secondary);
}

/* ===== BANNER SLIDER ===== */
.oro-banner-slider {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(245, 166, 35, 0.3);
  background: radial-gradient(circle at 12% 20%, rgba(245, 166, 35, 0.26), transparent 40%), #151527;
}

.oro-banner-slider .carousel-item {
  min-height: 188px;
  padding: 18px 16px 30px;
  background:
    radial-gradient(circle at 84% 16%, rgba(245, 166, 35, 0.16), transparent 40%),
    linear-gradient(135deg, rgba(245, 166, 35, 0.14), rgba(30, 30, 50, 0.96) 44%, rgba(15, 15, 28, 0.97)),
    var(--banner-image, none);
  background-size: cover, cover, cover;
  background-position: center;
  background-repeat: no-repeat;
}

.oro-banner-slider .carousel-item:nth-child(2) {
  background:
    radial-gradient(circle at 8% 80%, rgba(0, 230, 118, 0.18), transparent 44%),
    linear-gradient(140deg, rgba(245, 166, 35, 0.12), rgba(30, 30, 50, 0.96) 48%, rgba(14, 14, 26, 0.98)),
    var(--banner-image, none);
  background-size: cover, cover, cover;
  background-position: center;
  background-repeat: no-repeat;
}

.oro-banner-slider .carousel-item:nth-child(3) {
  background:
    radial-gradient(circle at 88% 70%, rgba(103, 156, 255, 0.15), transparent 45%),
    linear-gradient(140deg, rgba(245, 166, 35, 0.16), rgba(30, 30, 50, 0.96) 50%, rgba(14, 14, 26, 0.98)),
    var(--banner-image, none);
  background-size: cover, cover, cover;
  background-position: center;
  background-repeat: no-repeat;
}

.banner-slide-content {
  display: grid;
  gap: 10px;
}

.banner-icon {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 13, 26, 0.48);
  border: 1px solid rgba(245, 166, 35, 0.42);
  color: #FFD58A;
}

.banner-icon ion-icon {
  font-size: 19px;
}

.banner-title {
  margin-top: 2px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(18px, 4.8vw, 24px);
  font-weight: 700;
  line-height: 1.12;
  color: #FFFFFF;
}

.banner-desc {
  font-size: 13px;
  line-height: 1.35;
  color: #ECECF6;
  max-width: 92%;
}

.banner-btn {
  width: fit-content;
  min-width: 124px;
}

.oro-banner-slider .carousel-indicators {
  margin-bottom: 7px;
}

.oro-banner-slider .carousel-indicators [data-bs-target] {
  width: 18px;
  height: 4px;
  border-radius: 999px;
  border: 0;
  background-color: rgba(255, 255, 255, 0.36);
}

.oro-banner-slider .carousel-indicators .active {
  width: 24px;
  background-color: #F5A623;
}

/* ===== HERO WALLET ===== */
.hero-wallet {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(245, 166, 35, 0.45);
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.4), rgba(30, 30, 50, 0.93) 46%, rgba(20, 20, 34, 0.95));
  padding: 16px;
}

.hero-wallet::before {
  content: '';
  position: absolute;
  top: 0;
  left: -140px;
  width: 120px;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 3.4s infinite;
}

@keyframes shimmer {
  0% {
    left: -140px;
  }
  100% {
    left: calc(100% + 120px);
  }
}

.hero-eyebrow {
  font-size: 11px;
  color: #FFE2A7;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.hero-money {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(30px, 8vw, 36px);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.05;
  margin-top: 6px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-cta-btn {
  flex: 1;
  min-width: 120px;
  text-align: center;
}

.hero-mini {
  background: rgba(13, 13, 26, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  padding: 8px;
}

.hero-mini .value {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
}

.hero-mini .label {
  margin-top: 2px;
  font-size: 10px;
  color: var(--text-secondary);
}

.highlight-pill {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(245, 166, 35, 0.44);
  background: rgba(245, 166, 35, 0.14);
  font-family: 'Poppins', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #FFF3D8;
}

.highlight-pill ion-icon {
  font-size: 18px;
}

/* ===== DEPOSIT ===== */
.deposit-tab-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.deposit-tab-nav .nav-link {
  border-radius: 12px;
  border: 1px solid rgba(245, 166, 35, 0.22);
  background: rgba(255, 255, 255, 0.03);
  color: #E8E8F4;
  min-height: 52px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px;
}

.deposit-tab-nav .nav-link ion-icon {
  font-size: 16px;
}

.deposit-tab-nav .nav-link.active {
  background: rgba(245, 166, 35, 0.18);
  border-color: rgba(245, 166, 35, 0.48);
  color: #FFF3DB;
}

/* ===== PRESALE ===== */
.presale-data-card {
  border-color: rgba(245, 166, 35, 0.3);
  background:
    radial-gradient(circle at 100% 0, rgba(245, 166, 35, 0.14), transparent 42%),
    linear-gradient(160deg, rgba(29, 29, 50, 0.98), rgba(20, 20, 34, 0.98));
}

.presale-tab-nav {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.presale-tab-nav .nav-link {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(245, 166, 35, 0.22);
  background: rgba(255, 255, 255, 0.03);
  color: #E8EAF8;
  min-height: 60px;
  padding: 8px 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-align: left;
  transition: all 0.2s ease;
}

.presale-tab-nav .nav-link ion-icon {
  font-size: 19px;
  color: #FFD58A;
}

.presale-tab-nav .nav-link .tab-copy {
  display: grid;
  gap: 2px;
  line-height: 1.1;
}

.presale-tab-nav .nav-link .tab-copy strong {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #F6F7FF;
}

.presale-tab-nav .nav-link .tab-copy small {
  font-size: 10px;
  color: #BFC4DE;
}

.presale-tab-nav .nav-link.active {
  border-color: rgba(245, 166, 35, 0.58);
  background: linear-gradient(145deg, rgba(245, 166, 35, 0.26), rgba(31, 31, 53, 0.96));
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.32);
}

.presale-tab-nav .nav-link.active .tab-copy strong,
.presale-tab-nav .nav-link.active .tab-copy small {
  color: #FFFFFF;
}

.presale-tab-content {
  margin-top: 12px;
}

.presale-tab-content .tab-pane {
  outline: 0;
}

.presale-stage-grid,
.presale-history-grid {
  display: grid;
  gap: 10px;
}

.presale-stage-card {
  border-radius: 14px;
  border: 1px solid rgba(245, 166, 35, 0.22);
  background:
    radial-gradient(circle at 100% 0, rgba(245, 166, 35, 0.16), transparent 40%),
    rgba(255, 255, 255, 0.03);
  padding: 11px;
}

.presale-stage-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.presale-stage-title {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.2;
}

.presale-stage-price {
  margin-top: 3px;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #FFD58A;
  line-height: 1;
}

.presale-stage-metrics {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.presale-stage-metric {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 11, 21, 0.36);
  padding: 7px;
}

.presale-stage-metric .label {
  font-size: 10px;
  color: #B9BFDA;
}

.presale-stage-metric strong {
  margin-top: 3px;
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
}

.presale-stage-chip {
  margin-top: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #D5DAEE;
  padding: 5px 9px;
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.presale-stage-chip ion-icon {
  font-size: 13px;
  color: #FFD58A;
}

.presale-stage-progress-head {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 10px;
  color: #C2C8E2;
}

.presale-stage-progress-head strong {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  color: #FFE2A8;
}

.presale-history-card {
  border-radius: 14px;
  border: 1px solid rgba(245, 166, 35, 0.2);
  background:
    radial-gradient(circle at 100% 0, rgba(245, 166, 35, 0.14), transparent 43%),
    rgba(255, 255, 255, 0.03);
  padding: 11px;
}

.presale-history-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}

.presale-history-id {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.2;
}

.presale-history-meta {
  margin-top: 3px;
  font-size: 11px;
  color: #C7CDE7;
}

.presale-history-chips {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.presale-history-chip {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #DEE2F2;
  padding: 4px 9px;
  font-size: 10px;
}

.presale-history-chip.is-gold {
  border-color: rgba(245, 166, 35, 0.4);
  background: rgba(245, 166, 35, 0.16);
  color: #FFE4B2;
}

.presale-history-chip.is-green {
  border-color: rgba(0, 230, 118, 0.35);
  background: rgba(0, 230, 118, 0.13);
  color: #C5FFE4;
}

.presale-history-line {
  margin-top: 8px;
  font-size: 11px;
  color: #D4D8EB;
  display: flex;
  align-items: center;
  gap: 5px;
  word-break: break-word;
}

.presale-history-line ion-icon {
  flex: 0 0 auto;
  font-size: 13px;
  color: #FFD58A;
}

.qr-box {
  border-radius: 12px;
  border: 1px solid rgba(245, 166, 35, 0.26);
  background: rgba(255, 255, 255, 0.02);
  padding: 10px;
}

.qr-box img {
  max-height: 260px;
}

/* ===== QUICK GRID ===== */
.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.quick-action {
  border-radius: 14px;
  padding: 10px;
  border: 1px solid rgba(245, 166, 35, 0.2);
  background: rgba(255, 255, 255, 0.03);
  color: #F7F7FF;
  display: grid;
  gap: 6px;
  justify-items: start;
  min-height: 82px;
  transition: all 0.2s ease;
}

.quick-action ion-icon {
  font-size: 18px;
  color: var(--primary);
}

.quick-action .quick-label {
  font-size: 12px;
  line-height: 1.25;
  color: #E8E8F4;
}

.quick-action:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 166, 35, 0.5);
}

/* ===== PACKAGE GRID ===== */
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.package-card {
  border-radius: 16px;
  border: 1px solid rgba(245, 166, 35, 0.3);
  background: #1E1E32;
  padding: 12px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.package-card:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 166, 35, 0.52);
}

.package-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.package-days {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.package-days span {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  font-weight: 500;
}

.package-profit {
  margin-top: 10px;
  font-size: 22px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.package-meta {
  margin-top: 6px;
  font-size: 11px;
  color: var(--text-secondary);
}

.package-cta {
  margin-top: 10px;
}

.staking-package-card {
  position: relative;
  overflow: hidden;
}

.staking-package-card::before {
  content: "";
  position: absolute;
  inset: auto -30% -55% -30%;
  height: 90px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.3), transparent 62%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.staking-package-card.is-selected {
  border-color: rgba(245, 166, 35, 0.72);
  background: linear-gradient(160deg, rgba(245, 166, 35, 0.2), rgba(30, 30, 50, 0.96));
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}

.staking-package-card.is-selected::before {
  opacity: 1;
}

.package-select-btn {
  min-height: 34px;
}

.package-select-btn.is-selected {
  background: linear-gradient(120deg, #F5A623, #FFC862);
  box-shadow: 0 7px 18px rgba(245, 166, 35, 0.38);
}

.staking-package-helper {
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px dashed rgba(245, 166, 35, 0.34);
  background: rgba(245, 166, 35, 0.08);
}

.selected-package-card {
  border-radius: 16px;
  border: 1px solid rgba(245, 166, 35, 0.32);
  background:
    radial-gradient(circle at 100% 0, rgba(245, 166, 35, 0.2), transparent 45%),
    linear-gradient(160deg, rgba(27, 27, 46, 0.98), rgba(21, 21, 37, 0.98));
  padding: 12px;
}

.selected-package-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.selected-package-label {
  font-size: 11px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #FFE6B6;
}

.selected-package-main {
  margin-top: 9px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.selected-package-days,
.selected-package-rate {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 9px;
}

.selected-package-days span,
.selected-package-rate strong {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  color: #FFF8EA;
}

.selected-package-days small,
.selected-package-rate small {
  margin-top: 4px;
  display: block;
  font-size: 10px;
  color: #D1D5E8;
}

.selected-package-desc {
  margin-top: 8px;
  font-size: 11px;
  color: #D8DBED;
}

/* ===== BADGE ORO ===== */
.badge-oro {
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border: 1px solid rgba(245, 166, 35, 0.35);
  background: rgba(245, 166, 35, 0.18);
  color: #FFDFA5;
}

.badge-oro.green {
  border-color: rgba(0, 230, 118, 0.4);
  background: rgba(0, 230, 118, 0.14);
  color: #9BFFD0;
}

.badge-oro.blue {
  border-color: rgba(103, 156, 255, 0.45);
  background: rgba(103, 156, 255, 0.14);
  color: #C5DBFF;
}

/* ===== FEATURE GRID ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.feature-item {
  border-radius: 14px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.feature-item ion-icon {
  font-size: 20px;
  color: var(--primary);
  margin-top: 2px;
}

.feature-title {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
}

.feature-desc {
  margin-top: 2px;
  font-size: 11px;
  color: var(--text-secondary);
}

/* ===== BONUS ===== */
.bonus-stack {
  display: grid;
  gap: 8px;
}

.bonus-row {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.bonus-row .label {
  font-size: 12px;
  color: #E6E6F2;
}

.bonus-row .percent {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

/* ===== RANK ===== */
.rank-list {
  display: grid;
  gap: 10px;
}

.rank-item {
  border-radius: 12px;
  border: 1px solid rgba(245, 166, 35, 0.2);
  background: rgba(255, 255, 255, 0.03);
  padding: 10px;
}

.rank-item-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.rank-item-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #F7F7FF;
}

.rank-item-sub {
  font-size: 11px;
  color: var(--text-secondary);
}

/* ===== PROGRESS ===== */
.progress {
  height: 8px;
  border-radius: 999px;
  background: #161629;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.progress-bar {
  background: linear-gradient(90deg, #F5A623, #FFD37B);
}

/* ===== ACCORDION ===== */
.app-accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-color: #FFFFFF;
  --bs-accordion-border-color: rgba(255, 255, 255, 0.08);
  --bs-accordion-btn-bg: rgba(255, 255, 255, 0.03);
  --bs-accordion-btn-color: #FFFFFF;
  --bs-accordion-active-bg: rgba(245, 166, 35, 0.12);
  --bs-accordion-active-color: #FFFFFF;
  --bs-accordion-btn-focus-box-shadow: none;
}

.app-accordion .accordion-item {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.app-accordion .accordion-button {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  padding: 12px;
}

.app-accordion .accordion-button:not(.collapsed) {
  box-shadow: none;
}

.app-accordion .accordion-button::after {
  filter: invert(1) brightness(1.2);
}

.app-accordion .accordion-body {
  padding: 12px;
}

/* ===== BUTTONS ===== */
.btn-oro {
  border: 0;
  border-radius: 30px;
  background: var(--primary);
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  padding: 9px 14px;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.btn-oro:hover {
  color: #FFFFFF;
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.btn-oro:active {
  transform: scale(0.98);
}

.btn-outline-warning {
  border-radius: 30px;
  border-color: rgba(245, 166, 35, 0.6) !important;
  color: #FFD68F !important;
}

.btn-outline-warning:hover {
  background: rgba(245, 166, 35, 0.13) !important;
  color: #FFF !important;
}

/* ===== FORM ===== */
.form-control,
.form-select,
textarea,
.input-group-text {
  background: #17172A !important;
  border: 1px solid rgba(245, 166, 35, 0.2) !important;
  color: #FFFFFF !important;
  border-radius: 12px !important;
  font-size: 13px;
}

.input-group-text {
  color: #FFD58A !important;
}

.form-control::placeholder,
textarea::placeholder {
  color: #8F91A8 !important;
}

.form-control:focus,
.form-select:focus,
textarea:focus {
  border-color: rgba(245, 166, 35, 0.55) !important;
  box-shadow: 0 0 0 0.2rem rgba(245, 166, 35, 0.2) !important;
}

.form-label,
.text-secondary,
small,
small.text-muted {
  color: var(--text-secondary) !important;
}

/* ===== ALERT ===== */
.alert {
  border-radius: 12px;
  border-width: 1px;
  font-size: 12px;
}

.alert-danger {
  background: rgba(255, 82, 82, 0.14);
  border-color: rgba(255, 82, 82, 0.35);
  color: #FFD9D9;
}

.alert-success {
  background: rgba(0, 230, 118, 0.14);
  border-color: rgba(0, 230, 118, 0.35);
  color: #C7FFE3;
}

.alert-warning {
  background: rgba(245, 166, 35, 0.14);
  border-color: rgba(245, 166, 35, 0.35);
  color: #FFE2A9;
}

.form-hint {
  font-size: 11px;
  color: var(--text-secondary);
}

/* ===== BALANCE STRIP ===== */
.balance-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.balance-chip {
  border-radius: 12px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.balance-chip .label {
  font-size: 10px;
  color: var(--text-secondary);
}

.balance-chip .value {
  margin-top: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
}

/* ===== PACKAGE PICKER ===== */
.package-picker {
  display: grid;
  gap: 8px;
}

.package-choice {
  position: relative;
}

.package-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.package-choice-card {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.package-choice-card .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.package-choice-card .title {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.package-choice-card .meta {
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.package-choice input:checked + .package-choice-card {
  border-color: rgba(245, 166, 35, 0.6);
  background: rgba(245, 166, 35, 0.12);
}

/* ===== ORDER LIST ===== */
.order-list,
.history-list,
.profile-list,
.notification-list {
  display: grid;
  gap: 10px;
}

.order-item,
.history-item,
.profile-item,
.notify-item {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 10px;
}

.order-head,
.history-head,
.profile-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.order-title,
.history-title {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.order-meta,
.history-meta {
  margin-top: 4px;
  font-size: 11px;
  color: var(--text-secondary);
}

/* ===== STAKING ORDER ===== */
.staking-order-item {
  border-color: rgba(245, 166, 35, 0.22);
  background:
    radial-gradient(circle at 110% -20%, rgba(245, 166, 35, 0.18), transparent 42%),
    linear-gradient(160deg, rgba(32, 32, 54, 0.95), rgba(24, 24, 40, 0.95));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.26);
  padding: 12px;
}

.staking-order-head {
  align-items: flex-start;
}

.staking-order-title {
  font-size: 12px;
  color: #BFC5DE;
}

.staking-order-invest {
  margin-top: 3px;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: #FFFFFF;
}

.staking-order-tags {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.staking-order-tag {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #D9DDEE;
  padding: 4px 8px;
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.staking-order-tag ion-icon {
  font-size: 12px;
}

.staking-order-tag.is-gold {
  border-color: rgba(245, 166, 35, 0.42);
  background: rgba(245, 166, 35, 0.16);
  color: #FFE2AF;
}

.staking-order-metrics {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.staking-order-metric {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(12, 13, 24, 0.34);
  padding: 8px;
}

.staking-order-metric .label {
  font-size: 10px;
  color: #AEB4CE;
}

.staking-order-metric .value {
  margin-top: 3px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
}

.staking-order-period {
  margin-top: 9px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #D2D7EE;
}

.staking-order-period ion-icon {
  font-size: 14px;
  color: var(--primary);
}

.staking-progress-head {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 10px;
  color: #B8BED7;
}

.staking-progress-head strong {
  font-size: 11px;
  color: #FFE1A2;
}

/* ===== HISTORY ===== */
.history-amount {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.history-amount.in {
  color: var(--accent-green);
}

.history-amount.out {
  color: var(--accent-red);
}

/* ===== STAT BOX ===== */
.stat-box {
  border-radius: 14px;
  border: 1px solid rgba(245, 166, 35, 0.2);
  background: rgba(30, 30, 50, 0.86);
  padding: 10px;
}

.stat-box .label {
  font-size: 10px;
  color: var(--text-secondary);
}

.stat-box .value {
  font-family: 'Poppins', sans-serif;
  margin-top: 5px;
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
}

/* ===== NOTE ===== */
.note-box {
  border-radius: 14px;
  border: 1px solid rgba(255, 82, 82, 0.3);
  background: rgba(255, 82, 82, 0.08);
  padding: 12px;
  color: #FFD3D3;
  font-size: 12px;
}

.note-list {
  margin: 0;
  padding-left: 16px;
  display: grid;
  gap: 4px;
}

.web-footer-link {
  margin-top: 4px;
  text-align: center;
  font-size: 13px;
  color: var(--text-secondary);
}

.web-footer-link a {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

/* ===== TABLE ===== */
.table-oro {
  color: var(--text-main);
  --bs-table-bg: transparent;
}

.table-oro thead th {
  color: #FAD58C;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  border-bottom-color: var(--divider);
}

.table-oro > :not(caption) > * > * {
  border-bottom-color: var(--divider);
  font-size: 13px;
  color: #E8E8F4;
}

/* ===== WALLET ===== */
.wallet-grid {
  display: grid;
  gap: 10px;
}

.wallet-tab-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 4px;
  border-radius: 14px;
  border: 1px solid rgba(245, 166, 35, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

.wallet-tab-btn {
  border: 0;
  border-radius: 10px;
  padding: 10px 8px;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: #C9CCDE;
  background: transparent;
  transition: all 0.2s ease;
}

.wallet-tab-btn.active {
  background: rgba(245, 166, 35, 0.2);
  color: #FFF3DA;
  border: 1px solid rgba(245, 166, 35, 0.38);
}

.wallet-list-tabs {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.wallet-filter-btn {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: #D3D6E6;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 600;
}

.wallet-filter-btn.active {
  border-color: rgba(245, 166, 35, 0.4);
  background: rgba(245, 166, 35, 0.16);
  color: #FFE3AD;
}

.wallet-field-grid {
  display: grid;
}

.wallet-modern-grid {
  display: grid;
  gap: 10px;
}

.wallet-modern-card {
  border-radius: 16px;
  border: 1px solid rgba(245, 166, 35, 0.2);
  background:
    radial-gradient(circle at 96% 8%, rgba(245, 166, 35, 0.13), transparent 42%),
    rgba(255, 255, 255, 0.02);
  padding: 12px;
}

.wallet-modern-card.is-default {
  border-color: rgba(0, 230, 118, 0.45);
  background:
    radial-gradient(circle at 94% 8%, rgba(0, 230, 118, 0.18), transparent 45%),
    rgba(255, 255, 255, 0.03);
}

.wallet-modern-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wallet-modern-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 166, 35, 0.36);
  background: rgba(245, 166, 35, 0.14);
  color: #FFD58A;
}

.wallet-modern-icon ion-icon {
  font-size: 18px;
}

.wallet-modern-meta {
  min-width: 0;
  flex: 1;
}

.wallet-modern-label {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.2;
}

.wallet-modern-method {
  margin-top: 2px;
  font-size: 11px;
  color: var(--text-secondary);
}

.wallet-modern-body {
  margin-top: 10px;
  border-radius: 12px;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(13, 13, 26, 0.38);
}

.wallet-modern-line {
  font-size: 12px;
  color: #ECECF6;
  word-break: break-word;
}

.wallet-modern-sub {
  margin-top: 3px;
  font-size: 11px;
  color: var(--text-secondary);
  word-break: break-word;
}

.wallet-modern-actions {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.wallet-empty {
  border-radius: 14px;
  border: 1px dashed rgba(245, 166, 35, 0.3);
  background: rgba(255, 255, 255, 0.02);
  padding: 20px 14px;
  text-align: center;
  color: var(--text-secondary);
  display: grid;
  justify-items: center;
  gap: 8px;
  font-size: 12px;
}

.wallet-empty ion-icon {
  font-size: 20px;
  color: #FFD58A;
}

.wallet-item {
  border-radius: 14px;
  border: 1px solid rgba(245, 166, 35, 0.2);
  background: rgba(255, 255, 255, 0.03);
  padding: 10px;
}

.wallet-item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}

.wallet-label {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
}

.wallet-meta {
  margin-top: 4px;
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.35;
}

/* ===== USDT ORDER ===== */
.usdt-order-card {
  border-radius: 16px;
  border: 1px solid rgba(245, 166, 35, 0.28);
  background:
    radial-gradient(circle at 100% 0, rgba(245, 166, 35, 0.2), transparent 42%),
    linear-gradient(150deg, rgba(20, 20, 36, 0.97), rgba(14, 14, 28, 0.97));
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.34);
  padding: 13px;
}

.usdt-order-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.usdt-order-kicker {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #BFC5E7;
}

.usdt-order-id {
  margin-top: 3px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #FFD79A;
  word-break: break-word;
}

.usdt-order-highlight {
  margin-top: 10px;
  border-radius: 12px;
  border: 1px solid rgba(245, 166, 35, 0.26);
  background: rgba(245, 166, 35, 0.1);
  padding: 10px;
}

.usdt-order-highlight-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #E6E2D5;
}

.usdt-order-highlight-value {
  margin-top: 2px;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
}

.usdt-order-highlight-value small {
  font-size: 12px;
  font-weight: 600;
  color: #FFDFAE;
}

.usdt-order-highlight-note {
  margin-top: 5px;
  font-size: 11px;
  color: #D0D3EA;
}

.usdt-order-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.usdt-order-grid-item {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.03);
  padding: 8px;
}

.usdt-order-grid-item span {
  display: block;
  font-size: 10px;
  color: #AEB5D6;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.usdt-order-grid-item strong {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  color: #F6F7FF;
  font-weight: 600;
  word-break: break-word;
}

.usdt-order-wallet {
  margin-top: 11px;
}

.usdt-order-wallet label {
  display: block;
  margin-bottom: 5px;
  font-size: 11px;
  color: #D2D6EA;
}

.usdt-order-wallet-row {
  border-radius: 10px;
  border: 1px solid rgba(245, 166, 35, 0.24);
  background: rgba(245, 166, 35, 0.07);
  padding: 8px;
  display: grid;
  gap: 8px;
}

.usdt-order-wallet-row code {
  font-size: 11px;
  color: #FFF7E9;
  white-space: normal;
  word-break: break-all;
}

.usdt-order-wallet-row .btn {
  justify-self: flex-start;
}

.usdt-order-steps {
  margin-top: 11px;
  display: grid;
  gap: 6px;
}

.usdt-order-step {
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 8px;
  font-size: 11px;
  color: #D7DCF4;
}

@media (max-width: 575.98px) {
  .usdt-order-highlight-value {
    font-size: 19px;
  }

  .usdt-order-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== METHOD PILL ===== */
.method-pill {
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 10px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #DEE1F4;
}

/* ===== NETWORK LEVEL ===== */
.network-level-card {
  border-radius: 12px;
  border: 1px solid rgba(245, 166, 35, 0.24);
  background: rgba(255, 255, 255, 0.03);
  padding: 10px;
}

.network-list-head {
  margin-bottom: 10px;
}

.network-level-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 2px 6px;
  margin-bottom: 12px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.network-level-tabs::-webkit-scrollbar {
  display: none;
}

.network-level-tab {
  flex: 0 0 auto;
  min-width: 104px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #E7E9F8;
  padding: 8px 10px;
  display: grid;
  gap: 3px;
  transition: all 0.2s ease;
}

.network-level-tab strong {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #F6F7FF;
  line-height: 1.1;
}

.network-level-tab span {
  font-size: 11px;
  color: #C9CEE9;
}

.network-level-tab.is-active {
  border-color: rgba(245, 166, 35, 0.55);
  background: linear-gradient(145deg, rgba(245, 166, 35, 0.3), rgba(32, 32, 54, 0.96));
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.34);
}

.network-level-tab.is-active strong,
.network-level-tab.is-active span {
  color: #FFFFFF;
}

.network-page .card-glass,
.network-page .card-glass h1,
.network-page .card-glass h2,
.network-page .card-glass h3,
.network-page .card-glass h4,
.network-page .card-glass h5,
.network-page .card-glass h6,
.network-page .card-glass span,
.network-page .card-glass label {
  color: #F2F3FF;
}

.network-page .text-secondary,
.network-page small.text-secondary,
.network-page .small.text-secondary,
.network-page .network-level-title,
.network-page .network-level-sub {
  color: #D9DCEF !important;
}

.network-page .table-oro > :not(caption) > * > * {
  color: #EEF0FF;
}

.network-page .table-oro thead th {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.35px;
  color: #D0D4EA;
}

.network-page .table-oro tbody tr {
  background: rgba(255, 255, 255, 0.01);
}

.network-page .table-oro tbody tr + tr td {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.network-empty-row {
  border-radius: 12px;
  border: 1px dashed rgba(245, 166, 35, 0.28);
  background: rgba(255, 255, 255, 0.02);
  padding: 18px 12px;
  text-align: center;
  font-size: 12px;
  color: #D7DCF2;
}

.network-ref-card {
  border-color: rgba(245, 166, 35, 0.3);
  background:
    radial-gradient(circle at 95% 8%, rgba(245, 166, 35, 0.14), transparent 45%),
    linear-gradient(160deg, rgba(30, 30, 50, 0.98), rgba(22, 22, 38, 0.98));
}

.network-ref-title {
  color: #F7F8FF !important;
}

.network-ref-sub {
  font-size: 12px;
  color: #D9DCEF;
  line-height: 1.35;
}

.network-level-title {
  font-size: 11px;
  color: var(--text-secondary);
}

.network-level-count {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-top: 3px;
}

.network-level-sub {
  font-size: 10px;
  color: var(--text-secondary);
}

.network-tier-card {
  border-radius: 14px;
  border: 1px solid rgba(245, 166, 35, 0.24);
  background: rgba(30, 30, 50, 0.86);
}

.network-tier-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.network-tier-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 166, 35, 0.15);
  color: var(--primary);
}

.network-tier-list {
  display: grid;
  gap: 8px;
}

.network-tier-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 10px;
}

.network-tier-row span {
  font-size: 12px;
  color: #E8E8F4;
}

.network-tier-row strong {
  font-size: 18px;
  color: var(--primary);
  font-family: 'Poppins', sans-serif;
}

/* ===== REWARD ===== */
.reward-page {
  display: grid;
  gap: 14px;
}

.reward-hero {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(245, 166, 35, 0.34);
  background:
    radial-gradient(circle at 100% 0, rgba(245, 166, 35, 0.2), transparent 45%),
    radial-gradient(circle at 8% 100%, rgba(0, 230, 118, 0.12), transparent 40%),
    linear-gradient(160deg, rgba(29, 29, 50, 0.98), rgba(19, 21, 38, 0.98));
}

.reward-hero::before {
  content: "";
  position: absolute;
  top: -56px;
  right: -52px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.22), transparent 66%);
  pointer-events: none;
}

.reward-hero-kicker {
  position: relative;
  z-index: 1;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffdca5;
}

.reward-hero-title {
  position: relative;
  z-index: 1;
  margin: 5px 0 0;
  font-size: clamp(21px, 5vw, 28px);
  line-height: 1.14;
}

.reward-hero-sub {
  position: relative;
  z-index: 1;
  margin-top: 7px;
  color: #d8ddef;
  font-size: 13px;
  line-height: 1.4;
}

.reward-status-pill {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.reward-status-pill ion-icon {
  font-size: 15px;
}

.reward-status-pill.is-qualified {
  border-color: rgba(0, 230, 118, 0.52);
  background: rgba(0, 230, 118, 0.16);
  color: #b8ffe0;
}

.reward-status-pill.is-unqualified {
  border-color: rgba(255, 82, 82, 0.5);
  background: rgba(255, 82, 82, 0.14);
  color: #ffd0d0;
}

.reward-rule-note {
  margin-top: 9px;
  font-size: 11px;
  color: #c8d0ea;
}

.reward-progress-grid {
  margin-top: 11px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.reward-progress-card {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(13, 15, 27, 0.4);
  padding: 9px 10px;
}

.reward-progress-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: #cfd7f4;
}

.reward-progress-head strong {
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  font-size: 12px;
}

.reward-kpi-grid {
  margin-top: 11px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.reward-kpi-card {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 9px;
}

.reward-kpi-card .label {
  font-size: 10px;
  color: #c9d1eb;
}

.reward-kpi-card .value {
  margin-top: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
}

.reward-kpi-card.is-ok {
  border-color: rgba(0, 230, 118, 0.42);
  background: rgba(0, 230, 118, 0.12);
}

.reward-kpi-card.is-soft {
  border-color: rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.05);
}

.reward-member-grid {
  display: grid;
  gap: 10px;
}

.reward-member-card {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 100% 0, rgba(103, 156, 255, 0.1), transparent 42%),
    rgba(255, 255, 255, 0.03);
  padding: 11px;
}

.reward-member-card.is-qualified {
  border-color: rgba(0, 230, 118, 0.42);
  background:
    radial-gradient(circle at 100% 0, rgba(0, 230, 118, 0.14), transparent 42%),
    rgba(255, 255, 255, 0.03);
}

.reward-member-head {
  display: flex;
  align-items: center;
  gap: 9px;
}

.reward-member-avatar {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 166, 35, 0.35);
  background: rgba(245, 166, 35, 0.14);
  color: #ffe1ac;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.reward-member-ident {
  min-width: 0;
  flex: 1;
}

.reward-member-username-line {
  display: flex;
  align-items: center;
  gap: 7px;
}

.reward-member-username-line strong {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.15;
}

.reward-qualified-badge {
  border-radius: 999px;
  border: 1px solid rgba(0, 230, 118, 0.45);
  background: rgba(0, 230, 118, 0.17);
  color: #b9ffe1;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.reward-qualified-badge ion-icon {
  font-size: 12px;
}

.reward-member-meta {
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #bfc8e9;
}

.reward-member-metrics {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.reward-member-metric {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 12, 24, 0.38);
  padding: 8px;
}

.reward-member-metric .label {
  font-size: 10px;
  color: #aeb8da;
}

.reward-member-metric strong {
  display: block;
  margin-top: 3px;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
}

/* ===== MOBILE DOCK ===== */
.mobile-dock {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  width: calc(100% - 20px);
  max-width: 540px;
  display: grid;
  grid-template-columns: repeat(var(--dock-columns, 5), minmax(0, 1fr));
  gap: 6px;
  padding: 8px;
  border-radius: 18px;
  border: 1px solid rgba(245, 166, 35, 0.28);
  background: rgba(13, 13, 26, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
  z-index: 1080;
}

.mobile-dock-item {
  border-radius: 12px;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 7px 4px;
  transition: all 0.2s ease;
}

.mobile-dock-item ion-icon {
  font-size: 18px;
}

.mobile-dock-item span {
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.2px;
}

.mobile-dock-item.is-active {
  color: #FFFFFF;
  background: rgba(245, 166, 35, 0.22);
  border: 1px solid rgba(245, 166, 35, 0.48);
}



/* PREMIUM QUALIFIED BANNER - DASHBOARD */
.qualified-premium-banner {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(26, 26, 46, 0.8) 100%);
    border-radius: 16px;
    padding: 16px 24px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.qualified-premium-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(251, 191, 36, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.qualified-premium-banner.is-qualified {
    border-color: rgba(251, 191, 36, 0.3);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(26, 26, 46, 0.95) 50%, rgba(26, 26, 46, 0.8) 100%);
    box-shadow: 0 4px 40px rgba(251, 191, 36, 0.08);
}

.qualified-premium-banner.is-qualified::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fbbf24, #f59e0b, #fbbf24, transparent);
    animation: shimmerSlide 3s ease-in-out infinite;
}

@keyframes shimmerSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.qualified-premium-content {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.qualified-premium-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(251, 191, 36, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.qualified-premium-icon svg {
    width: 24px;
    height: 24px;
    color: #fbbf24;
}

.qualified-premium-text {
    flex: 1;
    min-width: 150px;
}

.qualified-premium-title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #fff;
}

.qualified-premium-sub {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
}

.qualified-premium-progress {
    display: flex;
    gap: 12px;
    flex: 1;
    min-width: 120px;
}

.qualified-premium-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    overflow: hidden;
}

.qualified-premium-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 6px;
    transition: width 1.2s ease;
}

.qualified-premium-badge {
    display: flex;
    align-items: center;
    padding: 4px 16px;
    border-radius: 50px;
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid rgba(251, 191, 36, 0.15);
}

.qualified-premium-badge span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fbbf24;
}

.qualified-premium-banner.is-unqualified .qualified-premium-badge span {
    color: rgba(255, 255, 255, 0.4);
}

.qualified-premium-banner.is-unqualified .qualified-premium-badge {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .qualified-premium-content {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .qualified-premium-icon {
        width: 36px;
        height: 36px;
    }
    
    .qualified-premium-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .qualified-premium-progress {
        min-width: unset;
    }
}

.admin-withdraw-page .withdraw-retry-form {
  display: block;
  margin-top: 8px;
}

.admin-withdraw-page .withdraw-retry-form .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 34px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
}


.admin-withdraw-page .withdraw-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
  padding-top: 17px;
  border-top: 1px solid rgba(139, 170, 239, 0.12);
}

.admin-withdraw-page .withdraw-page-numbers {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px;
  border: 1px solid rgba(139, 170, 239, 0.14);
  border-radius: 14px;
  background: rgba(7, 13, 29, 0.32);
}

.admin-withdraw-page .withdraw-page-button,
.admin-withdraw-page .withdraw-page-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  border: 1px solid rgba(139, 170, 239, 0.18);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.035);
  color: #C7D8FA !important;
  font-size: 11px;
  font-weight: 700;
  transition: 0.18s ease;
}

.admin-withdraw-page .withdraw-page-button {
  gap: 5px;
  padding: 0 15px;
  border-radius: 12px;
}

.admin-withdraw-page .withdraw-page-button:hover,
.admin-withdraw-page .withdraw-page-number:hover,
.admin-withdraw-page .withdraw-page-number.is-active {
  border-color: rgba(92, 146, 255, 0.66);
  background: linear-gradient(145deg, rgba(76, 130, 246, 0.34), rgba(49, 76, 151, 0.25));
  color: #FFFFFF !important;
  box-shadow: 0 6px 16px rgba(3, 12, 34, 0.24);
}

.admin-withdraw-page .withdraw-page-number.is-active {
  border-color: rgba(111, 155, 255, 0.85);
  background: linear-gradient(145deg, #527FE5, #3459B0);
  box-shadow: 0 7px 17px rgba(28, 66, 153, 0.38);
  pointer-events: none;
}

.admin-withdraw-page .withdraw-page-button.is-disabled {
  opacity: 0.38;
  pointer-events: none;
}

@media (max-width: 575.98px) {
  .admin-withdraw-page .withdraw-destination-heading small {
    display: none;
  }

  .admin-withdraw-page .withdraw-destination-tabs {
    gap: 7px;
  }

  .admin-withdraw-page .withdraw-destination-tab {
    min-height: 43px;
    padding-inline: 8px;
    font-size: 11px;
  }

  .admin-withdraw-page .withdraw-pagination {
    gap: 6px;
  }

  .admin-withdraw-page .withdraw-page-button {
    width: 40px;
    padding: 0;
  }

  .admin-withdraw-page .withdraw-page-button span {
    display: none;
  }
}
