/* WorldBot — CSS Principal */
/* =========================*/
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&family=Syne:wght@400;600;700;800&display=swap');

:root {
  --bg:          #f4f3f0;
  --bg2:         #ffffff;
  --bg3:         #eeede8;
  --bg-dark:     #12110e;
  --bg-dark2:    #1a1916;
  --bg-dark3:    #222118;
  --text:        #1a1916;
  --text-muted:  #6b6a65;
  --text-light:  #f4f3f0;
  --text-dark-muted: #9b9a94;
  --border:      rgba(0,0,0,.10);
  --border-dark: rgba(255,255,255,.08);
  --accent:      #5b4fff;
  --accent2:     #7c6fff;
  --accent-bg:   #eeeaff;
  --green:       #22c55e;
  --green-bg:    #dcfce7;
  --red:         #ef4444;
  --red-bg:      #fee2e2;
  --orange:      #f59e0b;
  --orange-bg:   #fef3c7;
  --partner-btn: #2d2b5e;
  --shadow:      0 1px 4px rgba(0,0,0,.07), 0 4px 20px rgba(0,0,0,.05);
  --shadow-md:   0 8px 32px rgba(0,0,0,.12);
  --r:           12px;
  --r-sm:        8px;
  --r-lg:        16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5 { font-family: 'Syne', sans-serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border-dark);
  transition: box-shadow .2s;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.3); }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px;
  padding: 0 24px; height: 62px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 18px;
  color: #fff; flex-shrink: 0;
}
.nav-logo-icon {
  width: 34px; height: 34px; background: var(--accent);
  border-radius: 9px; display: flex; align-items: center;
  justify-content: center; color: #fff; font-weight: 800; font-size: 15px;
}
.nav-links { display: flex; gap: 2px; margin-left: auto; }
.nav-link {
  padding: 6px 14px; border-radius: var(--r-sm); font-size: 14px;
  font-weight: 500; color: var(--text-dark-muted); transition: all .15s;
}
.nav-link:hover, .nav-link.active { background: rgba(255,255,255,.08); color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: 16px; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 20px; border-radius: var(--r-sm);
  font-size: 14px; font-weight: 600; cursor: pointer;
  border: none; font-family: 'DM Sans', sans-serif;
  transition: all .15s; white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent2); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(91,79,255,.35); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-outline:hover { background: var(--bg3); }
