/* ============================================================
   CumbreRP — Whitelist System
   assets/css/style.css — Estilos globales
   Creado por JVL MediaCode
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Exo 2', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--silver-light); }
ul { list-style: none; }

/* ── SCROLLBAR ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 999;
  background: rgba(5,8,16,.93);
  border-bottom: 1px solid rgba(26,111,255,.2);
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-brand {
  display: flex; align-items: center; gap: .75rem;
  color: var(--silver-light) !important; font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem; font-weight: 700; letter-spacing: 2px;
}
.nav-brand img { height: 72px; width: auto; object-fit: contain; }
.nav-links {
  display: flex; gap: 2rem;
}
.nav-links a {
  color: var(--text-dim); font-size: .85rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
}
.nav-links a:hover { color: var(--primary); }

/* ── CONTAINERS ───────────────────────────────────────────── */
.container     { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-md  { max-width: 860px;  margin: 0 auto; padding: 0 1.5rem; }
.container-sm  { max-width: 560px;  margin: 0 auto; padding: 0 1.5rem; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--dark2) center/cover no-repeat;
  padding-top: 64px;
}
.hero-sm {
  min-height: 280px;
  padding: 100px 1.5rem 48px;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,8,16,.55) 0%,
    rgba(5,8,16,.75) 60%,
    rgba(5,8,16,1) 100%
  );
}
.hero-content {
  position: relative; z-index: 1;
  text-align: center; max-width: 800px; padding: 0 1.5rem;
}
.hero-badge {
  display: inline-block;
  background: rgba(26,111,255,.15);
  border: 1px solid rgba(26,111,255,.4);
  color: var(--primary);
  font-size: .8rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; padding: .4rem 1.2rem;
  border-radius: 50px; margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900; letter-spacing: 4px;
  color: var(--silver-light);
  text-shadow: 0 0 40px rgba(26,111,255,.5);
  line-height: 1.1; margin-bottom: 1rem;
}
.hero-title-sm {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; letter-spacing: 3px;
  color: var(--silver-light);
  text-shadow: 0 0 30px rgba(26,111,255,.4);
  margin-bottom: .5rem;
}
.hero-subtitle {
  font-size: 1.1rem; color: var(--text-dim);
  max-width: 580px; margin: 0 auto 2rem; line-height: 1.6;
}
.hero-buttons {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}
.wl-closed-banner {
  background: rgba(239,68,68,.12);
  border: 1px solid rgba(239,68,68,.35);
  color: #ef4444; border-radius: 8px;
  padding: 1rem 1.5rem; font-size: 1rem; font-weight: 600;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; padding: .65rem 1.5rem;
  border-radius: 6px; font-family: 'Exo 2', sans-serif;
  font-size: .9rem; font-weight: 700; letter-spacing: .5px;
  border: none; cursor: pointer; transition: all .25s;
  text-decoration: none;
}
.btn-lg  { padding: .85rem 2rem; font-size: 1rem; }
.btn-xl  { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-full { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 4px 20px rgba(26,111,255,.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,111,255,.5);
  color: #fff;
}
.btn-outline {
  background: transparent;
  border: 1px solid rgba(26,111,255,.4);
  color: var(--silver);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(26,111,255,.08);
}
.btn-success {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  box-shadow: 0 4px 20px rgba(34,197,94,.25);
}
.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(34,197,94,.4);
  color: #fff;
}
.btn-discord {
  background: #5865f2;
  color: #fff;
  box-shadow: 0 4px 20px rgba(88,101,242,.3);
}
.btn-discord:hover {
  background: #4752c4; transform: translateY(-2px); color: #fff;
}
.btn-danger {
  background: linear-gradient(135deg,#ef4444,#b91c1c);
  color: #fff;
}
.btn-danger:hover { transform: translateY(-2px); color: #fff; }

/* ── SECTIONS ─────────────────────────────────────────────── */
.section       { padding: 80px 0; }
.section-dark  { background: var(--dark2); }
.section-header {
  text-align: center; margin-bottom: 3rem;
}
.section-header h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800; color: var(--silver-light);
  letter-spacing: 2px; margin-bottom: .5rem;
}
.section-header p { color: var(--text-dim); font-size: 1rem; }

/* ── STATS BAR ────────────────────────────────────────────── */
.stats-bar {
  background: var(--dark3);
  border-top: 1px solid rgba(26,111,255,.15);
  border-bottom: 1px solid rgba(26,111,255,.15);
  padding: 28px 0;
}
.stats-bar .container {
  display: flex; align-items: center;
  justify-content: center; gap: 0; flex-wrap: wrap;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 3rem;
}
.stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.2rem; font-weight: 900;
  color: var(--primary); line-height: 1;
}
.stat-label { font-size: .8rem; color: var(--text-dim); letter-spacing: 1px; margin-top: .3rem; text-transform: uppercase; }
.stat-divider {
  width: 1px; height: 50px;
  background: rgba(26,111,255,.2);
}

