/* ============================================================
   QueenHost — Design System v4
   Estilo: Hostinger hPanel — fiel ao original
   ============================================================ */

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

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

:root {
  --brand:       #7B2FBE;
  --brand-dark:  #6322A0;
  --brand-light: #F3EEFF;
  --brand-mid:   #9333EA;

  --bg:       #F0F0F5;
  --white:    #FFFFFF;
  --border:   #E2E2EA;
  --border-2: #CDCDD8;

  --text:    #1A1A2E;
  --text-2:  #555570;
  --text-3:  #9090AA;

  --green:      #22C55E;
  --green-bg:   #F0FDF4;
  --green-bd:   #BBF7D0;
  --green-text: #15803D;

  --orange:      #F97316;
  --orange-bg:   #FFF7ED;
  --orange-bd:   #FED7AA;
  --orange-text: #C2410C;

  --red:      #EF4444;
  --red-bg:   #FEF2F2;
  --red-bd:   #FECACA;
  --red-text: #B91C1C;

  --cyan:    #0EA5E9;
  --cyan-bg: #F0F9FF;
  --cyan-bd: #BAE6FD;

  --sidebar-w: 240px;
  --header-h:  64px;
  --radius:    12px;
  --radius-sm: 8px;
  --radius-lg: 16px;

  --shadow-card: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:   0 4px 12px rgba(0,0,0,.08);
  --shadow-lg:   0 8px 24px rgba(0,0,0,.10);
  --shadow-xl:   0 20px 40px rgba(0,0,0,.13);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
}

/* ─── LAYOUT ─── */
.app { min-height: 100vh; display: flex; }

/* ─── SIDEBAR ─── */
.sidebar {
  width: var(--sidebar-w);
  background: var(--white);
  border-right: 1px solid var(--border);
  position: fixed; top: 0; bottom: 0; left: 0;
  z-index: 40; display: flex; flex-direction: column;
  overflow-y: auto;
}

.sidebar-header {
  height: var(--header-h);
  padding: 0 20px;
  display: flex; align-items: center;
  border-bottom: 1px solid var(--border);
}
.sidebar-logo-icon {
  width: 32px; height: 32px;
  background: var(--brand);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 14px; flex-shrink: 0;
}
.sidebar-logo-text {
  font-size: 16px; font-weight: 800; color: var(--text);
  letter-spacing: -.3px; margin-left: 10px;
}
.sidebar-logo-text span { color: var(--brand); }

.nav-section { padding: 8px 12px; }
.nav-section-label {
  font-size: 10px; font-weight: 600; color: var(--text-3);
  text-transform: uppercase; letter-spacing: .8px;
  padding: 12px 8px 4px;
}
.nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500; color: var(--text-2);
  cursor: pointer; transition: background .12s, color .12s;
  margin-bottom: 1px; text-decoration: none;
}
.nav-item i { width: 18px; text-align: center; font-size: 14px; flex-shrink: 0; color: var(--text-3); }
.nav-item:hover { background: var(--bg); color: var(--text); }
.nav-item:hover i { color: var(--text-2); }
.nav-item.active { background: var(--brand-light); color: var(--brand); font-weight: 600; }
.nav-item.active i { color: var(--brand); }

.sidebar-footer {
  margin-top: auto; padding: 12px;
  border-top: 1px solid var(--border);
}

/* ─── TOP BAR ─── */
.top-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 28px; height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 30;
}
.page-title { font-size: 15px; font-weight: 700; color: var(--text); }
.top-bar-right { display: flex; align-items: center; gap: 10px; }

.user-chip {
  display: flex; align-items: center; gap: 8px;
  padding: 5px 14px 5px 5px;
  border: 1px solid var(--border); border-radius: 30px;
  font-size: 13px; font-weight: 500; color: var(--text-2);
  background: var(--white);
}
.user-avatar {
  width: 28px; height: 28px; background: var(--brand);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; color: white; font-size: 11px; font-weight: 700; flex-shrink: 0;
}
.btn-topbar {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 14px;
  border: 1px solid var(--border); border-radius: 30px;
  font-size: 13px; font-weight: 500; color: var(--text-2);
  cursor: pointer; background: var(--white);
  transition: all .15s; font-family: inherit; text-decoration: none;
}
.btn-topbar:hover { border-color: var(--red-bd); color: var(--red); }

