/* ============================================================
   ViralUrMusic — style.css
   Design 100% based on NovaPanel Premium
   ============================================================ */
/* Fonts loaded via <link> in HTML head, fallback to system fonts */

:root {
  --bg:         #050505;
  --bg-2:       #090909;
  --panel:      #0f0f10;
  --panel-2:    #111112;
  --panel-3:    #151517;
  --border:     #202022;
  --border-2:   #262629;
  --text:       #f5f2ea;
  --muted:      #9f9788;
  --muted-2:    #6b6560;
  --gold:       #d4af37;
  --gold-soft:  #e7c96b;
  --gold-deep:  #8d6c16;
  --gold-bg:    rgba(212,175,55,.08);
  --gold-bg2:   rgba(212,175,55,.15);
  --green:      #1fb365;
  --green-bg:   rgba(31,179,101,.1);
  --amber:      #d5a81e;
  --blue:       #5b84ff;
  --blue-bg:    rgba(91,132,255,.1);
  --danger:     #d96d6d;
  --danger-bg:  rgba(217,109,109,.1);
  --radius:     20px;
  --radius-sm:  14px;
  --radius-xs:  12px;
  --transition: .2s ease;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html,body { height: 100%; }

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background: radial-gradient(circle at 85% 0%, rgba(212,175,55,.08), transparent 18%),
              linear-gradient(180deg,#070707 0%,#0a0a0a 100%);
  color: var(--text);
  letter-spacing: -.01em;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
button,input,select,textarea { font: inherit; }
img { max-width: 100%; display: block; }

::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 3px; }

.hidden   { display: none !important; }
.container { max-width: 1320px; margin: 0 auto; padding: 0 22px; }
.text-gold   { color: var(--gold); }
.text-muted  { color: var(--muted); }
.text-green  { color: var(--green); }
.text-danger { color: var(--danger); }
.text-sm  { font-size: 13px; }
.text-xs  { font-size: 11px; }
.center { text-align: center; }
.linkish { color: #e8cb67; cursor: pointer; }
.tiny { font-size: 12px; color: var(--muted); }
.ml-auto { margin-left: auto; }
.w-full  { width: 100%; }

/* ── Public topbar ── */
.topbar {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(7,7,7,.88);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 14px; font-weight: 700; font-size: 20px; }
.brand-badge {
  width: 34px; height: 34px; border-radius: 12px;
  background: linear-gradient(135deg,#1c1c1c,#121212);
  border: 1px solid rgba(212,175,55,.35); color: var(--gold);
  display: grid; place-items: center; font-weight: 800; font-size: 13px; letter-spacing: -1px;
}
.nav { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.nav a { color: #d1c8b5; font-size: 14px; padding: 10px 12px; border-radius: 999px; transition: var(--transition); }
.nav a:hover { background: #121212; }

/* ── Buttons ── */
.btn {
  border: 1px solid rgba(255,255,255,.09); border-radius: 12px; padding: 10px 18px;
  cursor: pointer; transition: var(--transition); background: #171717; color: #f6f2e8;
  font-weight: 600; font-size: 13px; display: inline-flex; align-items: center;
  gap: 8px; white-space: nowrap; text-decoration: none;
}
.btn:hover { transform: translateY(-1px); border-color: rgba(212,175,55,.35); }
.btn-primary { background: linear-gradient(180deg,#e1bf4d,#c89d21); color: #16120a; border-color: #d6b54b; }
.btn-primary:hover { background: linear-gradient(180deg,#eacc5a,#d4aa28); color: #16120a; }
.btn-secondary { background: #141414; }
.btn-danger { background: var(--danger-bg); color: var(--danger); border-color: rgba(217,109,109,.2); }
.btn-green  { background: var(--green-bg);  color: var(--green);  border-color: rgba(31,179,101,.2); }
.btn-sm { padding: 7px 13px; font-size: 12px; border-radius: 10px; }
.btn-full { width: 100%; justify-content: center; }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none !important; }

/* ── Cards ── */
.card, .hero-card, .mini-card, .stat, .feature,
.platform-card, .auth-card, .selection-card, .selected-item {
  background: #17181b;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
}
.card     { padding: 20px 22px; }
.hero-card { padding: 24px; }
.mini-card { padding: 16px; }
.feature   { padding: 18px; }
.feature h3 { margin: 10px 0 8px; font-size: 17px; font-weight: 600; }
.feature p  { color: var(--muted); line-height: 1.65; font-size: 14px; }
.stat {
  padding: 18px 22px; min-height: 108px;
  display: flex; flex-direction: column; justify-content: center;
}
.stat .s-label { color: var(--muted); font-size: 12px; font-weight: 500; margin-bottom: 8px; }
.stat .s-value { font-size: 20px; font-weight: 700; color: #e2ba3b; }

/* ── Grids ── */
.mini-grid      { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.features-grid  { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.stats-grid     { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.price-boxes    { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.audience-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.funds-grid     { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.platforms-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; }
.currency-grid  { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; max-width: 860px; margin: 0 auto; }
.admin-stats    { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; margin-bottom: 20px; }

/* ── Forms ── */
.field { margin-top: 14px; }
.field label { display: block; margin-bottom: 7px; color: #ddd1b8; font-size: 12px; font-weight: 500; }
.input, .form-select, textarea {
  width: 100%; padding: 13px 14px; background: #0c0c0c; color: #f4efe3;
  border: 1px solid #262626; border-radius: 15px; outline: none;
  font-size: 16px; transition: var(--transition);
}
.input:focus, .form-select:focus, textarea:focus {
  border-color: rgba(212,175,55,.45);
  box-shadow: 0 0 0 3px rgba(212,175,55,.07);
}
.input::placeholder, textarea::placeholder { color: var(--muted-2); }
.form-select {
  cursor: pointer; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239f9788' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
  background-color: #0c0c0c;
}
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ── Dashboard layout ── */
.dashboard { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }

/* ── Sidebar ── */
.sidebar {
  background: #08090b; border-right: 1px solid rgba(255,255,255,.05);
  padding: 18px 16px; position: sticky; top: 0; height: 100vh; overflow-y: auto;
}
.side-brand { display: flex; align-items: center; gap: 14px; padding: 4px 6px 18px; font-size: 18px; font-weight: 600; }
.side-title { font-size: 11px; color: #847c70; text-transform: uppercase; letter-spacing: .16em; padding: 12px 10px 9px; }
.side-link {
  display: flex; align-items: center; gap: 14px; padding: 12px; border-radius: 16px;
  color: #ece3d1; margin-bottom: 4px; cursor: pointer; border: 1px solid transparent;
  transition: var(--transition); font-size: 14px; text-decoration: none;
}
.side-link:hover { background: linear-gradient(90deg,rgba(255,255,255,.05),rgba(255,255,255,.02)); border-color: rgba(255,255,255,.03); }
.side-link.active { color: #f0c647; background: linear-gradient(90deg,rgba(255,255,255,.06),rgba(255,255,255,.03)); border-color: rgba(255,255,255,.03); }
.side-link .link-meta { margin-left: auto; font-size: 11px; color: #8a836f; }
/* Nav icons (non-platform) - gold stroke */
.side-link:not(.side-plat) > svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.8; flex-shrink: 0; }

/* Platform SVGs - colors come from inline style on <path>, CSS must NOT touch them */
.side-plat > svg { stroke: none !important; width: 20px; height: 20px; flex-shrink: 0; }
.side-plat > svg path,
.side-plat > svg polygon,
.side-plat > svg circle,
.side-plat > svg rect { stroke: none !important; }

/* Block ANY state from overriding platform path colors */
.side-plat:hover > svg path,
.side-plat:hover > svg polygon,
.side-plat.active > svg path,
.side-plat.active > svg polygon,
.side-link.active .side-plat > svg path { stroke: none !important; }

/* ── Main ── */
.main { padding: 18px 24px; background: #050506; min-height: 100vh; }
.main-top { display: flex; justify-content: space-between; gap: 14px; align-items: center; flex-wrap: wrap; margin-bottom: 14px; }
.toolbar, .row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

/* ── Dashboard topbar ── */
.dash-topbar { display: flex; justify-content: flex-end; gap: 12px; align-items: center; margin-bottom: 18px; flex-wrap: wrap; }
.wallet-pill { background: #0f1012; border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 9px 16px; font-size: 13px; color: var(--muted); }
.wallet-pill strong { color: var(--text); font-weight: 600; }
.lang-switch { background: #0f1012; border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 9px 14px; font-size: 13px; font-weight: 600; color: var(--muted); cursor: pointer; text-decoration: none; transition: var(--transition); }
.lang-switch:hover { border-color: rgba(212,175,55,.35); color: var(--gold); }
.currency-sel { background: #0f1012; border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 9px 36px 9px 14px; color: var(--text); font-size: 13px; cursor: pointer; outline: none; min-width: 160px; -webkit-appearance: none; transition: var(--transition); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239f9788' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-color: #0f1012; }
.welcome-row .wr-label { font-size: 13px; color: var(--muted); }
.welcome-row .wr-name  { font-size: 22px; font-weight: 700; }

/* ── Chips ── */
.pill, .tab, .service-chip {
  background: #0f1012; border: 1px solid rgba(255,255,255,.065);
  border-radius: 12px; padding: 10px 14px; color: #eadfc9; font-size: 13px;
}
.tab, .service-chip { cursor: pointer; transition: var(--transition); }
.tab.active, .service-chip.active { background: linear-gradient(180deg,#e1bf4d,#c89d21); color: #16120a; font-weight: 700; border-color: #d6b54b; }
.tab:hover:not(.active), .service-chip:hover:not(.active) { border-color: rgba(212,175,55,.3); }
.qty-chip { background: #0f1012; border: 1px solid rgba(255,255,255,.065); border-radius: 10px; padding: 8px 12px; color: #eadfc9; font-size: 12px; cursor: pointer; transition: var(--transition); user-select: none; }
.qty-chip.active { background: linear-gradient(180deg,#e1bf4d,#c89d21); color: #16120a; font-weight: 700; border-color: #d6b54b; }
.qty-chip:hover:not(.active) { border-color: rgba(212,175,55,.3); }

/* ── Campaign ── */
.service-layout { display: grid; grid-template-columns: 1.35fr .65fr; gap: 14px; align-items: start; }
.selected-item { padding: 16px 18px; margin-bottom: 10px; }
.selected-item .item-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.selected-item .item-title  { font-size: 15px; font-weight: 600; }
.selected-item .item-rate   { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.item-minmax { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.item-info { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-top: 12px; }
.iib { background: #111113; border: 1px solid rgba(255,255,255,.06); border-radius: 10px; padding: 10px 12px; }
.iib-label { font-size: 11px; color: var(--muted); margin-bottom: 3px; }
.iib-val   { font-size: 15px; font-weight: 600; }
.summary-card { position: sticky; top: 20px; }
.s-title { font-size: 17px; font-weight: 700; margin-bottom: 16px; }
.summary-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.smb { background: #111113; border: 1px solid rgba(255,255,255,.06); border-radius: 12px; padding: 12px; }
.smb-label { font-size: 11px; color: var(--muted); margin-bottom: 4px; }
.smb-val   { font-size: 18px; font-weight: 700; }
.sum-line  { display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.sum-total { display: flex; justify-content: space-between; font-size: 15px; font-weight: 700; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.06); margin: 8px 0 14px; }
.sum-total .price { color: var(--gold); font-size: 20px; }
.sum-info  { background: var(--gold-bg); border: 1px solid rgba(212,175,55,.12); border-radius: 12px; padding: 12px; font-size: 12px; color: var(--gold-soft); line-height: 1.6; }
.platform-header { background: #151517; border: 1px solid rgba(255,255,255,.06); border-radius: 14px; padding: 12px 18px; display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.discount-badge { background: var(--gold-bg); border: 1px solid rgba(212,175,55,.2); color: var(--gold); font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 20px; }

/* ── Tables ── */
.table-wrap { overflow-x: auto; border-radius: 14px; }
table { width: 100%; border-collapse: collapse; }
thead th { padding: 12px 16px; text-align: left; font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; border-bottom: 1px solid rgba(255,255,255,.06); white-space: nowrap; }
tbody td { padding: 14px 16px; font-size: 14px; border-bottom: 1px solid rgba(255,255,255,.04); vertical-align: middle; }
tbody tr:hover { background: rgba(255,255,255,.015); }
tbody tr:last-child td { border-bottom: none; }
.table-empty { padding: 32px; text-align: center; color: var(--muted); font-size: 14px; background: #111113; border-radius: 12px; }

/* ── Badges ── */
.badge { display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.badge-pending     { background: rgba(212,175,55,.12); color: var(--gold); }
.badge-in_progress { background: var(--blue-bg);       color: var(--blue); }
.badge-completed   { background: var(--green-bg);      color: var(--green); }
.badge-cancelled   { background: rgba(255,255,255,.06); color: var(--muted); }
.badge-refunded    { background: var(--danger-bg);     color: var(--danger); }
.badge-active      { background: var(--green-bg);      color: var(--green); }
.badge-suspended   { background: var(--danger-bg);     color: var(--danger); }
.badge-bonus       { background: var(--gold-bg);       color: var(--gold); }

/* ── Flash ── */
.flash { padding: 13px 16px; border-radius: 12px; font-size: 14px; margin-bottom: 16px; }
.flash-success { background: var(--green-bg);  border: 1px solid rgba(31,179,101,.2);  color: var(--green); }
.flash-error   { background: var(--danger-bg); border: 1px solid rgba(217,109,109,.2); color: var(--danger); }
.flash-info    { background: var(--gold-bg);   border: 1px solid rgba(212,175,55,.2);  color: var(--gold-soft); }

/* ── Search ── */
.search-wrap { position: relative; }
.search-wrap input { width: 100%; background: #0f1012; border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 10px 14px 10px 38px; color: var(--text); font-size: 14px; outline: none; transition: var(--transition); }
.search-wrap input:focus { border-color: rgba(212,175,55,.35); }
.search-wrap input::placeholder { color: var(--muted-2); }
.search-icon { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); color: var(--muted-2); pointer-events: none; }

/* ── Funds ── */
.payment-card { background: #17181b; border: 1px solid rgba(255,255,255,.09); border-radius: 16px; padding: 18px; cursor: pointer; transition: var(--transition); display: flex; justify-content: space-between; align-items: center; }
.payment-card:hover { border-color: rgba(212,175,55,.3); }
.payment-card.active { background: linear-gradient(180deg,#e1bf4d,#c89d21); border-color: #d6b54b; }
.payment-card.active * { color: #16120a !important; }
.pc-label { font-size: 18px; font-weight: 700; }
.pc-sub   { font-size: 12px; color: var(--muted); margin-top: 2px; }
.pc-amt   { font-size: 14px; font-weight: 600; color: var(--muted); }
.pm-card  { background: #17181b; border: 1px solid rgba(255,255,255,.09); border-radius: 14px; padding: 14px; text-align: center; cursor: pointer; transition: var(--transition); }
.pm-card:hover  { border-color: rgba(212,175,55,.3); }
.pm-card.active { border-color: var(--gold); background: var(--gold-bg); }
.pm-name { font-size: 13px; font-weight: 600; margin-bottom: 3px; }
.pm-desc { font-size: 11px; color: var(--muted); }

/* ── Pagination ── */
.pagination { display: flex; gap: 6px; margin-top: 20px; flex-wrap: wrap; }
.page-btn { padding: 7px 12px; border-radius: 10px; background: #0f1012; border: 1px solid rgba(255,255,255,.08); color: var(--muted); font-size: 13px; cursor: pointer; transition: var(--transition); text-decoration: none; display: inline-block; }
.page-btn:hover  { border-color: rgba(212,175,55,.3); color: var(--text); }
.page-btn.active { background: linear-gradient(180deg,#e1bf4d,#c89d21); border-color: #d6b54b; color: #16120a; font-weight: 600; }

/* ── Announcement ── */
.announcement { background: var(--gold-bg); border-bottom: 1px solid rgba(212,175,55,.15); padding: 10px 22px; font-size: 13px; color: var(--gold-soft); display: flex; align-items: center; gap: 10px; }

/* ── Auth ── */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 30px 20px; }
.auth-card { max-width: 460px; width: 100%; padding: 32px; }
.auth-logo { text-align: center; margin-bottom: 28px; }
.auth-logo-badge { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg,#1c1c1c,#121212); border: 1px solid rgba(212,175,55,.35); color: var(--gold); display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; margin-bottom: 12px; letter-spacing: -1px; }
.auth-logo-name { font-size: 20px; font-weight: 700; }
.auth-logo-tag  { font-size: 12px; color: var(--muted); margin-top: 3px; }
.auth-title { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.auth-sub   { font-size: 13px; color: var(--muted); margin-bottom: 22px; }
.auth-error { background: var(--danger-bg); border: 1px solid rgba(217,109,109,.2); border-radius: 12px; padding: 12px 14px; color: var(--danger); font-size: 13px; margin-bottom: 16px; }
.auth-bonus { background: var(--gold-bg); border: 1px solid rgba(212,175,55,.2); border-radius: 12px; padding: 12px 14px; color: var(--gold-soft); font-size: 13px; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.auth-footer { text-align: center; margin-top: 18px; font-size: 13px; color: var(--muted); }
.auth-footer a { color: var(--gold); font-weight: 500; }
.divider-or { text-align: center; position: relative; margin: 16px 0; color: var(--muted-2); font-size: 12px; }
.divider-or::before,.divider-or::after { content: ''; position: absolute; top: 50%; width: 42%; height: 1px; background: rgba(255,255,255,.08); }
.divider-or::before { left: 0; }
.divider-or::after  { right: 0; }
.btn-google { width: 100%; padding: 13px; background: #141414; border: 1px solid rgba(255,255,255,.09); border-radius: 12px; color: var(--text); font-size: 14px; font-weight: 500; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; text-decoration: none; transition: var(--transition); }
.btn-google:hover { border-color: rgba(212,175,55,.35); }
.back-link { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: 13px; margin-bottom: 20px; transition: var(--transition); }
.back-link:hover { color: var(--text); }

/* ── Homepage hero ── */
.hero { padding: 58px 0 28px; background: radial-gradient(circle at 80% 12%, rgba(212,175,55,.10), transparent 22%), radial-gradient(circle at 5% 0%, rgba(212,175,55,.05), transparent 20%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 20px; align-items: center; }
.service-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px; font-size: 12px; font-weight: 600; color: #f3df9f; background: #121212; border: 1px solid rgba(212,175,55,.18); margin-bottom: 16px; }
.headline { font-size: 50px; line-height: 1.03; font-weight: 700; margin-bottom: 14px; }
.headline span { color: var(--gold-soft); }
.sub { font-size: 17px; line-height: 1.72; color: #c4baa7; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 22px; }
.hero-stats { display: flex; gap: 32px; margin-top: 28px; }
.hs-val   { font-size: 26px; font-weight: 700; color: var(--gold); }
.hs-label { font-size: 12px; color: var(--muted); margin-top: 2px; }
.section { padding: 30px 0; }
.section-title { font-size: 30px; margin: 0 0 8px; font-weight: 700; }
.section-sub   { color: var(--muted); margin-bottom: 20px; }
.platform-card { padding: 18px; }
.platform-card .pt-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.platform-card .pt-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.platform-card strong { font-size: 17px; }
.platform-card .pt-meta { color: var(--muted); font-size: 13px; line-height: 1.6; margin-bottom: 14px; }
.curr-card { background: #17181b; border: 1px solid rgba(255,255,255,.09); border-radius: 14px; padding: 16px; text-align: center; }
.curr-sym  { font-size: 22px; font-weight: 700; color: var(--gold); margin-bottom: 4px; }
.curr-code { font-size: 13px; font-weight: 600; }
.curr-name { font-size: 11px; color: var(--muted); margin-top: 2px; }
.footer { background: #08090b; border-top: 1px solid rgba(255,255,255,.05); padding: 28px 22px; text-align: center; font-size: 13px; color: var(--muted); }

/* ─── MOBILE ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .sidebar { position: fixed; left:0; top:0; bottom:0; z-index:200; transform:translateX(-100%); transition:transform .3s ease; width:260px; }
  .sidebar.open { transform:translateX(0); box-shadow:0 0 40px rgba(0,0,0,.7); }
  .sidebar-overlay { display:none; position:fixed; inset:0; background:rgba(0,0,0,.5); z-index:199; }
  .sidebar-overlay.open { display:block; }
  .dashboard { grid-template-columns:1fr; }
  .main { padding:64px 14px 80px; }
  .mobile-topbar { position:fixed; top:0; left:0; right:0; z-index:100; background:rgba(7,7,7,.95); backdrop-filter:blur(10px); border-bottom:1px solid rgba(255,255,255,.05); height:56px; display:flex; align-items:center; padding:0 16px; gap:12px; }
  .mobile-menu-btn { width:36px; height:36px; border-radius:10px; background:#17181b; border:1px solid rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; cursor:pointer; flex-shrink:0; }
  .mobile-page-title { font-size:16px; font-weight:700; flex:1; }
  .mobile-wallet { font-size:13px; font-weight:600; background:#17181b; border:1px solid rgba(255,255,255,.08); padding:5px 10px; border-radius:10px; white-space:nowrap; }
  .bottom-nav { position:fixed; bottom:0; left:0; right:0; z-index:100; background:#08090b; border-top:1px solid rgba(255,255,255,.05); height:64px; display:flex; align-items:center; justify-content:space-around; padding:0 8px; }
  .bnav-item { display:flex; flex-direction:column; align-items:center; gap:3px; flex:1; padding:8px; text-decoration:none; color:var(--muted); transition:var(--transition); border-radius:12px; }
  .bnav-item:hover,.bnav-item.active { color:var(--gold); }
  .bnav-item svg { width:22px; height:22px; }
  .bnav-item span { font-size:10px; font-weight:500; }
  .bnav-create { width:50px; height:50px; background:linear-gradient(180deg,#e1bf4d,#c89d21); border-radius:14px; display:flex; align-items:center; justify-content:center; color:#16120a; text-decoration:none; flex-shrink:0; box-shadow:0 4px 16px rgba(212,175,55,.35); margin-bottom:4px; }
  .bnav-create svg { width:24px; height:24px; }
  .stats-grid,.admin-stats,.features-grid { grid-template-columns:repeat(2,1fr); }
  .service-layout,.hero-grid { grid-template-columns:1fr; }
  .platforms-grid  { grid-template-columns:repeat(2,1fr); }
  .currency-grid   { grid-template-columns:repeat(2,1fr); }
  .price-boxes,.funds-grid { grid-template-columns:repeat(2,1fr); }
  .audience-grid,.split { grid-template-columns:1fr; }
  .headline { font-size:32px; }
  .summary-card { position:static; }
}
@media (min-width:769px) {
  .bottom-nav,.mobile-topbar,.sidebar-overlay,.mobile-menu-btn,.mobile-page-title,.mobile-wallet { display:none !important; }
}
