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

/* =============================================
   RESET
   ============================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', Arial, sans-serif;
}

[hidden] {
  display: none;
}


/* =============================================
   BODY
   ============================================= */
body {
  background:
    radial-gradient(circle at 20% 0%, rgba(99, 102, 241, 0.12), transparent 40%),
    radial-gradient(circle at 80% 100%, rgba(56, 189, 248, 0.1), transparent 40%),
    linear-gradient(160deg, #eef2ff 0%, #dbeafe 100%);
}

.maintenance-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  background: linear-gradient(135deg, #fff4d6, #ffe8a3);
  color: #8b5a00;
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid rgba(198, 149, 0, 0.2);
}


/* =============================================
   HEADER
   ============================================= */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 16px rgba(30, 50, 100, 0.06);
}

.left {
  display: flex;
  align-items: center;
}

.menu-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 10px;
}

.menu-icon:hover {
  background: rgba(0, 0, 0, 0.1);
}

.logo img {
  height: 38px;
  margin-left: -5px;
  cursor: pointer;
  transition: 0.2s;
}

.logo img:hover {
  transform: scale(1.05);
}

.login-btn {
  padding: 8px 20px;
  border: none;
  border-radius: 20px;
  background: linear-gradient(135deg, #4facfe, #3f5efb);
  color: white;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  letter-spacing: 0.02em;
}

.login-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 18px rgba(63, 94, 251, 0.35);
}

.login-btn:active {
  transform: scale(0.98);
}


/* =============================================
   SIDEBAR
   ============================================= */
.sidebar {
  position: fixed;
  top: 0;
  left: -260px;
  width: 260px;
  height: 100%;
  padding: 20px;
  background: #fff;
  border-radius: 0 25px 25px 0;
  box-shadow: 5px 0 25px rgba(0, 0, 0, 0.1);
  transition: 0.35s;
  z-index: 1001;
}

.sidebar-top {
  margin-bottom: 25px;
}

.sidebar-top h3 {
  font-size: 20px;
}

.sidebar-top p {
  font-size: 13px;
  color: gray;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
}

.sidebar a {
  display: flex;
  align-items: center;
  padding: 13px 15px;
  margin-bottom: 10px;
  text-decoration: none;
  color: #2d3a5e;
  font-size: 14px;
  font-weight: 500;
  background: #f5f7ff;
  border-radius: 16px;
  transition: background 0.22s ease, transform 0.22s ease;
}

.sidebar a:hover {
  background: #eaedff;
  transform: translateX(4px);
}

.sidebar a i {
  margin-right: 12px;
  font-size: 18px;
}

.fa-house {
  color: #3b82f6;
}

.fa-wallet {
  color: #16a34a;
}

.fa-youtube {
  color: red;
}

.fa-phone {
  color: #f97316;
}