/* ── STEPS GRID ───────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.step-card {
  background: var(--dark3);
  border: 1px solid rgba(26,111,255,.15);
  border-radius: 12px; padding: 2rem 1.5rem;
  position: relative; transition: all .3s;
  overflow: hidden;
}
.step-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,111,255,.06), transparent);
  opacity: 0; transition: opacity .3s;
}
.step-card:hover { border-color: rgba(26,111,255,.4); transform: translateY(-4px); }
.step-card:hover::before { opacity: 1; }
.step-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: .85rem; font-weight: 800;
  color: rgba(26,111,255,.4); letter-spacing: 2px; margin-bottom: .5rem;
}
.step-icon { font-size: 2rem; margin-bottom: .75rem; }
.step-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--silver-light); margin-bottom: .5rem;
}
.step-card p { font-size: .9rem; color: var(--text-dim); line-height: 1.6; }

/* ── REQUISITOS ───────────────────────────────────────────── */
.req-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: .75rem;
}
.req-item {
  background: var(--dark3); border-radius: 8px;
  padding: .9rem 1.2rem; font-size: .95rem; font-weight: 500;
  border-left: 3px solid transparent;
}
.req-ok { border-left-color: #22c55e; color: var(--text); }
.req-no { border-left-color: #ef4444; color: var(--text-dim); }

/* ── DISCORD CTA ──────────────────────────────────────────── */
.discord-cta { background: var(--dark2); }
.cta-card {
  background: linear-gradient(135deg, var(--dark3), var(--dark4));
  border: 1px solid rgba(88,101,242,.3);
  border-radius: 16px; padding: 3rem 2rem;
  text-align: center; max-width: 600px; margin: 0 auto;
}
.cta-icon { font-size: 3rem; margin-bottom: 1rem; }
.cta-card h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem; font-weight: 800;
  color: var(--silver-light); margin-bottom: .75rem;
}
.cta-card p { color: var(--text-dim); margin-bottom: 1.5rem; font-size: 1rem; }

/* ── CARDS ────────────────────────────────────────────────── */
.card {
  background: var(--dark3);
  border: 1px solid rgba(26,111,255,.2);
  border-radius: 14px; overflow: hidden;
}
.card-header {
  padding: 2rem; border-bottom: 1px solid rgba(26,111,255,.15);
}
.card-header h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.6rem; font-weight: 800;
  color: var(--silver-light); margin-bottom: .5rem;
}
.card-header p { color: var(--text-dim); font-size: .9rem; line-height: 1.6; }
.card-footer-links {
  padding: 1.25rem 2rem;
  border-top: 1px solid rgba(26,111,255,.12);
  text-align: center; font-size: .9rem;
}

/* ── FORMS ────────────────────────────────────────────────── */
.wl-form { padding: 2rem; }
.form-section {
  background: var(--dark3);
  border: 1px solid rgba(26,111,255,.15);
  border-radius: 12px; padding: 2rem;
  margin-bottom: 1.5rem;
}
.form-section-header {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(26,111,255,.12);
}
.section-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem; font-weight: 900;
  color: rgba(26,111,255,.35); line-height: 1; flex-shrink: 0;
}
.form-section-header h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.25rem; font-weight: 800;
  color: var(--silver-light); margin-bottom: .2rem;
}
.form-section-header p { color: var(--text-dim); font-size: .85rem; }