/* ─── MAIN CONTENT ─── */
.main-content { flex: 1; margin-left: var(--sidebar-w); min-height: 100vh; }
.container { max-width: 1200px; margin: 0 auto; padding: 32px 28px; }

/* ─── PAGE HEADER ─── */
.page-header { margin-bottom: 28px; }
.page-header h2 { font-size: 22px; font-weight: 700; color: var(--text); }
.page-header p  { font-size: 14px; color: var(--text-3); margin-top: 4px; }

/* ─── WELCOME BANNER ─── */
.welcome-banner {
  margin-bottom: 28px;
}
.welcome-banner h2 { font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.welcome-banner p  { font-size: 14px; color: var(--text-3); }

/* ─── TASK CARD (Hostinger style CTA) ─── */
.task-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-card);
}
.task-card-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--brand-light); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.task-card-body { flex: 1; }
.task-card-title { font-size: 14px; font-weight: 600; color: var(--text); }
.task-card-sub   { font-size: 13px; color: var(--text-3); margin-top: 2px; }

/* ─── STATS GRID ─── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px; margin-bottom: 24px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 20px 22px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-card);
}
.stat-icon {
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.stat-icon.blue   { background: var(--brand-light); color: var(--brand); }
.stat-icon.green  { background: var(--green-bg);    color: var(--green); }
.stat-icon.orange { background: var(--orange-bg);   color: var(--orange); }
.stat-icon.red    { background: var(--red-bg);      color: var(--red); }
.stat-icon.cyan   { background: var(--cyan-bg);     color: var(--cyan); }
.stat-label { font-size: 12px; color: var(--text-3); font-weight: 500; margin-bottom: 4px; }
.stat-value { font-size: 24px; font-weight: 700; color: var(--text); line-height: 1; }
.stat-sub   { font-size: 11px; color: var(--text-3); margin-top: 3px; }

/* ─── CARDS ─── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden; margin-bottom: 16px;
  box-shadow: var(--shadow-card);
}
.card-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.card-title {
  font-size: 15px; font-weight: 600; color: var(--text);
  display: flex; align-items: center; gap: 8px;
}
.card-title-icon {
  width: 28px; height: 28px; border-radius: 7px;
  background: var(--brand-light); color: var(--brand);
  display: flex; align-items: center; justify-content: center; font-size: 12px;
}
.card-body { padding: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 16px; }

/* ─── TABLE ─── */
.table-wrapper { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th {
  text-align: left; padding: 10px 16px;
  background: var(--bg);
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .5px; color: var(--text-3);
  border-bottom: 1px solid var(--border);
}
td {
  padding: 13px 16px; font-size: 13.5px;
  border-bottom: 1px solid var(--border); color: var(--text-2);
}
tr:last-child td { border-bottom: none; }
tbody tr:hover { background: #FAFAFD; }
.td-domain { font-weight: 600; color: var(--text); }
.td-sub { font-size: 11.5px; color: var(--text-3); margin-top: 2px; }
.table-footer {
  padding: 12px 16px; border-top: 1px solid var(--border);
  background: var(--bg); font-size: 12px; color: var(--text-3);
  display: flex; justify-content: space-between; align-items: center;
}

/* ─── BADGES ─── */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 600;
}
.badge-success { background: var(--green-bg);  color: var(--green-text); border: 1px solid var(--green-bd); }
.badge-warning { background: var(--orange-bg); color: var(--orange-text);border: 1px solid var(--orange-bd);}
.badge-danger  { background: var(--red-bg);    color: var(--red-text);   border: 1px solid var(--red-bd); }
.badge-info    { background: var(--brand-light);color: var(--brand);     border: 1px solid #DDD5FF; }
.badge-dot     { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: 30px;
  font-size: 13.5px; font-weight: 600; cursor: pointer;
  transition: all .15s; border: none; font-family: inherit;
  text-decoration: none; white-space: nowrap;
}
.btn-primary   { background: var(--brand); color: white; }
.btn-primary:hover { background: var(--brand-dark); }
.btn-secondary { background: var(--white); color: var(--text-2); border: 1px solid var(--border); }
.btn-secondary:hover { background: var(--bg); }
.btn-success   { background: var(--green);  color: white; }
.btn-success:hover  { filter: brightness(1.08); }
.btn-warning   { background: var(--orange); color: white; }
.btn-danger    { background: var(--red);    color: white; }
.btn-danger:hover   { filter: brightness(1.08); }
.btn-outline-brand  { background: transparent; border: 1.5px solid var(--brand); color: var(--brand); border-radius: 30px; }
.btn-outline-brand:hover { background: var(--brand-light); }
.btn-sm    { padding: 5px 14px; font-size: 12.5px; }
.btn-lg    { padding: 11px 26px; font-size: 14.5px; }
.btn-block { width: 100%; justify-content: center; border-radius: var(--radius-sm); }
.btn-rect  { border-radius: var(--radius-sm); } /* square buttons */

/* ─── FORMS ─── */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.input-wrap { position: relative; }
.input-icon { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); color: var(--text-3); font-size: 14px; pointer-events: none; }
.form-control {
  width: 100%; padding: 10px 14px 10px 38px;
  background: var(--white); border: 1px solid var(--border-2);
  border-radius: var(--radius-sm); font-size: 14px;
  font-family: inherit; color: var(--text);
  transition: border-color .15s, box-shadow .15s; outline: none;
}
.form-control.no-icon { padding-left: 14px; }
.form-control:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(123,47,190,.12); }
.form-control::placeholder { color: #C0C0D0; }
select.form-control { cursor: pointer; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
textarea.form-control { resize: vertical; }

/* ─── SEARCH BAR ─── */
.search-bar {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 16px; margin-bottom: 14px;
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
}
.search-input {
  flex: 1; min-width: 200px; padding: 9px 14px 9px 38px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 30px; font-size: 13.5px; font-family: inherit;
  color: var(--text); outline: none; transition: border-color .15s;
}
.search-input:focus { border-color: var(--brand); background: var(--white); }
.search-input::placeholder { color: var(--text-3); }
.search-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--text-3); font-size: 13px; }
.search-wrap { position: relative; flex: 1; min-width: 200px; }
.filter-select {
  padding: 9px 14px; background: var(--bg); border: 1px solid var(--border);
  border-radius: 30px; font-size: 13.5px; font-family: inherit;
  color: var(--text-2); cursor: pointer; outline: none;
}

