/* ── AUTH PAGES — WHITE & GREEN THEME ── */
* { box-sizing: border-box; margin: 0; padding: 0; }

/* ── KEYFRAMES ── */
@keyframes spin          { to { transform: rotate(360deg); } }
@keyframes logo3d        { 0%,100%{transform:rotateY(0deg)}25%{transform:rotateY(-20deg)}75%{transform:rotateY(20deg)} }
@keyframes logoBob       { 0%,100%{transform:translateY(0)}50%{transform:translateY(-5px)} }
@keyframes cardIn        { from{opacity:0;transform:translateY(28px) scale(.97)}to{opacity:1;transform:translateY(0) scale(1)} }
@keyframes fadeInDown    { from{opacity:0;transform:translateY(-14px)}to{opacity:1;transform:translateY(0)} }
@keyframes blob          { 0%,100%{border-radius:60% 40% 30% 70%/60% 30% 70% 40%;transform:translate(0,0) scale(1)}33%{border-radius:30% 60% 70% 40%/50% 60% 30% 60%;transform:translate(20px,-15px) scale(1.05)}66%{border-radius:50% 60% 30% 40%/40% 50% 60% 50%;transform:translate(-10px,10px) scale(.97)} }
@keyframes pulse         { 0%,100%{box-shadow:0 0 0 0 rgba(0,200,83,.35)}70%{box-shadow:0 0 0 10px rgba(0,200,83,0)} }
@keyframes shimmer       { from{background-position:-200% 0}to{background-position:200% 0} }
@keyframes iconBounce    { 0%,100%{transform:scale(1)}40%{transform:scale(1.15) rotate(-5deg)}60%{transform:scale(1.05) rotate(4deg)} }

/* ── BACKGROUND ── */
body.auth-body {
  min-height: 100vh;
  background: #f4f8f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

/* animated blobs in bg */
body.auth-body::before,
body.auth-body::after {
  content: '';
  position: fixed;
  border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  filter: blur(60px);
  opacity: .18;
  pointer-events: none;
  animation: blob 10s ease-in-out infinite;
  z-index: 0;
}
body.auth-body::before {
  width: 520px; height: 520px;
  background: #00c853;
  top: -120px; left: -120px;
}
body.auth-body::after {
  width: 420px; height: 420px;
  background: #00e676;
  bottom: -100px; right: -80px;
  animation-delay: -5s;
}

/* ── LOGO ── */
.auth-logo {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-family: 'Nunito', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: #111;
  text-decoration: none;
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 1;
  animation: fadeInDown .5s ease both;
}

.auth-logo svg {
  perspective: 300px;
  animation: logo3d 5s ease-in-out infinite, logoBob 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(0,200,83,.45));
  transform-style: preserve-3d;
  transition: filter .3s;
}
.auth-logo:hover svg {
  filter: drop-shadow(0 6px 20px rgba(0,200,83,.7));
  animation-play-state: paused;
  transform: rotateY(25deg) scale(1.12);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), filter .3s;
}

/* ── CARD ── */
.auth-card {
  background: #fff;
  border: 1.5px solid rgba(0,200,83,.2);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 8px 40px rgba(0,200,83,.1), 0 2px 12px rgba(0,0,0,.06);
  position: relative;
  z-index: 1;
  animation: cardIn .55s cubic-bezier(.22,1,.36,1) both;
}

/* top green accent bar */
.auth-card::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #00c853, transparent);
  border-radius: 0 0 6px 6px;
}

.auth-card-title {
  font-family: 'Nunito', sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: #0a2e14;
  text-align: center;
  margin-bottom: 1.5rem;
}

/* ── INPUTS ── */
.auth-field { margin-bottom: 1rem; }

.auth-field input {
  width: 100%;
  padding: .82rem 1rem;
  background: #f6faf7;
  border: 1.5px solid #d6e8da;
  border-radius: 11px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .95rem;
  color: #111;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.auth-field input:focus {
  border-color: #00c853;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,200,83,.12);
}