.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: flex; align-items: center; justify-content: space-between;
  font-size: .85rem; font-weight: 600; color: var(--silver);
  margin-bottom: .5rem; letter-spacing: .3px;
}
.req { color: var(--primary); margin-left: .25rem; }
.form-input {
  width: 100%; background: var(--dark2);
  border: 1px solid rgba(26,111,255,.2);
  border-radius: 7px; padding: .7rem 1rem;
  color: var(--text); font-family: 'Exo 2', sans-serif;
  font-size: .95rem; transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,111,255,.12);
}
.form-input::placeholder { color: var(--text-dim); }
.form-select { cursor: pointer; appearance: none; }
.form-textarea { resize: vertical; min-height: 110px; }
.form-hint { font-size: .8rem; color: var(--text-dim); margin-top: .4rem; display: block; }
.char-counter { font-size: .8rem; font-weight: 600; color: var(--warning); }

.checkbox-label {
  display: flex; align-items: flex-start; gap: .75rem;
  cursor: pointer; font-size: .9rem; color: var(--text);
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  accent-color: var(--primary); cursor: pointer;
}
.commitments-list { display: flex; flex-direction: column; gap: 1rem; }
.checkbox-commit {
  background: var(--dark2); border: 1px solid rgba(26,111,255,.15);
  border-radius: 8px; padding: 1rem 1.25rem;
}
.checkbox-commit:has(input:checked) {
  border-color: rgba(26,111,255,.4);
  background: rgba(26,111,255,.06);
}

.form-submit-area {
  margin-top: 2rem; text-align: center;
}
.submit-note {
  color: var(--text-dim); font-size: .85rem;
  margin-bottom: 1.25rem; line-height: 1.5;
}

.discord-id-banner {
  background: rgba(26,111,255,.1);
  border: 1px solid rgba(26,111,255,.25);
  border-radius: 8px; padding: .85rem 1.25rem;
  font-size: .9rem; color: var(--silver);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: .75rem; flex-wrap: wrap;
}
.link-small { font-size: .8rem; color: var(--text-dim); margin-left: auto; }
.link-small:hover { color: var(--danger); }

/* ── ALERTS ───────────────────────────────────────────────── */
.alert {
  border-radius: 8px; padding: 1rem 1.25rem;
  margin-bottom: 1.5rem; font-size: .9rem; line-height: 1.6;
  border: 1px solid transparent;
}
.alert-danger {
  background: rgba(239,68,68,.1); border-color: rgba(239,68,68,.3); color: #fca5a5;
}
.alert-warning {
  background: rgba(245,158,11,.1); border-color: rgba(245,158,11,.3); color: #fcd34d;
}
.alert-success {
  background: rgba(34,197,94,.1); border-color: rgba(34,197,94,.3); color: #86efac;
}
.error-list { margin: .5rem 0 0 1.25rem; }
.error-list li { margin-bottom: .25rem; }