/* ─── LOADING / EMPTY ─── */
.loading { text-align: center; padding: 52px 20px; color: var(--text-3); font-size: 14px; }
.loading-spinner {
  width: 28px; height: 28px; border: 2.5px solid var(--border);
  border-top-color: var(--brand); border-radius: 50%;
  animation: spin .7s linear infinite; margin: 0 auto 12px;
}
.empty-state { text-align: center; padding: 56px 20px; }
.empty-state i { font-size: 32px; color: var(--text-3); opacity: .3; display: block; margin-bottom: 12px; }
.empty-state p { font-size: 14px; color: var(--text-3); }
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── MODAL ─── */
.modal {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.35); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; z-index: 500;
}
.modal.open { display: flex; }
.modal-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  width: 440px; max-width: 95vw; padding: 28px;
  box-shadow: var(--shadow-xl); animation: popIn .18s ease;
}
.modal-title { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.modal-body  { font-size: 14px; color: var(--text-2); line-height: 1.6; }
.modal-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 24px; }
@keyframes popIn { from { opacity:0; transform: scale(.96) translateY(6px); } to { opacity:1; transform:none; } }

/* ─── SENHA BOX ─── */
.senha-box {
  font-size: 20px; font-weight: 700; letter-spacing: 4px;
  font-family: monospace;
  background: var(--brand-light); border: 2px dashed #D0C4F8;
  border-radius: 10px; padding: 14px 20px;
  text-align: center; color: var(--brand); margin: 16px 0;
}