.btn-ghost { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.2); }
.btn-ghost:hover { background: rgba(255,255,255,.18); }
.btn-discord { background: #5865F2; color: #fff; }
.btn-discord:hover { background: #4752c4; }
.btn-lg { padding: 12px 28px; font-size: 15px; border-radius: var(--r); }
.w-full { width: 100%; justify-content: center; }

/* ANNOUNCEMENTS */
.ann {
  padding: 10px 24px; font-size: 13px; text-align: center;
}
.ann-info    { background: #1e3a5f; color: #93c5fd; }
.ann-warning { background: #422006; color: #fbbf24; }
.ann-success { background: #052e16; color: #86efac; }

/* HERO */
.hero {
  background: var(--bg-dark);
  padding: 90px 24px 70px;
  text-align: center;
}
.hero-inner { max-width: 720px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(91,79,255,.2); color: var(--accent2);
  font-size: 12px; font-weight: 600; padding: 5px 14px;
  border-radius: 20px; margin-bottom: 24px; letter-spacing: .04em;
  border: 1px solid rgba(91,79,255,.3);
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800;
  color: #fff; margin-bottom: 20px;
}
.hero-title .accent { color: var(--accent2); }
.hero-sub { font-size: 16px; color: var(--text-dark-muted); margin-bottom: 36px; line-height: 1.75; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat-val { display: block; font-size: 26px; font-weight: 700; font-family: 'Syne', sans-serif; color: #fff; }
.hero-stat-label { font-size: 12px; color: var(--text-dark-muted); }

/* SECTIONS */
.section { padding: 72px 24px; }
.section-dark { background: var(--bg-dark2); }
.section-dark .section-label { color: var(--accent2); }
.section-dark .section-title,
.section-dark .section-sub,
.section-dark h3,
.section-dark p { color: var(--text-light); }
.section-dark .section-sub { color: var(--text-dark-muted); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-header { margin-bottom: 40px; }
.section-label { font-size: 12px; font-weight: 700; color: var(--accent); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; }
.section-sub { font-size: 15px; color: var(--text-muted); margin-top: 10px; }

/* FEATURES */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.feature-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px;
  box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.premium-card { border-color: rgba(91,79,255,.2); background: linear-gradient(135deg,#fff 60%,#f5f3ff); }
.feature-icon { width: 44px; height: 44px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 14px; }
.fi-purple { background: #ede9ff; }
.fi-green  { background: var(--green-bg); }
.fi-orange { background: var(--orange-bg); }
.fi-blue   { background: #dbeafe; }
.fi-yellow { background: #fef9c3; }
.fi-red    { background: var(--red-bg); }
.feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feature-card p  { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin-bottom: 12px; }
.feature-tag { font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; }
.feature-tag.free    { background: var(--green-bg); color: #15803d; }
.feature-tag.premium { background: var(--accent-bg); color: var(--accent); }

/* BOT CARD */
.bot-card {
  background: var(--bg-dark3); border: 1px solid var(--border-dark);
  border-radius: var(--r-lg); padding: 28px;
}
.bot-card-header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.bot-avatar {
  width: 56px; height: 56px; background: var(--accent);
  border-radius: 14px; display: flex; align-items: center;
  justify-content: center; color: #fff; font-size: 22px;
  font-weight: 800; font-family: 'Syne', sans-serif; flex-shrink: 0;
}
.bot-info { flex: 1; }
.bot-name { font-size: 20px; font-weight: 700; color: #fff; font-family: 'Syne', sans-serif; }
.bot-version { font-size: 12px; background: rgba(91,79,255,.3); color: var(--accent2); padding: 2px 8px; border-radius: 6px; margin-left: 8px; font-weight: 600; }
.bot-meta { font-size: 13px; color: var(--text-dark-muted); margin-top: 2px; }
.bot-desc { font-size: 14px; color: var(--text-dark-muted); line-height: 1.7; margin-bottom: 20px; }
.bot-features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 8px; }
.bot-feat {
  background: rgba(255,255,255,.05); border: 1px solid var(--border-dark);
  border-radius: var(--r-sm); padding: 10px 12px; font-size: 13px;
  font-weight: 500; color: #fff;
}
.bot-feat.premium { color: var(--accent2); }
.bot-feat.premium span { font-size: 10px; background: rgba(91,79,255,.25); padding: 1px 6px; border-radius: 4px; margin-left: 6px; }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin-bottom: 32px; }
.pricing-card {
  background: var(--bg2); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow);
}
.pricing-card.featured { border-color: var(--accent); border-width: 2px; }
.pricing-badge {
  background: var(--accent); color: #fff; font-size: 11px;
  font-weight: 700; padding: 4px 12px; border-radius: 20px;
  display: inline-block; margin-bottom: 12px;
}
.pricing-name { font-size: 20px; font-weight: 700; font-family: 'Syne', sans-serif; margin-bottom: 4px; }
.pricing-toggle { display: flex; gap: 6px; margin-bottom: 12px; }
.price-toggle {
  padding: 5px 12px; border-radius: 6px; font-size: 12px; font-weight: 600;
  border: 1.5px solid var(--border); background: transparent; cursor: pointer;
  font-family: 'DM Sans', sans-serif; color: var(--text-muted); transition: all .15s;
}
.price-toggle.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.discount-badge { background: #dcfce7; color: #15803d; font-size: 10px; padding: 1px 5px; border-radius: 4px; margin-left: 4px; }
.pricing-price { font-size: 32px; font-weight: 800; font-family: 'Syne', sans-serif; margin-bottom: 16px; }
.pricing-price span { font-size: 14px; font-weight: 400; color: var(--text-muted); }
.pricing-features { list-style: none; margin-bottom: 20px; display: flex; flex-direction: column; gap: 9px; }
.pricing-features li { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.pricing-features li::before { content: ''; width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0; }
.pricing-features li.yes::before { background: var(--green-bg); box-shadow: inset 0 0 0 2px var(--green); }
.pricing-features li.no  { opacity: .45; }
.pricing-features li.no::before  { background: var(--bg3); }
.wallet-info {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--bg2); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 20px; box-shadow: var(--shadow);
}
.wallet-info-icon { font-size: 28px; flex-shrink: 0; }
.wallet-info strong { display: block; font-size: 15px; margin-bottom: 4px; }
.wallet-info p { font-size: 13px; color: var(--text-muted); }

/* PARTNERS */
.partners-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.partner-card {
  background: var(--bg-dark3); border: 1px solid var(--border-dark);
  border-radius: var(--r-lg); padding: 20px;
  transition: transform .2s, border-color .2s;
}
.partner-card:hover { transform: translateY(-2px); border-color: var(--accent); }
.partner-icon-wrap { width: 48px; height: 48px; border-radius: 12px; overflow: hidden; margin-bottom: 12px; background: rgba(255,255,255,.1); }
.partner-icon-wrap img { width: 100%; height: 100%; object-fit: cover; }
.partner-icon-placeholder { width: 48px; height: 48px; border-radius: 12px; background: var(--accent); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 20px; font-weight: 700; }
.partner-name { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.partner-desc { font-size: 13px; color: var(--text-dark-muted); line-height: 1.55; margin-bottom: 14px; }
.partner-links { display: flex; gap: 8px; flex-wrap: wrap; }
.btn-partner {
  font-size: 12px; font-weight: 600; padding: 5px 12px;
  border-radius: 6px; font-family: 'DM Sans', sans-serif;
  transition: all .15s; color: #fff;
}
.btn-partner.discord { background: #5865F2; }
.btn-partner.bot     { background: var(--accent); }
.btn-partner.web     { background: var(--partner-btn); border: 1px solid rgba(255,255,255,.15); }
.btn-partner:hover   { opacity: .85; }
.partner-skeleton { height: 180px; background: rgba(255,255,255,.05); border-radius: var(--r-lg); }

/* ADS */
.ads-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px; }
.ad-card {
  background: var(--bg2); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 20px; cursor: pointer;
  transition: all .2s; box-shadow: var(--shadow);
}
.ad-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.ad-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.ad-desc  { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; line-height: 1.55; }
.ad-cta   { font-size: 13px; font-weight: 600; color: var(--accent); }
.ad-skeleton { height: 130px; background: var(--bg3); border-radius: var(--r-lg); }

/* FOOTER */
.footer { background: var(--bg-dark); border-top: 1px solid var(--border-dark); padding: 56px 24px 0; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 48px; padding-bottom: 40px; }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 700; color: #fff; font-family: 'Syne', sans-serif; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; color: var(--text-dark-muted); line-height: 1.65; }
.footer-links { display: flex; gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: 12px; font-weight: 700; color: #fff; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 4px; }
.footer-col a { font-size: 13px; color: var(--text-dark-muted); transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid var(--border-dark); padding: 18px 0; text-align: center; max-width: 1100px; margin: 0 auto; }
.footer-bottom p { font-size: 12px; color: var(--text-dark-muted); }

/* DASHBOARD */
.dash-layout { display: grid; grid-template-columns: 230px 1fr; min-height: calc(100vh - 62px); }
.dash-sidebar { background: var(--bg-dark); border-right: 1px solid var(--border-dark); padding: 16px 0; position: sticky; top: 62px; height: calc(100vh - 62px); overflow-y: auto; }
.dash-sidebar-user { padding: 16px 20px 20px; border-bottom: 1px solid var(--border-dark); display: flex; align-items: center; gap: 10px; }
.dash-user-avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.dash-user-name { font-size: 14px; font-weight: 600; color: #fff; }
.dash-user-plan { font-size: 11px; color: var(--text-dark-muted); }
.dash-nav-section { font-size: 10px; font-weight: 700; color: rgba(255,255,255,.3); letter-spacing: .1em; text-transform: uppercase; padding: 16px 20px 6px; }
.dash-nav-item { display: flex; align-items: center; gap: 10px; padding: 9px 20px; font-size: 13px; font-weight: 500; color: var(--text-dark-muted); cursor: pointer; border-left: 2px solid transparent; transition: all .15s; }
.dash-nav-item:hover { background: rgba(255,255,255,.05); color: #fff; }
.dash-nav-item.active { background: rgba(91,79,255,.15); color: var(--accent2); border-left-color: var(--accent); }
.dash-nav-icon { font-size: 15px; width: 18px; text-align: center; }
.dash-content { padding: 28px; background: var(--bg); overflow-y: auto; }
.dash-panel { display: none; animation: fadeUp .2s ease; }
.dash-panel.active { display: block; }
@keyframes fadeUp { from{opacity:0;transform:translateY(8px);}to{opacity:1;transform:none;} }

/* CARDS */
.card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r); padding: 20px; box-shadow: var(--shadow); margin-bottom: 16px; }
.card-title { font-size: 14px; font-weight: 600; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.metrics-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr)); gap: 12px; margin-bottom: 16px; }
.metric-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r); padding: 16px; }
.metric-label { font-size: 11px; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .06em; }
.metric-val { font-size: 24px; font-weight: 700; font-family: 'Syne', sans-serif; }
.metric-change { font-size: 12px; margin-top: 4px; color: var(--text-muted); }
.metric-change.up { color: var(--green); }
.metric-change.down { color: var(--red); }

/* FORMS */
.form-group { margin-bottom: 14px; }
.form-label { font-size: 13px; font-weight: 500; color: var(--text-muted); margin-bottom: 6px; display: block; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 9px 13px; border: 1.5px solid var(--border);
  border-radius: var(--r-sm); font-size: 14px; background: var(--bg);
  color: var(--text); font-family: 'DM Sans', sans-serif;
  transition: border-color .15s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--accent); }
.form-textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* BADGES */
.badge { font-size: 11px; padding: 3px 9px; border-radius: 20px; font-weight: 600; }
.badge-blue   { background: var(--accent-bg); color: var(--accent); }
.badge-green  { background: var(--green-bg); color: #15803d; }
.badge-orange { background: var(--orange-bg); color: #b45309; }
.badge-red    { background: var(--red-bg); color: #b91c1c; }

/* EMBED PREVIEW */
.embed-preview { background: var(--bg3); border-radius: var(--r-sm); padding: 14px; border-left: 4px solid var(--accent); margin-top: 10px; }
.embed-preview-title { font-weight: 600; font-size: 14px; }
.embed-preview-desc  { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* COLOR PALETTE */
.color-palette { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; align-items: center; }
.color-swatch { width: 28px; height: 28px; border-radius: 6px; cursor: pointer; border: 2px solid transparent; transition: all .15s; }
.color-swatch.selected { border-color: var(--text); transform: scale(1.15); }

/* TICKETS */
.tickets-list { display: flex; flex-direction: column; gap: 8px; }
.ticket-row { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r); padding: 13px 16px; display: flex; align-items: center; gap: 14px; cursor: pointer; transition: all .15s; }
.ticket-row:hover { border-color: var(--accent); box-shadow: var(--shadow); }

/* ROLES */
.roles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 12px; }
.role-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r); padding: 14px; }
.role-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; margin-right: 6px; }
.progress-bar { height: 5px; background: var(--bg3); border-radius: 3px; overflow: hidden; margin-top: 4px; }
.progress-fill { height: 100%; border-radius: 3px; background: var(--accent); }

/* TOGGLE */
.toggle { width: 40px; height: 22px; background: var(--bg3); border-radius: 11px; cursor: pointer; position: relative; border: 1.5px solid var(--border); transition: all .2s; flex-shrink: 0; }
.toggle.on { background: var(--accent); border-color: var(--accent); }
.toggle::after { content:''; width:16px; height:16px; background:#fff; border-radius:50%; position:absolute; top:1px; left:1px; transition:all .2s; box-shadow:0 1px 3px rgba(0,0,0,.2); }
.toggle.on::after { left:19px; }
.toggle-row { display:flex; align-items:center; justify-content:space-between; padding:10px 0; border-bottom:1px solid var(--border); }
.toggle-row:last-child { border-bottom:none; }

/* CHART */
.chart-bars { display:flex; align-items:flex-end; gap:6px; height:160px; padding:0 4px; }
.chart-bar  { flex:1; border-radius:3px 3px 0 0; background:var(--accent); opacity:.5; min-height:4px; transition:opacity .15s; cursor:pointer; }
.chart-bar:hover,.chart-bar.active { opacity:1; }

/* MODAL */
.modal-overlay { display:none; position:fixed; inset:0; background:rgba(0,0,0,.5); z-index:200; align-items:center; justify-content:center; }
.modal-overlay.open { display:flex; }
.modal { background:var(--bg2); border-radius:var(--r-lg); padding:28px; width:90%; max-width:520px; max-height:85vh; overflow-y:auto; box-shadow:0 24px 64px rgba(0,0,0,.18); }
.modal-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:20px; }
.modal-title { font-size:17px; font-weight:700; font-family:'Syne',sans-serif; }
.modal-close { background:none; border:none; font-size:22px; cursor:pointer; color:var(--text-muted); line-height:1; }

/* TABS */
.tabs { display:flex; gap:3px; background:var(--bg3); padding:3px; border-radius:var(--r-sm); margin-bottom:16px; }
.tab { flex:1; padding:7px; border-radius:6px; font-size:13px; font-weight:500; cursor:pointer; border:none; background:none; color:var(--text-muted); transition:all .15s; text-align:center; font-family:'DM Sans',sans-serif; }
.tab.active { background:var(--bg2); color:var(--text); box-shadow:var(--shadow); }

/* ACCOUNT */
.sub-card { background: linear-gradient(135deg,var(--accent),#7c6fff); border-radius:var(--r-lg); padding:24px; color:#fff; margin-bottom:16px; }
.sub-card-plan { font-size:12px; font-weight:700; opacity:.75; letter-spacing:.08em; text-transform:uppercase; margin-bottom:6px; }
.sub-card-price { font-size:32px; font-weight:800; font-family:'Syne',sans-serif; }
.sub-card-renew { font-size:13px; opacity:.8; margin-top:6px; }
.wallet-card { background:var(--bg2); border:1px solid var(--border); border-radius:var(--r-lg); padding:20px; }
.credits-val { font-size:28px; font-weight:800; font-family:'Syne',sans-serif; color:var(--accent); }
.recharge-btns { display:flex; gap:8px; flex-wrap:wrap; margin-top:12px; }
.recharge-btn { padding:8px 16px; background:var(--bg3); border:1.5px solid var(--border); border-radius:var(--r-sm); font-size:14px; font-weight:600; cursor:pointer; transition:all .15s; font-family:'DM Sans',sans-serif; }
.recharge-btn:hover { background:var(--accent); color:#fff; border-color:var(--accent); }

/* ADMIN */
.revenue-chart { height:200px; background:var(--bg3); border-radius:var(--r); display:flex; align-items:flex-end; gap:8px; padding:16px; overflow:hidden; }
.admin-sub-row { display:flex; align-items:center; gap:12px; padding:10px 0; border-bottom:1px solid var(--border); font-size:13px; }
.admin-sub-avatar { width:32px; height:32px; border-radius:50%; object-fit:cover; }

/* RESPONSIVE */
@media(max-width:768px) {
  .nav-links { display:none; }
  .dash-layout { grid-template-columns:1fr; }
  .dash-sidebar { display:flex; overflow-x:auto; position:static; height:auto; padding:8px; border-right:none; border-bottom:1px solid var(--border-dark); }
  .dash-nav-section,.dash-nav-icon { display:none; }
  .dash-nav-item { border-left:none; border-bottom:2px solid transparent; white-space:nowrap; }
  .dash-nav-item.active { border-left:none; border-bottom-color:var(--accent); }
  .form-row { grid-template-columns:1fr; }
  .footer-inner { grid-template-columns:1fr; }
  .footer-links { flex-wrap:wrap; gap:24px; }
}