.auth-field input::placeholder { color: #aec8b4; }

.pw-field { position: relative; }
.pw-field input { padding-right: 3rem; }

.pw-eye {
  position: absolute;
  right: .85rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #9dbfa7;
  display: flex;
  align-items: center;
  padding: 0;
  transition: color .15s;
}
.pw-eye:hover { color: #00c853; }

/* ── ROW (keep me / forgot) ── */
.auth-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  font-size: .82rem;
}

.keep-me {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: #6b8a72;
  cursor: pointer;
}

.keep-me input[type="checkbox"] {
  width: 15px; height: 15px;
  accent-color: #00c853;
  cursor: pointer;
}

/* ── LINKS ── */
.auth-link {
  color: #00a846;
  text-decoration: none;
  font-weight: 700;
  font-size: .82rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  transition: color .15s;
}
.auth-link:hover { color: #007a35; text-decoration: underline; }

/* ── SUBMIT BUTTON ── */
.auth-submit {
  width: 100%;
  padding: .9rem;
  background: linear-gradient(135deg, #00c853 0%, #00a846 100%);
  color: #fff;
  border: none;
  border-radius: 11px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s cubic-bezier(.34,1.56,.64,1), box-shadow .2s, filter .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 18px rgba(0,200,83,.3);
  letter-spacing: .01em;
}

.auth-submit:hover:not(:disabled) {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 28px rgba(0,200,83,.45);
  filter: brightness(1.06);
}
.auth-submit:active:not(:disabled) {
  transform: scale(.98);
  box-shadow: 0 2px 10px rgba(0,200,83,.25);
}
.auth-submit:disabled { opacity: .6; cursor: not-allowed; }

/* ── BOTTOM TEXT ── */
.auth-bottom {
  text-align: center;
  font-size: .85rem;
  color: #7a9e82;
}

/* ── MESSAGES ── */
.auth-error {
  min-height: 1.1rem;
  margin-bottom: .75rem;
  text-align: center;
  font-size: .85rem;
  font-weight: 600;
  color: #e53935;
}

.auth-success { color: #00a846 !important; }

/* ── SPINNER ── */
.auth-spinner {
  width: 18px; height: 18px;
  border: 2.5px solid rgba(255,255,255,.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: none;
}

/* ── VERIFY PAGE ── */
.verify-icon {
  width: 68px; height: 68px;
  background: rgba(0,200,83,.1);
  border: 2px solid rgba(0,200,83,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.9rem;
  animation: iconBounce 2.4s ease-in-out infinite, pulse 2.4s ease-in-out infinite;
}

.verify-email-text {
  text-align: center;
  font-size: .85rem;
  color: #6b8a72;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.verify-email-text b { color: #00a846; }

.verify-resend {
  text-align: center;
  margin-top: .75rem;
  font-size: .82rem;
  color: #9dbfa7;
}

/* ── ACCOUNT NAVBAR ── */
body.acc-body {
  background: #f4f8f5;
  font-family: 'Space Grotesk', sans-serif;
  min-height: 100vh;
  color: #111;
  display: flex;
  flex-direction: column;
}

body.acc-body .acc-main {
  flex: 1;
}

.acc-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 60px;
  background: #fff;
  border-bottom: 1px solid rgba(0,200,83,.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,200,83,.07);
}

.acc-nav-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Nunito', sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  color: #0a2e14;
  text-decoration: none;
}

.acc-nav-logo svg {
  animation: logo3d 5s ease-in-out infinite, logoBob 3s ease-in-out infinite;
  filter: drop-shadow(0 3px 8px rgba(0,200,83,.4));
}

.acc-nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.acc-user-btn {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(0,200,83,.08);
  border: 1.5px solid rgba(0,200,83,.25);
  border-radius: 100px;
  padding: .35rem .75rem .35rem .35rem;
  cursor: pointer;
  color: #0a2e14;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  transition: background .2s, box-shadow .2s;
}
.acc-user-btn:hover {
  background: rgba(0,200,83,.15);
  box-shadow: 0 2px 12px rgba(0,200,83,.2);
}

.acc-user-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg,#00c853,#00a846);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-size: .85rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}

.acc-dropdown {
  position: absolute;
  top: calc(100% + .5rem);
  right: 0;
  background: #fff;
  border: 1.5px solid rgba(0,200,83,.18);
  border-radius: 14px;
  padding: .5rem;
  min-width: 185px;
  box-shadow: 0 10px 36px rgba(0,0,0,.1);
  display: none;
  z-index: 200;
  animation: cardIn .2s ease both;
}
.acc-dropdown.open { display: block; }

.acc-dropdown-email {
  font-size: .75rem;
  color: #9dbfa7;
  padding: .4rem .75rem .75rem;
  border-bottom: 1px solid #e8f4eb;
  margin-bottom: .4rem;
}

.acc-dropdown a, .acc-dropdown button {
  display: flex;
  align-items: center;
  gap: .6rem;
  width: 100%;
  padding: .6rem .75rem;
  border-radius: 9px;
  font-size: .88rem;
  color: #1a3a20;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: background .15s, color .15s;
}
.acc-dropdown a:hover { background: #f0f9f2; color: #00a846; }
.acc-dropdown .logout-btn { color: #e53935; }
.acc-dropdown .logout-btn:hover { background: #fff5f5; }

/* ── MAIN ── */
.acc-main {
  padding: 80px 2rem 3rem;
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
}

/* Profile card */
.acc-profile-card {
  background: #fff;
  border: 1.5px solid rgba(0,200,83,.18);
  border-radius: 18px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 20px rgba(0,200,83,.07);
  animation: cardIn .5s ease both;
}

.acc-profile-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,200,83,.15), rgba(0,200,83,.06));
  border: 2.5px solid rgba(0,200,83,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #00a846;
  flex-shrink: 0;
}

.acc-profile-info { flex: 1; }

.acc-profile-name {
  font-family: 'Nunito', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: #0a2e14;
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .2rem;
}

.acc-badge {
  font-size: .65rem;
  font-weight: 700;
  padding: .15rem .45rem;
  border-radius: 100px;
  background: rgba(0,200,83,.12);
  border: 1px solid rgba(0,200,83,.3);
  color: #00a846;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.acc-profile-email { font-size: .83rem; color: #7a9e82; }

.acc-logout-btn {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1rem;
  background: #fff5f5;
  border: 1px solid #ffd0d0;
  border-radius: 9px;
  color: #e53935;
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s;
  text-decoration: none;
  flex-shrink: 0;
}
.acc-logout-btn:hover { background: #ffe5e5; }

/* Wallet card */
.acc-wallet-card {
  background: linear-gradient(135deg, #00c853 0%, #00a846 100%);
  border-radius: 18px;
  padding: 1.35rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 8px 28px rgba(0,200,83,.35);
  animation: cardIn .55s ease both;
  position: relative;
  overflow: hidden;
}

/* shimmer on wallet */
.acc-wallet-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.15) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
  pointer-events: none;
}

.acc-wallet-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.acc-wallet-info { flex: 1; }

.acc-wallet-label {
  font-size: .75rem;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .2rem;
}

.acc-wallet-amount {
  font-family: 'Nunito', sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: #fff;
}

.acc-deposit-btn {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .65rem 1.1rem;
  background: rgba(255,255,255,.2);
  border: 1.5px solid rgba(255,255,255,.5);
  border-radius: 11px;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: .88rem;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s, transform .18s;
  flex-shrink: 0;
  backdrop-filter: blur(6px);
}
.acc-deposit-btn:hover {
  background: rgba(255,255,255,.32);
  transform: translateY(-1px);
}

/* Tabs */
.acc-tabs {
  display: flex;
  gap: .5rem;
  margin-bottom: 1rem;
}

.acc-tab {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1.15rem;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  border: 1.5px solid #d6e8da;
  background: #fff;
  color: #7a9e82;
  font-family: inherit;
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
}

.acc-tab.active {
  background: #00c853;
  border-color: #00c853;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,200,83,.3);
}

.acc-tab:not(.active):hover {
  border-color: #00c853;
  color: #00a846;
  background: rgba(0,200,83,.05);
}

/* Orders */
.acc-orders-list { display: flex; flex-direction: column; gap: .75rem; }

.acc-order-card {
  background: #fff;
  border: 1.5px solid #e8f4eb;
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: border-color .2s, box-shadow .2s, transform .18s;
}
.acc-order-card:hover {
  border-color: rgba(0,200,83,.35);
  box-shadow: 0 4px 18px rgba(0,200,83,.1);
  transform: translateY(-1px);
}

.acc-order-id { font-family: monospace; font-size: .78rem; color: #00a846; margin-bottom: .2rem; }
.acc-order-date { font-size: .78rem; color: #9dbfa7; margin-bottom: .4rem; }

.acc-order-items { display: flex; flex-wrap: wrap; gap: .3rem; }

.acc-order-tag {
  background: #f0f9f2;
  border: 1px solid #d0ebd6;
  border-radius: 5px;
  padding: .15rem .45rem;
  font-size: .72rem;
  color: #4a7a56;
}

.acc-order-amount {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  color: #0a2e14;
  text-align: right;
  margin-bottom: .3rem;
}

.acc-order-status {
  font-size: .7rem;
  font-weight: 700;
  padding: .15rem .5rem;
  border-radius: 5px;
  background: rgba(0,200,83,.1);
  border: 1px solid rgba(0,200,83,.25);
  color: #00a846;
  text-transform: uppercase;
}

/* Empty state */
@keyframes emptyFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes emptyFadeIn { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }

.acc-empty {
  background: #fff;
  border: 1.5px dashed #c8e6cc;
  border-radius: 18px;
  padding: 3rem 1.5rem;
  text-align: center;
  animation: emptyFadeIn .45s ease both;
}

.acc-empty-svg {
  margin: 0 auto .75rem;
  width: 80px; height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.empty-box-svg {
  width: 80px; height: 80px;
  animation: emptyFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 6px 12px rgba(0,200,83,.18));
}

.acc-empty-icon { font-size: 2.5rem; margin-bottom: .75rem; }

.acc-empty h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #1a3a20;
  margin-bottom: .4rem;
}

.acc-empty p { font-size: .83rem; color: #9dbfa7; margin-bottom: 1.25rem; }

.acc-browse-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .65rem 1.25rem;
  background: #00c853;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: .9rem;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .18s;
  box-shadow: 0 4px 14px rgba(0,200,83,.3);
}
.acc-browse-btn:hover { background: #00a846; transform: translateY(-1px); }

/* Profile settings */
.acc-settings-card {
  background: #fff;
  border: 1.5px solid #e8f4eb;
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 12px rgba(0,200,83,.05);
}

.acc-settings-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  color: #7a9e82;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .78rem;
}

.acc-settings-field { margin-bottom: .875rem; }

.acc-settings-label {
  font-size: .75rem;
  color: #9dbfa7;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .35rem;
}

.acc-settings-input {
  width: 100%;
  padding: .7rem 1rem;
  background: #f6faf7;
  border: 1.5px solid #d6e8da;
  border-radius: 10px;
  color: #111;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .92rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.acc-settings-input:focus {
  border-color: #00c853;
  box-shadow: 0 0 0 3px rgba(0,200,83,.1);
}
.acc-settings-input:disabled { opacity: .5; cursor: not-allowed; }

.acc-save-btn {
  padding: .65rem 1.5rem;
  background: #00c853;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: .9rem;
  cursor: pointer;
  transition: background .2s, transform .18s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(0,200,83,.25);
}
.acc-save-btn:hover { background: #00a846; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,200,83,.35); }

.acc-msg { font-size: .82rem; font-weight: 600; margin-top: .5rem; min-height: 1rem; }

/* Topup modal */
.topup-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.topup-modal {
  position: relative;
  z-index: 301;
  background: #fff;
  border: 1.5px solid rgba(0,200,83,.2);
  border-radius: 20px;
  padding: 2rem;
  width: 100%; max-width: 400px;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
  animation: cardIn .3s ease both;
}

.topup-modal h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: #0a2e14;
  margin-bottom: .75rem;
}

.topup-hint { font-size: .83rem; color: #7a9e82; margin-bottom: 1.25rem; line-height: 1.5; }

.topup-amounts {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: .5rem; margin-bottom: 1rem;
}

.topup-amt {
  padding: .65rem;
  background: #f6faf7;
  border: 1.5px solid #d6e8da;
  border-radius: 10px;
  color: #1a3a20;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem; font-weight: 800;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .18s;
}
.topup-amt:hover { border-color: #00c853; transform: translateY(-1px); }
.topup-amt.selected { border-color: #00c853; background: rgba(0,200,83,.1); color: #00a846; }

.topup-custom {
  width: 100%;
  padding: .7rem 1rem;
  background: #f6faf7;
  border: 1.5px solid #d6e8da;
  border-radius: 10px;
  color: #111;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .95rem;
  outline: none;
  margin-bottom: 1rem;
  transition: border-color .2s, box-shadow .2s;
}
.topup-custom:focus { border-color: #00c853; box-shadow: 0 0 0 3px rgba(0,200,83,.1); }
.topup-custom::placeholder { color: #aec8b4; }

.topup-err { font-size: .82rem; color: #e53935; font-weight: 600; min-height: 1rem; margin-bottom: .5rem; }

.topup-pay {
  width: 100%;
  padding: .88rem;
  background: linear-gradient(135deg,#00c853,#00a846);
  border: none;
  border-radius: 11px;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem; font-weight: 800;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  transition: transform .18s, box-shadow .2s, filter .2s;
  box-shadow: 0 4px 18px rgba(0,200,83,.3);
}
.topup-pay:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(0,200,83,.45);
  filter: brightness(1.05);
}
.topup-pay:disabled { opacity: .6; cursor: not-allowed; }

.topup-close-btn {
  float: right;
  background: none; border: none;
  color: #9dbfa7;
  font-size: 1.2rem; cursor: pointer;
  transition: color .15s;
}
.topup-close-btn:hover { color: #e53935; }

/* ── ACCOUNT FOOTER ── */
.acc-footer {
  background: #0a150d;
  margin-top: 4rem;
  padding: 3rem 1.5rem 0;
}

.acc-footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.acc-footer-logo {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-family: 'Nunito', sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  margin-bottom: .75rem;
}

.acc-footer-brand p {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  line-height: 1.65;
}

.acc-footer-col h4 {
  font-family: 'Nunito', sans-serif;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #00c853;
  margin-bottom: .85rem;
}

.acc-footer-col a {
  display: block;
  font-size: .83rem;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  margin-bottom: .5rem;
  transition: color .15s;
}
.acc-footer-col a:hover { color: #fff; }

.acc-footer-bottom {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.1rem 0;
  font-size: .75rem;
  color: rgba(255,255,255,.25);
}

@media (max-width: 620px) {
  .acc-footer-inner { grid-template-columns: 1fr 1fr; }
  .acc-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  .acc-profile-card { flex-wrap: wrap; }
  .acc-logout-btn { width: 100%; justify-content: center; }
  .topup-amounts { grid-template-columns: repeat(2,1fr); }
}
