/* BAD GIRL Portal - Premium Dark Theme */
/* Developer: JK DEVELOPER */

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

:root {
  --bg: #0a0a0f;
  --bg2: #111118;
  --card: rgba(255,255,255,.04);
  --card-hover: rgba(255,255,255,.07);
  --line: rgba(255,255,255,.08);
  --text: #f0f0f5;
  --muted: rgba(255,255,255,.55);
  --accent: #ff4d6d;
  --accent2: #ff1744;
  --accent-glow: rgba(255,77,109,.25);
  --accent-soft: rgba(255,77,109,.12);
  --green: #00e676;
  --green-soft: rgba(0,230,118,.12);
  --danger: #ff1744;
  --danger-soft: rgba(255,23,68,.12);
  --blue: #448aff;
  --blue-soft: rgba(68,138,255,.12);
  --purple: #e040fb;
  --yellow: #ffd600;
  --gold: #ffab00;
  --radius: 14px;
  --shadow: 0 8px 32px rgba(0,0,0,.4);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Animated background */
body::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 20% 50%, rgba(255,77,109,.06) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(224,64,251,.04) 0%, transparent 50%),
              radial-gradient(circle at 50% 80%, rgba(68,138,255,.04) 0%, transparent 50%);
  animation: bgFloat 20s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}

@keyframes bgFloat {
  0%,100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(2%, -2%) rotate(1deg); }
  66% { transform: translate(-1%, 1%) rotate(-1deg); }
}

a { color: inherit; text-decoration: none; }

::selection { background: var(--accent); color: #fff; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 99px; }

/* ---- WRAP ---- */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 16px 30px; }

/* ---- NAVBAR ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(10,10,15,.85);
  border-bottom: 1px solid var(--line);
  padding: 0 16px;
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.5px;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff4d6d, #ff1744, #e040fb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,77,109,.35);
  animation: logoPulse 3s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.brand-logo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,.2) 50%, transparent 60%);
  animation: logoShine 3s ease-in-out infinite;
}

@keyframes logoPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(255,77,109,.35); }
  50% { box-shadow: 0 4px 30px rgba(255,77,109,.55); }
}

@keyframes logoShine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.brand-text { color: var(--accent); }
.brand-text span { color: var(--text); font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all .2s ease;
  background: transparent;
  color: var(--text);
  font-family: inherit;
  white-space: nowrap;
}

.btn:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.15);
  transform: translateY(-1px);
}

.btn.primary {
  background: linear-gradient(135deg, #ff4d6d, #ff1744);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 15px rgba(255,77,109,.3);
}

.btn.primary:hover {
  box-shadow: 0 6px 25px rgba(255,77,109,.5);
  transform: translateY(-2px);
}

.btn.success {
  background: linear-gradient(135deg, #00e676, #00c853);
  border-color: transparent;
  color: #0a0a0f;
}

.btn.danger {
  background: linear-gradient(135deg, #ff1744, #d50000);
  border-color: transparent;
  color: #fff;
}

.btn.sm { padding: 6px 12px; font-size: 12px; border-radius: 8px; }

.btn.ghost { border-color: transparent; }

.btn.outline-accent {
  border-color: var(--accent);
  color: var(--accent);
}

.btn.outline-accent:hover {
  background: var(--accent-soft);
}

/* ---- CARDS ---- */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  backdrop-filter: blur(10px);
  transition: all .3s ease;
}

.card:hover {
  border-color: rgba(255,255,255,.12);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 10px;
}

.card-glow {
  box-shadow: 0 0 30px rgba(255,77,109,.08);
}

/* ---- GRID ---- */
.grid { display: grid; gap: 16px; }
.grid-12 { grid-template-columns: repeat(12, 1fr); }
.col-1 { grid-column: span 1; } .col-2 { grid-column: span 2; }
.col-3 { grid-column: span 3; } .col-4 { grid-column: span 4; }
.col-5 { grid-column: span 5; } .col-6 { grid-column: span 6; }
.col-7 { grid-column: span 7; } .col-8 { grid-column: span 8; }
.col-9 { grid-column: span 9; } .col-12 { grid-column: span 12; }

@media(max-width: 900px) {
  .col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-12 { grid-column: span 12; }
  .grid-12 { grid-template-columns: 1fr; }
}

/* ---- STAT CARDS ---- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.stat-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all .3s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.stat-icon.pink { background: var(--accent-soft); }
.stat-icon.green { background: var(--green-soft); }
.stat-icon.blue { background: var(--blue-soft); }
.stat-icon.purple { background: rgba(224,64,251,.12); }
.stat-icon.gold { background: rgba(255,171,0,.12); }

.stat-info { flex: 1; }
.stat-value { font-size: 26px; font-weight: 800; letter-spacing: -1px; }
.stat-label { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ---- FORMS ---- */
input, select, textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.3);
  color: var(--text);
  outline: none;
  font-family: inherit;
  font-size: 14px;
  transition: all .2s ease;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