/* ── BADGES ───────────────────────────────────────────────── */
.badge {
  display: inline-block; border-radius: 50px;
  padding: .25rem .85rem; font-size: .8rem; font-weight: 700;
}
.badge-warning { background: rgba(245,158,11,.15); color: #f59e0b; border: 1px solid rgba(245,158,11,.3); }
.badge-success { background: rgba(34,197,94,.15);  color: #22c55e; border: 1px solid rgba(34,197,94,.3); }
.badge-danger  { background: rgba(239,68,68,.15);  color: #ef4444; border: 1px solid rgba(239,68,68,.3); }

/* ── STATUS CARD ──────────────────────────────────────────── */
.status-card {
  background: var(--dark3);
  border-radius: 16px; padding: 1.25rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(26,111,255,.2);
}
.status-pending  { border-color: rgba(245,158,11,.3); }
.status-approved { border-color: rgba(34,197,94,.3);  }
.status-rejected { border-color: rgba(239,68,68,.3);  }

.status-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.status-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem; font-weight: 900;
  color: var(--silver-light); margin-bottom: .5rem;
}
.status-subtitle { color: var(--text-dim); font-size: 1rem; margin-bottom: 1.5rem; }

.status-info-box {
  border-radius: 10px; padding: 1.25rem 1.5rem;
  margin: 1.25rem 0; text-align: left;
  border: 1px solid transparent;
}
.status-info-box p { font-size: .95rem; margin-bottom: .4rem; color: var(--text); }
.status-info-box p:last-child { margin-bottom: 0; }
.info-label {
  font-weight: 700; font-size: .8rem !important;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--text-dim) !important; margin-bottom: .75rem !important;
}
.status-info-success { background: rgba(34,197,94,.08);  border-color: rgba(34,197,94,.25); }
.status-info-danger  { background: rgba(239,68,68,.08);  border-color: rgba(239,68,68,.25); }
.status-info-warning { background: rgba(245,158,11,.08); border-color: rgba(245,158,11,.25); }

.status-details {
  background: var(--dark2); border-radius: 10px;
  padding: 1.25rem 1.5rem; margin: 1.5rem 0;
  text-align: left; border: 1px solid rgba(26,111,255,.12);
}
.detail-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .6rem 0; border-bottom: 1px solid rgba(255,255,255,.04);
}
.detail-row:last-child { border-bottom: none; }
.detail-label { font-size: .8rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .5px; }
.detail-val   { font-size: .9rem; color: var(--silver); font-weight: 600; }
.detail-val code {
  background: rgba(26,111,255,.15); padding: .2rem .6rem;
  border-radius: 4px; font-family: monospace; color: var(--primary);
}

.status-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--dark2);
  border-top: 1px solid rgba(26,111,255,.12);
  padding: 3rem 2rem 1.5rem;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 2rem; flex-wrap: wrap; margin-bottom: 2rem;
}
.footer-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem; font-weight: 800;
  color: var(--silver-light); letter-spacing: 2px;
}
.footer-desc { color: var(--text-dim); font-size: .85rem; margin-top: .25rem; }
.footer-links {
  display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center;
}
.footer-links a { color: var(--text-dim); font-size: .85rem; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.05);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
  font-size: .8rem; color: var(--text-dim);
}
.footer-credit a { color: rgba(26,111,255,.7); font-weight: 600; }
.footer-credit a:hover { color: var(--primary); }

/* ── ADMIN PANEL ──────────────────────────────────────────── */
.admin-layout {
  display: flex; min-height: 100vh;
}
.admin-sidebar {
  width: 240px; flex-shrink: 0;
  background: var(--dark2);
  border-right: 1px solid rgba(26,111,255,.15);
  padding: 1.5rem 0;
  position: fixed; top: 0; left: 0; height: 100vh;
  overflow-y: auto; z-index: 100;
}
.sidebar-brand {
  padding: 0 1.5rem 1.5rem;
  border-bottom: 1px solid rgba(26,111,255,.12);
  margin-bottom: 1rem;
}
.sidebar-brand span {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem; font-weight: 800;
  color: var(--silver-light); display: block;
}
.sidebar-brand small { color: var(--text-dim); font-size: .75rem; }
.sidebar-nav { padding: 0 .75rem; }
.sidebar-nav a {
  display: flex; align-items: center; gap: .75rem;
  padding: .7rem 1rem; border-radius: 8px;
  color: var(--text-dim); font-size: .9rem; font-weight: 500;
  transition: all .2s; margin-bottom: .25rem;
}
.sidebar-nav a:hover, .sidebar-nav a.active {
  background: rgba(26,111,255,.12);
  color: var(--primary);
}
.sidebar-nav .nav-icon { font-size: 1.1rem; }
.sidebar-section {
  padding: .75rem 1.5rem .25rem;
  font-size: .7rem; font-weight: 700;
  color: rgba(122,138,176,.5);
  letter-spacing: 1.5px; text-transform: uppercase;
}
.admin-main {
  margin-left: 240px; flex: 1;
  padding: 2rem; min-height: 100vh;
}
.admin-topbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 2rem; padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(26,111,255,.12);
}
.admin-topbar h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.6rem; font-weight: 800; color: var(--silver-light);
}
.admin-user { display: flex; align-items: center; gap: .75rem; }
.admin-user-name { font-size: .9rem; color: var(--text-dim); }
.admin-badge-owner {
  background: rgba(245,158,11,.15); color: #f59e0b;
  border: 1px solid rgba(245,158,11,.3);
  border-radius: 50px; padding: .2rem .75rem; font-size: .75rem; font-weight: 700;
}
.admin-badge-admin {
  background: rgba(26,111,255,.15); color: var(--primary);
  border: 1px solid rgba(26,111,255,.3);
  border-radius: 50px; padding: .2rem .75rem; font-size: .75rem; font-weight: 700;
}