/* ─── TOAST ─── */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 600; display: flex; flex-direction: column; gap: 8px; }
.toast {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 18px; border-radius: var(--radius);
  background: var(--white); min-width: 260px; max-width: 360px;
  border: 1px solid var(--border); box-shadow: var(--shadow-md);
  font-size: 13.5px; font-weight: 500; color: var(--text);
  animation: slideIn .22s ease;
}
.toast-success { border-left: 3px solid var(--green); }
.toast-success i { color: var(--green); }
.toast-error   { border-left: 3px solid var(--red); }
.toast-error i { color: var(--red); }
.toast-info    { border-left: 3px solid var(--brand); }
.toast-info i  { color: var(--brand); }
@keyframes slideIn { from { opacity:0; transform: translateX(12px); } to { opacity:1; transform:none; } }

/* ─── INFO ROW ─── */
.info-row { display: flex; padding: 12px 0; border-bottom: 1px solid var(--border); align-items: center; }
.info-row:last-child { border-bottom: none; }
.info-key { font-size: 13px; color: var(--text-3); width: 180px; flex-shrink: 0; }
.info-val { font-size: 14px; font-weight: 600; color: var(--text); }

/* ─── TICKET ITEM ─── */
.ticket-item { padding: 14px 0; border-bottom: 1px solid var(--border); display: flex; gap: 12px; }
.ticket-item:last-child { border-bottom: none; }
.ticket-num { font-size: 11px; font-weight: 700; color: var(--text-3); width: 32px; flex-shrink: 0; }
.ticket-subject { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.ticket-meta    { font-size: 12px; color: var(--text-3); }
.ticket-msg     { font-size: 13px; color: var(--text-2); margin-top: 5px; line-height: 1.5; }

/* ─── PLAN CARD ─── */
.plan-card {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 22px; cursor: pointer; transition: all .18s;
  background: var(--white); position: relative;
}
.plan-card:hover { border-color: var(--brand); box-shadow: var(--shadow-md); }
.plan-card.selected { border-color: var(--brand); background: var(--brand-light); }
.plan-card-badge {
  position: absolute; top: -10px; right: 14px;
  background: var(--brand); color: white;
  font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px;
}
.plan-price  { font-size: 26px; font-weight: 700; color: var(--brand); }
.plan-period { font-size: 13px; color: var(--text-3); }
.plan-feature { font-size: 13px; color: var(--text-2); display: flex; align-items: center; gap: 8px; margin-top: 7px; }
.plan-feature i { color: var(--green); font-size: 11px; }

/* ─── PAY OPTIONS ─── */
.pay-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 14px 0; }
.pay-option {
  padding: 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius); cursor: pointer; transition: all .18s;
  text-align: center; background: var(--white);
}
.pay-option:hover { border-color: var(--brand); }
.pay-option.selected { border-color: var(--brand); background: var(--brand-light); }
.pay-option.selected-pix { border-color: var(--cyan); background: var(--cyan-bg); }
.pay-icon { font-size: 26px; margin-bottom: 6px; }
.pay-name { font-size: 14px; font-weight: 700; color: var(--text); }
.pay-desc { font-size: 11.5px; color: var(--text-3); margin-top: 2px; }

/* ─── LIVE BADGE ─── */
.live-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11.5px; font-weight: 600; color: var(--green-text);
  background: var(--green-bg); border: 1px solid var(--green-bd);
  padding: 3px 10px; border-radius: 20px;
}
.live-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{ opacity:1 } 50%{ opacity:.3 } }