input::placeholder { color: rgba(255,255,255,.25); }

label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  display: block;
  margin: 10px 0 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

select option { background: #1a1a24; }

/* ---- SERVICE GRID ---- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.service-tile {
  display: flex;
  flex-direction: column;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255,77,109,.05);
  border: 1px solid rgba(255,77,109,.12);
  transition: all .3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,77,109,.06), transparent);
  transition: left .5s ease;
}

.service-tile:hover::before { left: 100%; }

.service-tile:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255,77,109,.15);
}

.service-tile .s-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.service-tile b {
  font-size: 14px;
  font-weight: 700;
}

.service-tile .s-price {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  padding: 4px 10px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  width: fit-content;
}

.service-tile .s-desc {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

/* ---- CATEGORY HEADER ---- */
.cat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 24px 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.cat-header .cat-icon {
  font-size: 22px;
}

.cat-header h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.cat-header .cat-count {
  font-size: 12px;
  color: var(--muted);
  margin-left: auto;
  background: var(--card);
  padding: 3px 10px;
  border-radius: 99px;
  border: 1px solid var(--line);
}

/* ---- TABLES ---- */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th {
  padding: 12px 14px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

.table td {
  padding: 11px 14px;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  vertical-align: middle;
}

.table tr:hover td {
  background: rgba(255,255,255,.02);
}

.table tr:last-child td { border-bottom: none; }

/* ---- BADGES ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.badge.on, .badge.success {
  background: var(--green-soft);
  color: var(--green);
  border: 1px solid rgba(0,230,118,.2);
}

.badge.off, .badge.danger, .badge.failed {
  background: var(--danger-soft);
  color: var(--danger);
  border: 1px solid rgba(255,23,68,.2);
}

.badge.pending {
  background: rgba(255,214,0,.1);
  color: var(--yellow);
  border: 1px solid rgba(255,214,0,.2);
}

.badge.info {
  background: var(--blue-soft);
  color: var(--blue);
  border: 1px solid rgba(68,138,255,.2);
}

.badge.user-badge {
  background: rgba(255,255,255,.06);
  color: var(--text);
  border: 1px solid var(--line);
  font-weight: 600;
}

/* ---- NOTICES / ALERTS ---- */
.notice {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  margin: 10px 0;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.notice.ok, .notice.success {
  border-color: rgba(0,230,118,.25);
  background: rgba(0,230,118,.06);
}

.notice.err, .notice.error {
  border-color: rgba(255,23,68,.25);
  background: rgba(255,23,68,.06);
}

.notice.warn {
  border-color: rgba(255,214,0,.25);
  background: rgba(255,214,0,.06);
}

.notice.info {
  border-color: rgba(68,138,255,.25);
  background: rgba(68,138,255,.06);
}

/* ---- ANNOUNCEMENT BAR ---- */
.announcement {
  background: linear-gradient(90deg, rgba(255,77,109,.1), rgba(224,64,251,.1), rgba(255,77,109,.1));
  border: 1px solid rgba(255,77,109,.15);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin: 16px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: announcePulse 4s ease-in-out infinite;
}

@keyframes announcePulse {
  0%,100% { border-color: rgba(255,77,109,.15); }
  50% { border-color: rgba(255,77,109,.35); }
}

.announcement .ann-icon { font-size: 24px; flex-shrink: 0; }
.announcement .ann-text { flex: 1; }
.announcement .ann-title { font-weight: 700; font-size: 14px; }
.announcement .ann-msg { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* ---- WALLET CARD ---- */
.wallet-card {
  background: linear-gradient(135deg, rgba(255,77,109,.12), rgba(224,64,251,.08));
  border: 1px solid rgba(255,77,109,.2);
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.wallet-card::after {
  content: '₹';
  position: absolute;
  right: -10px;
  bottom: -20px;
  font-size: 120px;
  font-weight: 900;
  opacity: .04;
  color: var(--accent);
}

.wallet-balance {
  font-size: 32px;
  font-weight: 900;
  color: var(--green);
  letter-spacing: -1px;
}

.wallet-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

/* ---- ROW / FLEX ---- */
.row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.row.between { justify-content: space-between; }
.row.end { justify-content: flex-end; }

/* ---- MISC ---- */
h1 { font-size: 28px; font-weight: 800; margin: 0 0 8px; letter-spacing: -0.5px; }
h2 { font-size: 18px; font-weight: 700; margin: 0 0 12px; }
h3 { font-size: 16px; font-weight: 700; margin: 0 0 8px; }
p { color: var(--muted); }
.small { font-size: 12px; color: var(--muted); }
.text-accent { color: var(--accent); }
.text-green { color: var(--green); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; }
.fw-700 { font-weight: 700; } .fw-800 { font-weight: 800; }

hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 16px 0;
}

pre {
  white-space: pre-wrap;
  word-break: break-all;
  background: rgba(0,0,0,.4);
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
  max-height: 400px;
  overflow-y: auto;
}

/* ---- FOOTER ---- */
.footer {
  margin-top: 30px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer .f-brand { font-weight: 800; color: var(--accent); }
.footer .f-dev { font-size: 12px; color: var(--muted); }
.footer .f-dev a { color: var(--accent); }

/* ---- HERO SECTION (Landing) ---- */
.hero {
  text-align: center;
  padding: 60px 20px 40px;
  position: relative;
}

.hero h1 {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, #ff4d6d, #e040fb, #448aff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}

.hero p {
  font-size: 16px;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 24px;
}

.hero-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,77,109,.12), transparent 70%);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: -1;
}

/* Feature tiles on landing */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.feature-tile {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  text-align: left;
  transition: all .3s ease;
}

.feature-tile:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255,77,109,.1);
}

.feature-tile .f-icon { font-size: 30px; margin-bottom: 10px; }
.feature-tile h3 { font-size: 15px; margin-bottom: 4px; }
.feature-tile p { font-size: 13px; }

/* ---- SIDEBAR LAYOUT (Dashboard) ---- */
.dash-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  min-height: calc(100vh - 62px);
}