.download-btn {
  width: 100%;
  margin-top: 20px;
  padding: 14px 16px;
  text-align: center;
  border: none;
  border-radius: 18px;
  background: linear-gradient(135deg, #4facfe, #3f5efb);
  color: white;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(79, 172, 254, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  letter-spacing: 0.02em;
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(79, 172, 254, 0.42);
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(3px);
  display: none;
  z-index: 1000;
}


/* =============================================
   LOGIN PAGE
   ============================================= */
.login-page {
  width: 90%;
  max-width: 360px;
  margin: 60px auto;
  padding: 28px 24px;
  text-align: center;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(30, 50, 100, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.login-page h2 {
  margin-bottom: 22px;
  font-weight: 700;
  font-size: 22px;
  color: #1e2a50;
}

.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  background: white;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: 0.3s;
}

.google-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.google-btn img {
  width: 22px;
}

.divider {
  margin: 18px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}

.divider span {
  color: #9aa0b4;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.login-page input {
  width: 100%;
  padding: 13px 15px;
  margin: 9px 0;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  color: #1e2a50;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.login-page input:focus {
  outline: none;
  border-color: #4facfe;
  box-shadow: 0 0 0 3px rgba(79, 172, 254, 0.18);
  background: white;
}

.password-box {
  position: relative;
}

.password-box i {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #aab;
  cursor: pointer;
  font-size: 15px;
  transition: color 0.2s;
}

.password-box i:hover {
  color: #4facfe;
}

.forgot {
  text-align: right;
  font-size: 12px;
  color: #666;
  margin-bottom: 10px;
}

.login-submit {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, #4facfe, #3f5efb);
  color: white;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  letter-spacing: 0.02em;
  margin-top: 4px;
}

.login-submit:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(63, 94, 251, 0.38);
}

.login-submit:active {
  transform: scale(0.98);
}

.signup-text {
  margin-top: 15px;
  font-size: 14px;
}

.signup-text span {
  color: #3f5efb;
  font-weight: 600;
  cursor: pointer;
}

.signup-text:last-child span {
  display: inline-block;
  margin-top: 10px;
}

.login-note {
  margin-bottom: 12px;
  color: #64748b;
  font-size: 13px;
}

.login-demo {
  margin-bottom: 8px;
  color: #334155;
  font-size: 13px;
}

.login-demo strong {
  color: #1d4ed8;
}

.error-text {
  color: #dc2626;
}


/* =============================================
   SIGNUP PAGE
   ============================================= */
.signup-page {
  width: 90%;
  max-width: 340px;
  margin: 48px auto;
  padding: 26px 22px;
  text-align: center;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(30, 50, 100, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.signup-page h2 {
  margin-bottom: 18px;
  font-size: 22px;
  font-weight: 700;
  color: #1e2a50;
}

.signup-page input {
  width: 100%;
  padding: 11px;
  margin: 10px 0;
  border-radius: 14px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 14px;
  transition: 0.3s;
}

.signup-page input:focus {
  outline: none;
  border-color: #4facfe;
  box-shadow: 0 0 0 3px rgba(79, 172, 254, 0.2);
}

.signup-btn {
  width: 100%;
  padding: 14px;
  margin-top: 10px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, #4facfe, #3f5efb);
  color: white;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  letter-spacing: 0.02em;
}

.signup-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(63, 94, 251, 0.38);
}

.signup-btn:active {
  transform: scale(0.98);
}

.signup-note {
  margin-top: 10px;
  font-size: 13px;
  color: #64748b;
  min-height: 20px;
  transition: color 0.2s;
}

.signup-note.error {
  color: #dc2626;
}

.signup-note.success {
  color: #16a34a;
}


/* =============================================
   FLOATING LABEL INPUT
   ============================================= */
.input-box {
  position: relative;
  margin: 15px 0;
}

.input-box input {
  width: 100%;
  padding: 14px 15px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  outline: none;
  background: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  color: #1e2a50;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.input-box label {
  position: absolute;
  left: 12px;
  top: 14px;
  color: #888;
  font-size: 14px;
  pointer-events: none;
  background: white;
  padding: 0 5px;
  transition: 0.3s;
}

.input-box input:focus + label,
.input-box input:valid + label {
  top: -8px;
  font-size: 12px;
  color: #4facfe;
}

.input-box input:focus {
  border-color: #4facfe;
  box-shadow: 0 0 0 3px rgba(79, 172, 254, 0.2);
}


/* =============================================
   BANNER SLIDER
   ============================================= */
.banner-slider {
  position: relative;
  width: calc(100% - 14px);
  margin: 8px auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.slides {
  display: flex;
  width: 300%;
  transition: transform 0.5s ease;
}

.slide {
  width: 100%;
  flex-shrink: 0;
}

.slide img {
  width: 100%;
  height: 175px;
  object-fit: cover;
  border-radius: 12px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 10px 0 18px;
}

.dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(63, 94, 251, 0.25);
  transition: background 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.dot.active {
  background: #3f5efb;
  transform: scale(1.1);
}


/* =============================================
   SERVICE GRID
   ============================================= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: calc(100% - 18px);
  margin: 0 auto 24px;
}

.service-card {
  min-height: 118px;
  padding: 16px 8px 14px;
  border: 1px solid rgba(30, 41, 59, 0.07);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  cursor: pointer;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover:not(:disabled) {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.11);
  border-color: rgba(79, 172, 254, 0.28);
}

.service-card:active:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.service-card-disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.14);
}

.service-name {
  color: #1f2937;
  font-size: 11.5px;
  line-height: 1.3;
  font-weight: 600;
  word-break: break-word;
  letter-spacing: 0.01em;
}

.icon-wallet {
  background: linear-gradient(135deg, #f59e0b, #b45309);
}

.icon-order-status {
  background: linear-gradient(135deg, #0f172a, #334155);
}

.icon-fire {
  background: linear-gradient(135deg, #f97316, #ef4444);
}

.icon-weekly {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.icon-evo {
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
}

.icon-lte {
  background: linear-gradient(135deg, #0f766e, #14b8a6);
}

.icon-level {
  background: linear-gradient(135deg, #eab308, #f97316);
}

.icon-mystery {
  background: linear-gradient(135deg, #ec4899, #d946ef);
}


/* =============================================
   WALLET PAGE
   ============================================= */
.wallet-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(99, 102, 241, 0.12), transparent 26%),
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.12), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #eef3ff 100%);
}

.wallet-shell {
  width: min(100%, 420px);
  margin: 0 auto;
  padding: 12px 14px 34px;
}

.wallet-visa-card {
  position: relative;
  overflow: hidden;
  padding: 18px 18px 15px;
  border: 2px solid rgba(160, 171, 255, 0.42);
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(128, 145, 255, 0.7), transparent 28%),
    radial-gradient(circle at bottom right, rgba(198, 93, 255, 0.35), transparent 30%),
    linear-gradient(135deg, #5c74ff 0%, #3e46f0 42%, #7a2cff 100%);
  box-shadow: 0 16px 38px rgba(88, 88, 226, 0.26);
  margin-bottom: 16px;
}

.visa-card-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 120%, rgba(255, 255, 255, 0.28), transparent 36%),
    radial-gradient(circle at 110% -10%, rgba(255, 255, 255, 0.18), transparent 24%);
  pointer-events: none;
}

