:root {
  --glow-blue: 0 0 18px rgba(8, 199, 255, 0.52), 0 0 42px rgba(8, 199, 255, 0.22);
  --glow-purple: 0 0 18px rgba(140, 69, 255, 0.58), 0 0 42px rgba(140, 69, 255, 0.28);
  --glow-green: 0 0 18px rgba(0, 235, 132, 0.58), 0 0 42px rgba(0, 235, 132, 0.26);
}

.btn,
.big-action,
.action-icon,
.icon-btn,
.quick-row,
.admin-card,
.plan-card,
.list-item {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    filter 0.2s ease,
    background 0.2s ease;
}

.btn:hover,
.icon-btn:hover,
.action-icon:hover,
.quick-row:hover,
.admin-card:hover,
.plan-card:hover,
.list-item:hover {
  transform: translateY(-2px);
  border-color: rgba(8, 199, 255, 0.42);
  box-shadow: var(--glow-blue);
}

.btn-main:hover {
  transform: translateY(-2px);
  filter: brightness(1.08) saturate(1.08);
  box-shadow: var(--glow-blue), var(--glow-purple), var(--glow-green);
}

.big-action:hover {
  transform: translateY(-4px) scale(1.01);
  filter: brightness(1.08) saturate(1.1);
}

.big-action.deposit:hover {
  box-shadow: var(--glow-blue);
}

.big-action.invest:hover {
  box-shadow: var(--glow-purple);
}

.big-action.withdraw:hover {
  box-shadow: var(--glow-green);
}

.rich-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  color: #fff;
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,0.28), transparent 35%),
    linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: inset 0 0 18px rgba(255,255,255,0.08);
}

.big-action .rich-icon {
  margin-bottom: 10px;
}

.page-head {
  position: sticky;
  top: 0;
  z-index: 12;
  height: 58px;
  margin: -12px -10px 14px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(12, 21, 40, 0.9);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  gap: 12px;
}

.back-btn {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: transparent;
  text-decoration: none;
  font-size: 24px;
  line-height: 1;
}

.back-btn:hover {
  color: #fff;
  background: rgba(8, 199, 255, 0.12);
  box-shadow: var(--glow-blue);
}

.page-head-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.4px;
}

.page-head-icon {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: rgba(8, 199, 255, 0.12);
  border: 1px solid rgba(8, 199, 255, 0.28);
}

.wallet-panel {
  padding: 16px;
  margin-bottom: 14px;
}

.wallet-card {
  padding: 14px;
  border: 1px solid rgba(8, 199, 255, 0.2);
  border-radius: 16px;
  background: rgba(8, 199, 255, 0.06);
}

.wallet-card-title {
  margin: 0 0 8px;
  color: var(--blue);
  font-weight: 900;
  font-size: 13px;
}

.wallet-address {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(8, 199, 255, 0.28);
  background: rgba(8, 199, 255, 0.08);
  font-family: "JetBrains Mono", monospace;
  word-break: break-all;
  font-size: 12px;
}

.qr-box {
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  margin-bottom: 14px;
}

.qr-box img {
  width: 220px;
  max-width: 100%;
  border-radius: 16px;
  background: #fff;
  padding: 8px;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.status.approved,
.status.paid {
  color: var(--green);
  background: rgba(0, 235, 132, 0.12);
}

.status.rejected,
.status.cancelled {
  color: var(--red);
  background: rgba(255, 85, 112, 0.12);
}

.status.pending {
  color: var(--warning);
  background: rgba(255, 191, 61, 0.12);
}

.action-link {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 900;
  font-size: 12px;
  color: #fff;
  background: rgba(8, 199, 255, 0.16);
  border: 1px solid rgba(8, 199, 255, 0.28);
}

.action-link.green {
  background: rgba(0, 235, 132, 0.16);
  border-color: rgba(0, 235, 132, 0.28);
}

.action-link.red {
  background: rgba(255, 85, 112, 0.16);
  border-color: rgba(255, 85, 112, 0.28);
}

.action-link:hover {
  box-shadow: var(--glow-blue);
}

.action-link.green:hover {
  box-shadow: var(--glow-green);
}

.action-link.red:hover {
  box-shadow: 0 0 18px rgba(255, 85, 112, 0.42);
}

@media (min-width: 760px) {
  .page-head {
    margin-left: -18px;
    margin-right: -18px;
  }
}