/* Stats cards admin */
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
  gap: 1rem; margin-bottom: 2rem;
}
.stat-card {
  background: var(--dark3); border: 1px solid rgba(26,111,255,.15);
  border-radius: 12px; padding: 1.5rem;
}
.stat-card-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.2rem; font-weight: 900; color: var(--primary); line-height: 1;
}
.stat-card-label { font-size: .8rem; color: var(--text-dim); margin-top: .4rem; text-transform: uppercase; letter-spacing: .5px; }
.stat-card.warn .stat-card-num { color: #f59e0b; }
.stat-card.success .stat-card-num { color: #22c55e; }
.stat-card.danger .stat-card-num { color: #ef4444; }

/* Tables admin */
.admin-table-wrap { overflow-x: auto; }
.admin-table {
  width: 100%; border-collapse: collapse;
  font-size: .88rem;
}
.admin-table th {
  background: var(--dark2); color: var(--text-dim);
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; padding: .85rem 1rem; text-align: left;
  border-bottom: 1px solid rgba(26,111,255,.15);
}
.admin-table td {
  padding: .85rem 1rem; color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,.04);
  vertical-align: middle;
}
.admin-table tr:hover td { background: rgba(26,111,255,.04); }
.td-discord { font-family: monospace; font-size: .8rem; color: var(--text-dim); }

/* ── DISCORD CONFIRM CARD ─────────────────────────────────── */
.discord-confirm-card {
  background: var(--dark3);
  border: 1px solid rgba(88,101,242,.3);
  border-radius: 16px; padding: 2rem;
  text-align: center;
}
.discord-confirm-label {
  font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--text-dim); margin-bottom: 1.25rem;
}
.discord-user-card {
  display: flex; align-items: center; gap: 1.25rem;
  background: rgba(88,101,242,.08);
  border: 1px solid rgba(88,101,242,.25);
  border-radius: 12px; padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem; position: relative;
  text-align: left;
}
.discord-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 3px solid #5865f2;
  flex-shrink: 0;
  object-fit: cover;
}
.discord-user-info {
  display: flex; flex-direction: column; gap: .2rem; flex: 1;
}
.discord-display-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.25rem; font-weight: 800;
  color: var(--silver-light);
}
.discord-username {
  font-size: .85rem; color: var(--text-dim);
}
.discord-id-tag {
  font-size: .75rem; color: rgba(122,138,176,.5);
  font-family: monospace;
}
.discord-verified-badge {
  flex-shrink: 0;
}
.discord-confirm-buttons {
  display: flex; flex-direction: column; gap: .75rem;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .form-row          { grid-template-columns: 1fr; }
  .nav-links         { display: none; }
  .stat-item         { padding: 0 1.5rem; }
  .stat-divider      { height: 30px; }
  .footer-inner      { flex-direction: column; }
  .footer-bottom     { flex-direction: column; align-items: center; text-align: center; }
  .admin-sidebar     { width: 100%; height: auto; position: relative; }
  .admin-main        { margin-left: 0; }
  .admin-layout      { flex-direction: column; }
  .status-actions    { flex-direction: column; }
  .detail-row        { flex-direction: column; align-items: flex-start; gap: .25rem; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-lg       { width: 100%; max-width: 320px; }
  .wl-form      { padding: 1.25rem; }
  .form-section { padding: 1.25rem; }
  .stats-grid   { grid-template-columns: 1fr 1fr; }
}