.visa-label,
.visa-card-top,
.wallet-visa-card h2,
.visa-card-bottom {
  position: relative;
}

.visa-label {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  margin-bottom: 10px;
}

.visa-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.visa-chip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  width: 30px;
  height: 24px;
  padding: 4px;
  border-radius: 7px;
  background: linear-gradient(135deg, #f7d372, #d8a73c);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.visa-chip span {
  border-radius: 2px;
  background: rgba(122, 79, 12, 0.18);
}

.visa-brand-logo {
  position: absolute;
  top: 6px;
  right: 8px;
  width: 92px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.wallet-visa-card h2 {
  color: white;
  font-size: 28px;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}

.visa-card-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.visa-id-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  margin-bottom: 4px;
}

.visa-id-number {
  color: white;
  font-size: 24px;
  letter-spacing: 0.11em;
  line-height: 1;
}

.copy-id-btn {
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  cursor: pointer;
}

.wallet-section {
  margin-top: 14px;
}

.wallet-heading-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.wallet-heading-inline h3,
.quick-money-header h3 {
  color: #22315f;
  font-size: 18px;
  font-weight: 700;
}

.quick-money-header {
  position: relative;
  margin-bottom: 16px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(212, 221, 244, 0.9);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(79, 172, 254, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.96));
  box-shadow: 0 14px 30px rgba(43, 61, 120, 0.07);
}

.quick-money-header::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 0;
  width: 54px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #4facfe, #5468ff);
}

.quick-money-header p {
  margin-top: 6px;
  color: #7181a9;
  font-size: 12px;
  line-height: 1.5;
}

.quick-money-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
  padding: 4px;
}

.quick-money-card {
  min-width: 0;
  position: relative;
  overflow: hidden;
  padding: 16px 6px 13px;
  border: 1px solid rgba(214, 221, 241, 0.95);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(246, 249, 255, 0.96));
  box-shadow: 0 14px 26px rgba(34, 52, 95, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #334266;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.quick-money-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), transparent 46%);
  pointer-events: none;
}

.quick-money-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(34, 52, 95, 0.14);
}

.quick-money-card-bkash:hover {
  border-color: rgba(226, 21, 101, 0.35);
}

.quick-money-card-nagad:hover {
  border-color: rgba(244, 111, 32, 0.35);
}

.quick-money-card-rocket:hover {
  border-color: rgba(129, 42, 199, 0.35);
}

.quick-money-card-upay:hover {
  border-color: rgba(20, 98, 216, 0.3);
}