/* ─── SERVER CARD ─── */
.server-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 24px;
  margin-bottom: 20px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  box-shadow: var(--shadow-card);
}
.server-card-left h3 { font-size: 11px; color: var(--text-3); font-weight: 600; text-transform: uppercase; letter-spacing: .6px; margin-bottom: 4px; }
.server-card-left p { font-size: 15px; font-weight: 700; color: var(--text); }
.server-loads { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.load-item .load-val { font-size: 22px; font-weight: 700; line-height: 1; color: var(--text); }
.load-item .load-lbl { font-size: 11px; color: var(--text-3); margin-top: 2px; }
.load-trend { font-size: 12.5px; font-weight: 600; }
.load-trend.up   { color: var(--green); }
.load-trend.down { color: var(--orange); }
.server-meta { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
.meta-item .meta-lbl { font-size: 10px; color: var(--text-3); text-transform: uppercase; letter-spacing: .5px; }
.meta-item .meta-val { font-size: 13px; font-weight: 600; color: var(--text); margin-top: 2px; }

/* ─── TABS (pill style) ─── */
.tabs { display: flex; gap: 6px; margin-bottom: 20px; flex-wrap: wrap; }
.tab-btn {
  padding: 7px 16px; background: var(--white); border: 1px solid var(--border);
  border-radius: 30px; font-size: 13.5px; font-weight: 500; color: var(--text-2);
  cursor: pointer; transition: all .15s; font-family: inherit;
}
.tab-btn:hover:not(.active) { background: var(--bg); color: var(--text); }
.tab-btn.active { background: var(--brand); color: white; border-color: var(--brand); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ─── RESULT BOXES ─── */
.result-success { background: var(--green-bg); border: 1px solid var(--green-bd); border-radius: var(--radius); padding: 28px; text-align: center; }
.result-error   { background: var(--red-bg);   border: 1px solid var(--red-bd);   border-radius: var(--radius); padding: 28px; text-align: center; }
.result-icon { font-size: 40px; margin-bottom: 12px; display: block; }
.pix-code-box {
  background: var(--bg); border: 1.5px dashed var(--border-2); border-radius: 8px;
  padding: 12px 14px; font-size: 11.5px; word-break: break-all; color: var(--text-2);
  font-family: monospace; margin: 12px 0; text-align: left;
}
.qr-wrap { margin: 16px auto; background: var(--white); border-radius: 12px; padding: 12px; display: inline-block; border: 1px solid var(--border); }
.qr-wrap img { max-width: 180px; display: block; }

/* ─── SECURITY BADGE ─── */
.security-badge {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 12px; color: var(--text-3); margin-top: 18px;
  padding-top: 16px; border-top: 1px solid var(--border);
}

/* ─── LATEST LIST ─── */
.latest-item { padding: 10px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
.latest-item:last-child { border-bottom: none; }
.latest-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); flex-shrink: 0; }

/* ─── UTILS ─── */
.hidden { display: none !important; }
code { background: var(--brand-light); padding: 2px 7px; border-radius: 5px; font-size: 12.5px; font-family: monospace; color: var(--brand); }
.text-muted   { color: var(--text-3); }
.text-brand   { color: var(--brand); }
.fw-700       { font-weight: 700; }
.mb-0         { margin-bottom: 0; }
.mt-16        { margin-top: 16px; }
.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
hr.divider    { border: none; border-top: 1px solid var(--border); margin: 20px 0; }

/* ─── HAMBURGER ─── */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px; cursor: pointer;
  background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 8px;
}
.hamburger span { display: block; height: 2px; background: var(--text-2); border-radius: 2px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .sidebar { transform: translateX(-100%); transition: transform .25s ease; }
  .sidebar.open { transform: none; box-shadow: 4px 0 24px rgba(0,0,0,.12); }
  .main-content { margin-left: 0; }
  .hamburger { display: flex; }
  .grid-2 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .stats-grid { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .container { padding: 16px; }
  .card-body { padding: 16px; }
  .pay-options { grid-template-columns: 1fr; }
  .server-loads { gap: 16px; }
}