.sidebar {
  background: rgba(255,255,255,.02);
  border-right: 1px solid var(--line);
  padding: 16px 0;
  position: sticky;
  top: 62px;
  height: calc(100vh - 62px);
  overflow-y: auto;
}

.sidebar-section {
  padding: 0 12px;
  margin-bottom: 16px;
}

.sidebar-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,.3);
  padding: 8px 12px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  transition: all .2s ease;
  margin: 2px 0;
}

.sidebar-link:hover {
  background: rgba(255,255,255,.05);
  color: var(--text);
}

.sidebar-link.active {
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
}

.sidebar-link .sl-icon { font-size: 18px; width: 24px; text-align: center; }

.dash-main { padding: 20px 24px; }

@media(max-width: 900px) {
  .dash-layout { grid-template-columns: 1fr; }
  .sidebar { 
    position: fixed;
    left: -260px;
    top: 62px;
    width: 260px;
    height: calc(100vh - 62px);
    z-index: 99;
    background: var(--bg);
    transition: left .3s ease;
  }
  .sidebar.open { left: 0; box-shadow: 20px 0 60px rgba(0,0,0,.5); }
  .dash-main { padding: 16px; }
}

/* ---- LOADING ---- */
.loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid var(--line);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin .6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---- PRICE TAG ---- */
.price-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-soft), rgba(224,64,251,.08));
  border: 1px solid rgba(255,77,109,.2);
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
}

/* ---- SEARCH BAR ---- */
.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,0,0,.3);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 4px 14px;
  margin-bottom: 16px;
}

.search-bar input {
  border: none;
  background: transparent;
  padding: 10px 0;
  flex: 1;
}

.search-bar input:focus {
  box-shadow: none;
}

.search-bar .search-icon { color: var(--muted); font-size: 18px; }

/* ---- TABS ---- */
.tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
  overflow-x: auto;
}

.tab {
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}

.tab:hover { color: var(--text); }
.tab.active { color: var(--accent); border-bottom-color: var(--accent); }

/* ---- PAGINATION ---- */
.pagination {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
}

.pagination a, .pagination span {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--line);
  transition: all .2s;
}

.pagination a:hover { background: var(--card-hover); }
.pagination .active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ---- RESPONSIVE UTILS ---- */
.hide-mobile { display: block; }
.show-mobile { display: none; }

@media(max-width: 768px) {
  .hide-mobile { display: none !important; }
  .show-mobile { display: block !important; }
  .hero h1 { font-size: 28px; }
  .stat-value { font-size: 22px; }
  .wallet-balance { font-size: 26px; }
  .navbar-inner { height: 54px; }
}

/* ---- SWAL CUSTOM ---- */
.swal2-popup {
  background: #1a1a24 !important;
  border: 1px solid rgba(255,255,255,.1) !important;
  border-radius: 16px !important;
  color: #f0f0f5 !important;
}

.swal2-title { color: #f0f0f5 !important; }
.swal2-html-container { color: rgba(255,255,255,.6) !important; }
.swal2-confirm { background: linear-gradient(135deg, #ff4d6d, #ff1744) !important; border-radius: 10px !important; }

/* ---- HAMBURGER ---- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

@media(max-width: 900px) {
  .hamburger { display: flex; }
}

/* ---- QUICK AMOUNT BUTTONS ---- */
.quick-amounts {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 10px 0;
}

.quick-amt {
  padding: 8px 16px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--card);
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  transition: all .2s;
  font-family: inherit;
  color: var(--text);
}

.quick-amt:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}

/* ---- RESULT BOX ---- */
.result-box {
  background: rgba(0,230,118,.04);
  border: 1px solid rgba(0,230,118,.15);
  border-radius: var(--radius);
  padding: 16px;
  margin-top: 16px;
}

.result-box.error {
  background: rgba(255,23,68,.04);
  border-color: rgba(255,23,68,.15);
}