.quick-money-logo-wrap {
  position: relative;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 16px;
  background: white;
  box-shadow:
    inset 0 0 0 1px rgba(223, 229, 244, 0.95),
    0 8px 16px rgba(66, 86, 140, 0.08);
}

.quick-money-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.quick-money-name {
  width: 100%;
  overflow: hidden;
  color: #30405f;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-align: center;
  text-overflow: ellipsis;
}

.quick-money-fallback {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 15px;
  font-weight: 800;
}

.quick-money-fallback.bkash {
  background: linear-gradient(135deg, #ff4f8e, #ff0062);
}

.quick-money-fallback.nagad {
  background: linear-gradient(135deg, #ff9f1c, #ff5f00);
}

.quick-money-fallback.rocket {
  background: linear-gradient(135deg, #8b3dff, #5b17c5);
}

.quick-money-fallback.upay {
  background: linear-gradient(135deg, #ffcf33, #1362d8);
}

.wallet-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.wallet-stat-card {
  padding: 15px 15px;
  border: 1px solid rgba(219, 227, 244, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 24px rgba(52, 72, 133, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.wallet-stat-card.orders {
  background: linear-gradient(135deg, rgba(119, 97, 255, 0.12), rgba(99, 102, 241, 0.04));
}

.wallet-stat-card.money {
  background: linear-gradient(135deg, rgba(40, 199, 111, 0.14), rgba(34, 197, 94, 0.04));
}

.wallet-stat-copy {
  flex: 1;
}

.wallet-stat-copy p {
  color: #5f6f97;
  font-size: 12px;
  margin-bottom: 3px;
}

.wallet-stat-copy h4 {
  color: #24345f;
  font-size: 22px;
  line-height: 1;
  margin-bottom: 3px;
}

.wallet-stat-copy span {
  color: #7f8db1;
  font-size: 12px;
}

.wallet-stat-arrow {
  color: #7c88ad;
  font-size: 16px;
}

.see-all-btn {
  border: none;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(79, 172, 254, 0.12);
  color: #4968ff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.wallet-activity-list {
  display: grid;
  gap: 10px;
}

.wallet-activity-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 13px;
  border: 1px solid rgba(214, 223, 241, 0.75);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.05);
}

.extra-transaction {
  display: none;
}

.activity-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  flex-shrink: 0;
}

.activity-icon.add {
  background: linear-gradient(135deg, #20c162, #1ba353);
}

.activity-icon.topup {
  background: linear-gradient(135deg, #ff5c67, #ff6f83);
}

.activity-copy {
  flex: 1;
}

.activity-copy h4 {
  color: #24345f;
  font-size: 15px;
  margin-bottom: 2px;
}

.activity-copy p {
  color: #7b88af;
  font-size: 11px;
}

.activity-amount {
  text-align: right;
}

.activity-amount strong {
  display: block;
  font-size: 13px;
  margin-bottom: 3px;
}

.activity-amount span {
  color: #8a96b7;
  font-size: 10px;
}

.activity-amount.positive strong {
  color: #17a34a;
}

.activity-amount.negative strong {
  color: #ff5d6f;
}

@media (max-width: 380px) {
  .wallet-shell {
    padding-left: 10px;
    padding-right: 10px;
  }

  .quick-money-grid {
    gap: 8px;
  }

  .quick-money-header {
    padding: 16px 14px 15px;
    border-radius: 18px;
  }

  .quick-money-card {
    padding: 12px 2px 10px;
    border-radius: 16px;
  }

  .quick-money-logo-wrap {
    width: 42px;
    height: 42px;
    padding: 5px;
  }

  .quick-money-name {
    font-size: 9px;
    letter-spacing: 0.04em;
  }

  .visa-id-number {
    font-size: 18px;
  }

  .wallet-stat-copy h4 {
    font-size: 18px;
  }
}


/* =============================================
   ORDER STATUS PAGE
   ============================================= */
.order-status-body {
  min-height: 100vh;
  padding-bottom: 20px;
  background:
    radial-gradient(circle at top left, rgba(84, 104, 255, 0.16), transparent 24%),
    radial-gradient(circle at top right, rgba(89, 208, 255, 0.1), transparent 18%),
    linear-gradient(180deg, #fbfbff 0%, #f4f6ff 52%, #edf2ff 100%);
}

.order-status-body .header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(222, 228, 245, 0.85);
  box-shadow: 0 8px 20px rgba(46, 60, 111, 0.05);
}

.order-status-body .menu-icon,
.order-status-body .login-btn {
  box-shadow: 0 8px 18px rgba(64, 82, 144, 0.08);
}

.order-status-shell {
  width: min(100%, 460px);
  margin: 0 auto;
  padding: 10px 12px 22px;
}

.order-summary-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.order-summary-card {
  position: relative;
  overflow: hidden;
  padding: 13px 13px 12px;
  border: 1px solid rgba(215, 221, 242, 0.9);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.92));
  box-shadow: 0 12px 22px rgba(40, 57, 112, 0.08);
}

.order-summary-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), transparent 50%);
  pointer-events: none;
}

.order-summary-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.order-summary-card span {
  color: #7f8eb5;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.order-summary-top i {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  background: rgba(84, 103, 255, 0.1);
  color: #5567ff;
  box-shadow: inset 0 0 0 1px rgba(193, 201, 243, 0.7);
}

.order-summary-card strong {
  color: #24325f;
  display: block;
  margin-bottom: 4px;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.order-summary-card small {
  color: #9aa6c4;
  font-size: 10px;
  font-weight: 600;
}

.order-summary-card.success {
  background: linear-gradient(180deg, rgba(232, 255, 244, 0.96), rgba(255, 255, 255, 0.95));
}

.order-summary-card.success .order-summary-top i {
  background: rgba(24, 169, 87, 0.12);
  color: #15924f;
}

.order-summary-card.pending {
  background: linear-gradient(180deg, rgba(255, 248, 230, 0.98), rgba(255, 255, 255, 0.95));
}

.order-summary-card.pending .order-summary-top i {
  background: rgba(255, 159, 28, 0.14);
  color: #d07b00;
}

.order-summary-card.cancelled {
  background: linear-gradient(180deg, rgba(255, 238, 243, 0.98), rgba(255, 255, 255, 0.95));
}

.order-summary-card.cancelled .order-summary-top i {
  background: rgba(234, 76, 103, 0.12);
  color: #cc4762;
}

.order-filter-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-bottom: 14px;
  scrollbar-width: none;
}

.order-filter-row::-webkit-scrollbar {
  display: none;
}

.order-filter-btn {
  flex: 0 0 auto;
  padding: 8px 14px;
  border: 1px solid rgba(213, 220, 243, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #6d7ca8;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(54, 69, 126, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.order-filter-btn.active {
  background: linear-gradient(135deg, #5367ff, #7b61ff);
  border-color: transparent;
  color: white;
  box-shadow: 0 12px 22px rgba(88, 93, 233, 0.28);
}

.order-status-list {
  display: grid;
  gap: 10px;
}

.order-status-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(218, 223, 243, 0.95);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 251, 255, 0.94));
  box-shadow: 0 12px 22px rgba(38, 53, 109, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.order-status-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(84, 103, 255, 0.08);
}

.order-status-card.expanded {
  box-shadow: 0 16px 28px rgba(38, 53, 109, 0.1);
  transform: translateY(-1px);
}

.order-status-card.success {
  border-color: rgba(192, 233, 205, 0.95);
}

.order-status-card.success::before {
  background: linear-gradient(90deg, #23c16b, #89e6ae);
}

.order-status-card.pending {
  border-color: rgba(246, 223, 174, 0.95);
}

.order-status-card.pending::before {
  background: linear-gradient(90deg, #ffab2d, #ffd476);
}

.order-status-card.cancelled {
  border-color: rgba(245, 206, 217, 0.95);
}

.order-status-card.cancelled::before {
  background: linear-gradient(90deg, #ff5f81, #ff99ab);
}

.order-status-header {
  width: 100%;
  padding: 14px 15px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  cursor: pointer;
}

.order-status-header h3 {
  color: #2b3764;
  font-size: 22px;
  line-height: 1;
  margin-bottom: 7px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.order-status-line {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  color: #7b88ab;
  font-size: 12px;
}

.order-status-line strong {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.02em;
}

.order-status-card.success .order-status-line strong {
  color: #118347;
  background: rgba(24, 169, 87, 0.12);
}

.order-status-card.pending .order-status-line strong {
  color: #cf7a00;
  background: rgba(255, 159, 28, 0.16);
}

.order-status-card.cancelled .order-status-line strong {
  color: #cd3f5b;
  background: rgba(234, 76, 103, 0.14);
}

.order-status-arrow {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(89, 102, 255, 0.12), rgba(89, 102, 255, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5567ff;
  flex-shrink: 0;
  font-size: 12px;
  box-shadow: inset 0 0 0 1px rgba(188, 198, 243, 0.6);
}

.order-status-details {
  display: none;
  padding: 0 15px 15px;
  border-top: 1px solid rgba(221, 226, 244, 0.9);
}

.order-status-card.expanded .order-status-details {
  display: block;
}

.order-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding-top: 14px;
  margin-bottom: 12px;
}

.order-detail-item {
  padding: 12px;
  border-radius: 15px;
  background:
    linear-gradient(180deg, rgba(247, 249, 255, 0.98), rgba(242, 246, 255, 0.94));
  box-shadow: inset 0 0 0 1px rgba(224, 230, 247, 0.88);
}

.order-detail-item span,
.message-label {
  display: block;
  margin-bottom: 6px;
  color: #8692b4;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.order-detail-item strong {
  color: #273661;
  font-size: 13px;
  line-height: 1.45;
}

.order-message-box {
  padding: 14px;
  border-radius: 15px;
  box-shadow: inset 0 0 0 1px rgba(227, 232, 245, 0.72);
}

.order-message-box p {
  color: #42527f;
  font-size: 13px;
  line-height: 1.55;
}

.order-message-box.success {
  background: linear-gradient(180deg, rgba(236, 255, 244, 0.96), rgba(249, 255, 252, 0.96));
}

.order-message-box.pending {
  background: linear-gradient(180deg, rgba(255, 248, 231, 0.98), rgba(255, 252, 244, 0.98));
}

.order-message-box.cancelled {
  background: linear-gradient(180deg, rgba(255, 239, 244, 0.98), rgba(255, 249, 251, 0.98));
}

@media (max-width: 420px) {
  .order-status-header {
    padding: 13px 13px;
  }

  .order-status-header h3 {
    font-size: 20px;
  }

  .order-status-details {
    padding: 0 13px 13px;
  }

  .order-detail-grid {
    grid-template-columns: 1fr;
  }
}


/* =============================================
   RECHARGE PAGE
   ============================================= */
:root {
  --recharge-accent: #4f67ff;
}

.recharge-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, color-mix(in srgb, var(--recharge-accent) 16%, transparent), transparent 24%),
    linear-gradient(180deg, #fbfcff 0%, #f4f7ff 58%, #edf2ff 100%);
}

.recharge-shell {
  width: min(100%, 460px);
  margin: 0 auto;
  padding: 14px 12px 30px;
}

.recharge-hero {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  padding: 8px 2px;
}

.recharge-step-badge {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--recharge-accent), #6ca6ff);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  box-shadow: 0 16px 28px color-mix(in srgb, var(--recharge-accent) 28%, transparent);
  flex-shrink: 0;
}

.recharge-eyebrow,
.recharge-section-label {
  color: #7f8caf;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.recharge-hero-copy h1 {
  margin: 0;
  color: #2b3b6c;
  font-size: 22px;
  line-height: 1.1;
}

.recharge-summary-panel {
  border: 1px solid rgba(217, 223, 243, 0.95);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 24px rgba(37, 53, 109, 0.08);
}

.recharge-panel {
  border: 1px solid rgba(217, 223, 243, 0.95);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 30px rgba(37, 53, 109, 0.08);
  padding: 16px 14px 14px;
  margin-bottom: 14px;
}

.recharge-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.recharge-panel-head h2,
.recharge-summary-panel h3 {
  margin: 4px 0 0;
  color: #2b3b6c;
  font-size: 20px;
}

.recharge-status-pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--recharge-accent) 12%, white);
  color: var(--recharge-accent);
  font-size: 12px;
  font-weight: 700;
}

