/* ===== FONTS ===== */
@font-face {
  font-family: 'SpecialGothic';
  src: url('/font/SpecialGothicExpandedOne-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --google-blue:    #4f8ef7;
  --google-red:     #f55b5b;
  --google-yellow:  #f5c842;
  --google-green:   #3fcf74;
  --bg:             #0d1117;
  --surface:        #161b22;
  --surface-2:      #21262d;
  --border:         #30363d;
  --border-dark:    #484f58;
  --text:           #e6edf3;
  --text-primary:   #e6edf3;
  --text-secondary: #8b949e;
  --hover-bg:       #1c2128;
  --selected-bg:    #1c2c4a;
  --nav-bg:         #161b22;
  --shadow:    0 1px 3px rgba(0,0,0,0.4), 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.5);
  --radius: 8px;
  --font: 'SpecialGothic', 'Google Sans', 'Roboto', sans-serif;
}

body {
  font-family: var(--font);
  font-size: 13px;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ===== NAVBAR ===== */
.navbar {
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 24px;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
  gap: 8px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 32px;
  text-decoration: none;
}

.nav-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}

.nav-links { flex: 1; display: flex; gap: 4px; align-items: center; }

.nav-user {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.nav-username {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}

.nav-rolebadge {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
  white-space: nowrap;
}
.perm-full   { background: rgba(245,91,91,0.15);  color: #f55b5b; border: 1px solid rgba(245,91,91,0.3); }
.perm-convoy { background: rgba(168,85,247,0.15); color: #a855f7; border: 1px solid rgba(168,85,247,0.3); }
.perm-vtc    { background: rgba(63,207,116,0.15); color: #3fcf74; border: 1px solid rgba(63,207,116,0.3); }

.nav-logout {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--text-secondary);
  text-decoration: none;
  transition: background 0.12s;
}
.nav-logout:hover { background: var(--hover-bg); color: var(--google-red); }
.nav-logout .material-icons { font-size: 18px; }

/* ===== LOGIN PAGE ===== */
.login-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at top, #1c2c4a 0%, #0d1117 60%);
}

.login-card {
  background: #161b22;
  border: 1px solid #30363d;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
  padding: 48px 40px;
  width: 420px;
  max-width: 95vw;
  text-align: center;
}

.login-logo { margin-bottom: 32px; }
.login-logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  margin-bottom: 12px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.login-title { font-size: 16px; font-weight: 500; margin: 12px 0 8px; color: var(--text); }
.login-subtitle { font-size: 12px; color: var(--text-secondary); }

.btn-discord {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 12px 24px;
  background: #5865f2;
  color: #fff;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, box-shadow 0.15s;
  margin-bottom: 16px;
}
.btn-discord:hover { background: #4752c4; box-shadow: 0 4px 16px rgba(88,101,242,0.4); }

.login-note {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 8px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}

.nav-link:hover { background: var(--hover-bg); color: var(--text); }
.nav-link.active { background: var(--selected-bg); color: var(--google-blue); }
.nav-link .material-icons { font-size: 18px; }

/* ===== MAIN CONTENT ===== */
.main-content {
  flex: 1;
  padding: 24px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* ===== PAGE HEADER ===== */
.page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.page-title {
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
}

.page-subtitle {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* ===== STATS GRID ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: box-shadow 0.15s, transform 0.15s;
}

.stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon .material-icons { font-size: 24px; }

.stat-number {
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* ===== QUICK ACTIONS ===== */
.section-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--text);
}

.action-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background 0.15s, box-shadow 0.15s;
}

.btn .material-icons { font-size: 18px; }

.btn-primary { background: var(--google-blue); color: #fff; }
.btn-primary:hover { background: #3367d6; box-shadow: var(--shadow); }

.btn-secondary { background: var(--surface); color: var(--google-blue); border: 1px solid var(--border-dark); }
.btn-secondary:hover { background: var(--hover-bg); }

.btn-success { background: var(--google-green); color: #fff; }
.btn-success:hover { background: #2d9249; }

.btn-ghost { background: transparent; color: var(--text-secondary); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--hover-bg); }

/* ===== ALERT ===== */
.alert {
  padding: 12px 16px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-size: 14px;
  border-left: 4px solid;
}

.alert-success { background: rgba(63,207,116,0.1);  border-color: var(--google-green); color: #3fcf74; }
.alert-info    { background: rgba(79,142,247,0.1);   border-color: var(--google-blue);  color: #4f8ef7; }
.alert-error   { background: rgba(245,91,91,0.1);    border-color: var(--google-red);   color: #f55b5b; }

/* ===== SHEET CONTAINER (Google Sheets style) ===== */
.sheet-container {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.sheet-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}

.sheet-info {
  font-size: 13px;
  color: var(--text-secondary);
}

.sheet-search {
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 13px;
  outline: none;
  width: 220px;
  transition: border-color 0.15s;
  background: var(--surface-2);
  color: var(--text);
}

.sheet-search:focus { border-color: var(--google-blue); }

.sheet-wrapper {
  overflow-x: auto;
}

.sheet-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  table-layout: auto;
}

.sheet-table thead th {
  background: var(--surface-2);
  border-bottom: 2px solid var(--border-dark);
  border-right: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
  font-weight: 500;
  font-size: 12px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  user-select: none;
  position: sticky;
  top: 0;
}

.sheet-table thead th:last-child { border-right: none; }

.sheet-table tbody td {
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  padding: 8px 12px;
  vertical-align: middle;
}

.sheet-table tbody td:last-child { border-right: none; }

.sheet-row:hover { background: var(--hover-bg); }
.sheet-row.editing { background: #1c2c4a; }

.row-num {
  width: 40px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 12px;
  background: var(--surface-2) !important;
  border-right: 2px solid var(--border-dark) !important;
  user-select: none;
}

.empty-row {
  text-align: center;
  color: var(--text-secondary);
  padding: 32px !important;
  font-style: italic;
}

/* ===== EDITABLE CELLS ===== */
.editable-cell { position: relative; }

.cell-input {
  width: 100%;
  padding: 4px 8px;
  border: 2px solid var(--google-blue);
  border-radius: 2px;
  font-size: 13px;
  font-family: var(--font);
  outline: none;
  background: var(--surface-2);
  color: var(--text);
}

select.cell-input { padding: 3px 8px; }
input[type="color"].cell-input { height: 32px; padding: 2px 4px; }

/* ===== ROLE & STATUS BADGES ===== */
.role-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.status-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

.status-active      { background: rgba(63,207,116,0.15);  color: #3fcf74; border: 1px solid rgba(63,207,116,0.3); }
.status-inactive    { background: rgba(139,148,158,0.15); color: #8b949e; border: 1px solid rgba(139,148,158,0.3); }
.status-banned      { background: rgba(245,91,91,0.15);   color: #f55b5b; border: 1px solid rgba(245,91,91,0.3); }
.status-online      { background: rgba(63,207,116,0.15);  color: #3fcf74; border: 1px solid rgba(63,207,116,0.3); }
.status-offline     { background: rgba(245,91,91,0.15);   color: #f55b5b; border: 1px solid rgba(245,91,91,0.3); }
.status-maintenance { background: rgba(245,200,66,0.15);  color: #f5c842; border: 1px solid rgba(245,200,66,0.3); }

.color-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 6px;
  border: 1px solid rgba(255,255,255,0.15);
}

.site-link {
  color: var(--google-blue);
  text-decoration: none;
  font-size: 12px;
}
.site-link:hover { text-decoration: underline; }

.site-url-plain {
  font-size: 12px;
  color: var(--text-secondary);
  border-bottom: 1px dashed var(--border-dark);
  cursor: help;
}

.form-hint {
  display: block;
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* ===== ACTION CELL ===== */
.action-cell { white-space: nowrap; }

.icon-btn {
  width: 30px;
  height: 30px;
  border: none;
  background: transparent;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.12s;
  vertical-align: middle;
}

.icon-btn .material-icons { font-size: 16px; }

.edit-btn { color: var(--google-blue); }
.edit-btn:hover { background: var(--selected-bg); }

.save-btn { color: var(--google-green); }
.save-btn:hover { background: rgba(63,207,116,0.12); }

.cancel-btn { color: var(--text-secondary); }
.cancel-btn:hover { background: var(--hover-bg); }

.delete-btn { color: var(--google-red); }
.delete-btn:hover { background: rgba(245,91,91,0.12); }

/* ===== MODALS ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 200;
  align-items: center;
  justify-content: center;
}

.modal-overlay.open { display: flex; }

.modal {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  width: 480px;
  max-width: 95vw;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 0;
}

.modal-header h3 { font-size: 14px; font-weight: 500; }

.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-secondary);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.12s;
}
.modal-close:hover { background: var(--hover-bg); }

.modal-body { padding: 20px 24px; }

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding: 0 24px 20px;
}

/* ===== FORM ===== */
.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  font-size: 14px;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  color: var(--text);
  background: var(--surface-2);
  box-sizing: border-box;
  resize: vertical;
}

.form-input:focus {
  border-color: var(--google-blue);
  box-shadow: 0 0 0 2px rgba(66,133,244,0.15);
}

.form-color { height: 42px; padding: 4px 8px; cursor: pointer; }

/* ===== FOOTER ===== */
.footer {
  text-align: center;
  padding: 16px;
  font-size: 13px;
  color: var(--text-secondary);
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.btn-vtc { background: #a855f7; color: #fff; }
.btn-vtc:hover { background: #9333ea; box-shadow: var(--shadow); }

.btn-sm { padding: 6px 14px; font-size: 13px; }

.btn-danger-sm {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  background: rgba(245,91,91,0.12);
  color: var(--google-red);
  border: 1px solid rgba(245,91,91,0.3);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.12s;
}
.btn-danger-sm:hover { background: rgba(245,91,91,0.22); }
.btn-danger-sm .material-icons { font-size: 16px; }

/* ===== CONVOY TABS ===== */
.convoy-tabs-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--border);
  margin-bottom: 20px;
  gap: 12px;
}

.convoy-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  overflow-x: auto;
  padding-bottom: 2px;
}

.convoy-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 6px 6px 0 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  border: 1px solid transparent;
  border-bottom: none;
  margin-bottom: -2px;
  transition: background 0.12s, color 0.12s;
  white-space: nowrap;
}
.convoy-tab:hover { background: var(--hover-bg); color: var(--text); }
.convoy-tab.active {
  background: var(--surface);
  color: #a855f7;
  border-color: var(--border);
  border-bottom-color: var(--surface);
}
.convoy-tab-icon { font-size: 16px; }
.convoy-tab-count {
  background: var(--hover-bg);
  color: var(--text-secondary);
  font-size: 11px;
  padding: 1px 6px;
  border-radius: 10px;
  font-weight: 600;
}
.convoy-tab.active .convoy-tab-count { background: rgba(168,85,247,0.15); color: #a855f7; }

.convoy-tab-empty {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 10px 4px;
  font-style: italic;
}

/* ===== EMPTY STATE ===== */
.empty-state {
  text-align: center;
  padding: 64px 24px;
  color: var(--text-secondary);
}
.empty-state-icon { font-size: 64px; display: block; margin-bottom: 16px; opacity: 0.3; }
.empty-state p { font-size: 16px; margin-bottom: 20px; }

/* ===== NOTES DISPLAY ===== */
.notes-display { font-size: 12px; color: var(--text-secondary); }

/* ===== VTC TRACKER ===== */
.vtc-stats-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.vtc-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 100px;
}

.vtc-stat-num { font-size: 26px; font-weight: 500; color: var(--text); line-height: 1; }
.vtc-stat-label { font-size: 12px; color: var(--text-secondary); margin-top: 4px; }

.vtc-stat-accepted .vtc-stat-num { color: var(--google-green); }
.vtc-stat-pending .vtc-stat-num  { color: var(--google-yellow); }
.vtc-stat-declined .vtc-stat-num { color: var(--google-red); }
.vtc-stat-rate .vtc-stat-num     { color: #a855f7; }

.vtc-progress-wrap {
  margin-bottom: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
}

.vtc-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.vtc-progress-track {
  height: 10px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
}

.vtc-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #34a853, #4285f4);
  border-radius: 999px;
  transition: width 0.5s ease;
}

.vtc-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 16px;
  align-items: start;
}

.vtc-main { overflow: hidden; }

/* Mini progress bar in table */
.pct-cell {
  white-space: nowrap;
  min-width: 100px;
}

.mini-bar-wrap {
  height: 6px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 2px;
}

.mini-bar {
  height: 100%;
  background: linear-gradient(90deg, #34a853, #4285f4);
  border-radius: 999px;
}

.pct-label { font-size: 11px; color: var(--text-secondary); }

/* Sidebar */
.vtc-sidebar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}

.sidebar-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.sidebar-empty { font-size: 13px; color: var(--text-secondary); }

.inviter-card {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.inviter-card:last-child { border-bottom: none; }

.inviter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2px;
}

.inviter-name { font-size: 13px; font-weight: 500; color: var(--text); }
.inviter-rate { font-size: 13px; font-weight: 700; }
.rate-good { color: var(--google-green); }
.rate-low  { color: var(--google-red); }

.inviter-sub { font-size: 11px; color: var(--text-secondary); margin-bottom: 6px; }

.inviter-track {
  height: 5px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
}

.inviter-fill { height: 100%; border-radius: 999px; transition: width 0.4s ease; }

/* VTC status badges */
.status-accepted { background: rgba(63,207,116,0.15);  color: #3fcf74; border: 1px solid rgba(63,207,116,0.3); }
.status-pending  { background: rgba(245,200,66,0.15);   color: #f5c842; border: 1px solid rgba(245,200,66,0.3); }
.status-declined { background: rgba(245,91,91,0.15);   color: #f55b5b; border: 1px solid rgba(245,91,91,0.3); }

/* ===== ACTIVITY TRACKER ===== */
.activity-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.activity-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}
.activity-card-ok  { border-top: 3px solid #3fcf74; }
.activity-card-fail { border-top: 3px solid #f55b5b; }
.activity-card-num   { display: block; font-size: 32px; font-weight: 700; color: var(--text-primary); }
.activity-card-label { display: block; font-size: 13px; color: var(--text-secondary); margin-top: 4px; }

.activity-convoy-header { max-width: 120px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.activity-cell { text-align: center; white-space: nowrap; padding: 8px 12px !important; }
.activity-count { font-weight: 600; margin-right: 4px; }
.activity-icon  { font-size: 16px !important; vertical-align: middle; }
.activity-total { text-align: center; font-size: 15px; }

.activity-ok   { background: rgba(63,207,116,0.12);  color: #3fcf74; }
.activity-fail { background: rgba(245,91,91,0.12);   color: #f55b5b; }
.activity-zero { background: rgba(139,148,158,0.08); color: #8b949e; }

.activity-legend {
  display: flex;
  gap: 24px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-secondary);
}
.legend-item   { display: flex; align-items: center; gap: 6px; }
.legend-dot    { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.legend-dot-ok   { background: #3fcf74; }
.legend-dot-fail { background: #f55b5b; }
.legend-dot-zero { background: #484f58; }



/* ===== DASHBOARD ===== */
.dash-hero {
  background: linear-gradient(135deg, #1c2c4a 0%, #161b22 100%);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 36px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dash-hero-title {
  font-size: 26px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.dash-hero-sub {
  font-size: 14px;
  color: var(--text-secondary);
}
.dash-hero-icon {
  font-size: 64px;
  color: var(--google-blue);
  opacity: 0.35;
}
.dash-section-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 12px;
  margin-top: 28px;
}

@media (max-width: 900px) {
  .vtc-layout { grid-template-columns: 1fr; }
  .vtc-sidebar { order: -1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .main-content { padding: 16px; }
  .navbar { padding: 0 12px; }
  .nav-title { display: none; }
  .nav-link span:not(.material-icons) { display: none; }
  .page-header { flex-direction: column; gap: 12px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