.recharge-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.recharge-package-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 13px 14px;
  border: 1.5px solid rgba(211, 218, 241, 0.9);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(43, 58, 110, 0.05);
  text-align: left;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.recharge-package-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(43, 58, 110, 0.1);
}

.recharge-package-card.featured {
  border-color: color-mix(in srgb, var(--recharge-accent) 40%, white);
  background: color-mix(in srgb, var(--recharge-accent) 4%, white);
}

.recharge-package-card.active {
  border-color: var(--recharge-accent);
  background: color-mix(in srgb, var(--recharge-accent) 7%, white);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--recharge-accent) 20%, transparent);
}

.recharge-package-card.disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.recharge-package-card.hidden-card {
  display: none;
}

.pkg-title {
  flex: 1;
  margin: 0;
  color: #1e2d5a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.pkg-price {
  color: var(--recharge-accent, #f07a2b);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.recharge-summary-panel {
  padding: 16px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.recharge-summary-panel p {
  color: #7f8daf;
  font-size: 12px;
  line-height: 1.5;
}

.recharge-price-box {
  min-width: 92px;
  padding: 12px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--recharge-accent) 10%, white);
  text-align: right;
}

.recharge-price-box span {
  display: block;
  margin-bottom: 4px;
  color: #7180a9;
  font-size: 11px;
}

.recharge-price-box strong {
  color: var(--recharge-accent);
  font-size: 18px;
}

.confirm-payment-panel {
  border: 1px solid rgba(217, 223, 243, 0.95);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 30px rgba(37, 53, 109, 0.08);
  overflow: hidden;
}

.confirm-payment-head {
  padding: 15px 16px;
  border-bottom: 1px solid rgba(222, 227, 244, 0.94);
}

.confirm-payment-head h3 {
  color: #2a3967;
  font-size: 20px;
}

.confirm-payment-list {
  display: grid;
}

.confirm-payment-row {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(227, 232, 245, 0.92);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.confirm-payment-row span {
  color: #4c5b88;
  font-size: 14px;
}

.confirm-payment-row strong {
  color: #27365f;
  font-size: 15px;
  text-align: right;
}

.confirm-note-box {
  padding: 16px;
  border-bottom: 1px solid rgba(227, 232, 245, 0.92);
}

.confirm-note-label,
.confirm-uid-field span {
  display: block;
  margin-bottom: 8px;
  color: #7c8aaf;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.confirm-note-box ul {
  padding-left: 18px;
  color: #394973;
  font-size: 14px;
  line-height: 1.7;
}

.confirm-uid-field {
  display: block;
  padding: 16px;
}

.confirm-uid-field input {
  width: 100%;
  border: 1px solid rgba(202, 211, 237, 0.95);
  border-radius: 16px;
  background: rgba(250, 251, 255, 0.98);
  color: #27365f;
  padding: 15px 14px;
  outline: none;
}

.confirm-place-order-btn {
  width: calc(100% - 32px);
  margin: 0 16px 16px;
  border: none;
  border-radius: 18px;
  padding: 15px 18px;
  background: linear-gradient(135deg, #3461ff, #2547de);
  color: white;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(52, 97, 255, 0.26);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.confirm-place-order-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(52, 97, 255, 0.34);
}

.confirm-place-order-btn:active:not(:disabled) {
  transform: translateY(0);
}

.confirm-place-order-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.confirm-uid-field input:focus {
  border-color: var(--recharge-accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--recharge-accent) 18%, transparent);
}

@media (max-width: 420px) {
  .recharge-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .recharge-step-badge {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .recharge-package-card {
    padding: 11px 12px;
  }

  .pkg-title {
    font-size: 13px;
  }

  .pkg-price {
    font-size: 14px;
  }

  .recharge-summary-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .recharge-price-box {
    width: 100%;
    text-align: left;
  }

  .confirm-payment-row {
    padding: 13px 14px;
  }

  .confirm-note-box,
  .confirm-uid-field {
    padding: 14px;
  }

  .confirm-place-order-btn {
    width: calc(100% - 28px);
    margin: 0 14px 14px;
  }
}


/* =============================================
   TOAST NOTIFICATIONS
   ============================================= */
#toastContainer {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  width: min(90vw, 340px);
}

.toast {
  width: 100%;
  padding: 13px 18px;
  border-radius: 14px;
  background: rgba(22, 32, 62, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: white;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  transition: opacity 0.26s ease, transform 0.26s ease;
  pointer-events: auto;
  text-align: center;
  line-height: 1.4;
}

.toast.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.toast.success {
  background: rgba(21, 112, 55, 0.95);
}

.toast.error {
  background: rgba(185, 28, 28, 0.95);
}

.toast.info {
  background: rgba(30, 64, 175, 0.95);
}

.toast.warning {
  background: rgba(180, 90, 0, 0.95);
}

/* =============================================
   PAYMENT POPUP
   ============================================= */

.payment-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.payment-popup-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.payment-popup {
  background: #fff;
  border-radius: 28px 28px 0 0;
  width: min(100%, 480px);
  padding: 28px 22px 36px;
  position: relative;
  transform: translateY(100%);
  transition: transform 0.32s cubic-bezier(0.34, 1.2, 0.64, 1);
  box-shadow: 0 -8px 40px rgba(15, 23, 42, 0.16);
}

.payment-popup-overlay.active .payment-popup {
  transform: translateY(0);
}

.payment-popup-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: #f1f5f9;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-popup-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.payment-popup-logo-wrap {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
}

.payment-popup-logo-wrap img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.payment-popup-logo-wrap span {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  border-radius: 16px;
}

.payment-popup-header h3 {
  margin: 0 0 4px;
  font-size: 20px;
  color: #1e293b;
}

.popup-merchant-label {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}

.popup-merchant-label strong {
  color: #1e293b;
}

.payment-popup-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
}

.popup-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
}

.popup-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  color: #1e293b;
  background: #f8fafc;
  transition: border-color 0.18s;
}

.popup-input:focus {
  border-color: #4f67ff;
  background: #fff;
}

.payment-popup-pay-btn {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 16px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: opacity 0.18s, transform 0.18s;
  font-family: inherit;
}

.payment-popup-pay-btn:active {
  opacity: 0.85;
  transform: scale(0.98);
}

/* =============================================
   MANUAL PAYMENT POPUP
   ============================================= */

.manual-pay-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  z-index: 2100;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.manual-pay-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.manual-pay-sheet {
  background: #f1f5f9;
  border-radius: 28px 28px 0 0;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  transform: translateY(100%);
  transition: transform 0.32s cubic-bezier(0.34, 1.1, 0.64, 1);
  overflow: hidden;
}

.manual-pay-overlay.active .manual-pay-sheet {
  transform: translateY(0);
}

.manual-pay-amount-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 18px 22px 14px;
  background: #f1f5f9;
}

.manual-pay-amount-bar span {
  font-size: 22px;
  font-weight: 700;
  color: #475569;
}

.manual-pay-amount-bar strong {
  font-size: 32px;
  font-weight: 800;
  color: #1e293b;
}

.manual-pay-card {
  margin: 0 14px;
  border-radius: 20px;
  padding: 22px 20px 24px;
  color: #fff;
}

.manual-pay-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 16px;
  text-align: center;
  color: #fff;
}

.manual-trx-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: none;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  margin-bottom: 18px;
  color: #1e293b;
  background: #fff;
}

.manual-pay-steps {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.manual-pay-steps li {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
}

.manual-highlight {
  color: #fde047;
  font-weight: 700;
}

.manual-copy-btn {
  background: rgba(255,255,255,0.2);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 12px;
  padding: 3px 10px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  margin-left: 6px;
  vertical-align: middle;
}

.manual-verify-btn {
  display: block;
  width: calc(100% - 28px);
  margin: 16px 14px 24px;
  padding: 16px;
  border: none;
  border-radius: 16px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.18s, transform 0.18s;
}

.manual-verify-btn:active {
  opacity: 0.85;
  transform: scale(0.98);
}

.wallet-activity-pending {
  border: 1.5px dashed rgba(234, 179, 8, 0.5);
  background: rgba(254, 252, 232, 0.7);
}

.pending-badge {
  display: inline-block;
  background: #eab308;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 6px;
  margin-left: 6px;
  vertical-align: middle;
  letter-spacing: 0.04em;
}
