/* ═══════════════════════════════════════════
   SZ AUTOS — SHARED STYLESHEET
   ═══════════════════════════════════════════ */

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

:root {
  --black:      #000000;
  --g1:         #0a0a0a;
  --g2:         #111111;
  --g3:         #1a1a1a;
  --g4:         #222222;
  --orange:     #FF6A00;
  --orange2:    #E55A00;
  --orange-dim: rgba(255,106,0,0.15);
  --orange-glow:rgba(255,106,0,0.3);
  --red:        #FF2E00;
  --silver:     #C0C0C0;
  --silver2:    #888888;
  --white:      #ffffff;
  --muted:      rgba(255,255,255,0.45);
  --muted2:     rgba(255,255,255,0.15);
  --border:     rgba(255,106,0,0.18);
  --border2:    rgba(255,106,0,0.4);
  --card:       rgba(255,255,255,0.03);
  --card2:      rgba(255,255,255,0.06);
  --success:    #00c97a;
  --danger:     #ff4455;
  --warning:    #ffb800;
  --info:       #4d9fff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Syne', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Scrollbar */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--g2); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }

/* ─── TYPOGRAPHY ─── */
h1,h2,h3,h4,.orb { font-family: 'Orbitron', monospace; }
h1 { font-size: clamp(2rem, 5vw, 4.5rem); font-weight: 900; line-height: 1.1; }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }
h4 { font-size: 0.95rem; font-weight: 600; }
a { color: inherit; text-decoration: none; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 68px;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  padding: 0 clamp(1rem,3vw,2.5rem);
  gap: 2rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0; cursor: pointer;
}
.nav-logo img { height: 42px; width: auto; object-fit: contain; }
.nav-logo-text {
  font-family: 'Orbitron'; font-weight: 900; font-size: 1.1rem;
  background: linear-gradient(90deg, #fff 30%, var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* Main Nav Links */
.nav-links {
  display: flex; align-items: center; gap: 0; flex: 1;
  list-style: none;
}
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 14px; border-radius: 6px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
  text-transform: uppercase; color: var(--muted);
  cursor: pointer; transition: color 0.2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link.active::after {
  content: '';
  position: absolute; bottom: -2px; left: 14px; right: 14px;
  height: 2px; background: var(--orange); border-radius: 2px;
}
.nav-link .chevron {
  font-size: 10px; transition: transform 0.2s;
  display: inline-block; opacity: 0.6;
}
.nav-item:hover .chevron { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: var(--g2);
  border: 1px solid var(--border2);
  border-radius: 10px; padding: 8px;
  min-width: 220px;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s;
  z-index: 2000;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 7px;
  font-size: 13px; color: var(--muted);
  cursor: pointer; transition: all 0.15s;
}
.nav-dropdown-item:hover { background: var(--orange-dim); color: var(--white); }
.nav-dropdown-item .dd-icon { font-size: 16px; width: 22px; text-align: center; }
.nav-dropdown-item .dd-text .dd-title { font-weight: 600; font-size: 13px; }
.nav-dropdown-item .dd-text .dd-sub { font-size: 11px; color: var(--muted); margin-top: 1px; }
.nav-dropdown-divider { border: none; border-top: 1px solid var(--border); margin: 4px 0; }

/* Nav Right */
.nav-right { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.btn-nav {
  padding: 7px 18px; border-radius: 6px; font-size: 12px;
  font-weight: 700; cursor: pointer; border: 1px solid;
  font-family: 'Orbitron'; letter-spacing: 0.5px;
  text-transform: uppercase; transition: all 0.2s; white-space: nowrap;
}
.btn-nav-outline { background: transparent; border-color: var(--border2); color: var(--orange); }
.btn-nav-outline:hover { background: var(--orange-dim); }
.btn-nav-solid { background: var(--orange); border-color: var(--orange); color: var(--black); }
.btn-nav-solid:hover { background: var(--orange2); }
.nav-user-pill {
  display: flex; align-items: center; gap: 8px;
  background: var(--card2); border: 1px solid var(--border);
  padding: 5px 12px 5px 8px; border-radius: 100px; cursor: pointer;
  transition: border-color 0.2s;
}
.nav-user-pill:hover { border-color: var(--border2); }
.nav-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--orange-dim); border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Orbitron'; font-size: 11px; color: var(--orange);
}
.nav-user-info .nav-user-name { font-size: 12px; font-weight: 600; line-height: 1.2; }
.nav-user-info .nav-user-role { font-size: 10px; color: var(--orange); font-family: 'Orbitron'; letter-spacing: 1px; }

/* Mobile hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px;
  margin-left: auto;
}
.hamburger span { width: 22px; height: 2px; background: var(--orange); border-radius: 2px; transition: all 0.3s; display: block; }

/* Mobile nav */
.mobile-menu {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0;
  background: var(--g1); border-bottom: 1px solid var(--border);
  padding: 1rem; z-index: 999; flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-nav-item {
  padding: 10px 14px; border-radius: 8px; font-size: 14px; color: var(--muted);
  cursor: pointer; display: flex; align-items: center; gap: 8px;
}
.mobile-nav-item:hover { background: var(--card2); color: var(--white); }
.mobile-nav-group { padding: 6px 0; border-bottom: 1px solid var(--border); margin-bottom: 4px; }
.mobile-nav-group-title { font-size: 10px; color: var(--orange); letter-spacing: 2px; text-transform: uppercase; padding: 0 14px; margin-bottom: 4px; font-family: 'Orbitron'; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-right { display: none; }
}

/* ─── PAGE WRAPPER ─── */
.page-wrapper { padding-top: 68px; min-height: 100vh; }

/* ─── HERO ─── */
.hero-section {
  position: relative; overflow: hidden;
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: clamp(80px,10vw,120px) 1.5rem 4rem;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(255,106,0,0.07) 0%, transparent 70%);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 60px,
    rgba(255,106,0,0.02) 60px, rgba(255,106,0,0.02) 61px
  ),
  repeating-linear-gradient(
    90deg, transparent, transparent 60px,
    rgba(255,106,0,0.02) 60px, rgba(255,106,0,0.02) 61px
  );
}
.hero-content { position: relative; z-index: 1; max-width: 900px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange-dim); border: 1px solid var(--border2);
  padding: 6px 18px; border-radius: 100px; margin-bottom: 28px;
  font-size: 11px; font-weight: 600; color: var(--orange); letter-spacing: 2px; text-transform: uppercase;
}
.hero-badge::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange); animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(1.5)} }
.hero-title {
  background: linear-gradient(135deg, #ffffff 0%, #d0d0d0 40%, var(--orange) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}
.hero-subtitle { font-size: 1rem; color: var(--muted); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 2.5rem; }
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2.5rem; justify-content: center; margin-top: 3.5rem; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat-num { font-family: 'Orbitron'; font-size: 2rem; font-weight: 900; color: var(--orange); }
.hero-stat-label { font-size: 12px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; margin-top: 2px; }

/* ─── SECTION ─── */
.section { padding: 5rem clamp(1rem,4vw,2.5rem); max-width: 1320px; margin: 0 auto; }
.section-label { font-size: 11px; color: var(--orange); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 8px; font-family: 'Orbitron'; }
.section-title {
  font-size: clamp(1.6rem,3vw,2.2rem);
  background: linear-gradient(90deg, #fff 20%, var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}
.section-sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 2.5rem; max-width: 520px; }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 11px 24px; border-radius: 8px; font-size: 14px; font-weight: 600;
  cursor: pointer; border: 1px solid; transition: all 0.2s;
  font-family: 'Syne'; white-space: nowrap;
}
.btn:disabled { opacity: 0.4; cursor: not-allowed; }
.btn-sm { padding: 7px 14px; font-size: 12px; }
.btn-lg { padding: 14px 36px; font-size: 15px; }
.btn-orange {
  background: linear-gradient(135deg, var(--orange), var(--red));
  border-color: var(--orange); color: var(--black); font-weight: 700;
}
.btn-orange:hover:not(:disabled) { transform: translateY(-1px); box-shadow: 0 6px 20px var(--orange-glow); }
.btn-outline { background: transparent; border-color: var(--border2); color: var(--white); }
.btn-outline:hover { background: var(--orange-dim); border-color: var(--orange); color: var(--orange); }
.btn-ghost { background: transparent; border-color: var(--muted2); color: var(--muted); }
.btn-ghost:hover { color: var(--white); border-color: var(--white); }
.btn-danger { background: rgba(255,68,85,0.1); border-color: rgba(255,68,85,0.4); color: var(--danger); }
.btn-danger:hover { background: rgba(255,68,85,0.2); }
.btn-success { background: rgba(0,201,122,0.1); border-color: rgba(0,201,122,0.4); color: var(--success); }
.btn-success:hover { background: rgba(0,201,122,0.2); }
.btn-full { width: 100%; }

/* ─── CARDS ─── */
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden; transition: all 0.3s;
}
.card:hover { border-color: var(--border2); box-shadow: 0 0 30px rgba(255,106,0,0.12); }
.card-body { padding: 20px 24px; }
.card-header {
  padding: 16px 24px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.card-title { font-family: 'Orbitron'; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.5px; }

/* ─── CAR CARDS ─── */
.cars-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 22px; }
.car-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  transition: all 0.3s; cursor: pointer;
}
.car-card:hover {
  border-color: var(--orange);
  box-shadow: 0 0 40px rgba(255,106,0,0.2);
  transform: translateY(-5px);
}
.car-card-img {
  position: relative; height: 200px; overflow: hidden;
  background: var(--g3); display: flex; align-items: center; justify-content: center;
}
.car-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.car-card:hover .car-card-img img { transform: scale(1.05); }
.car-img-placeholder { font-size: 4rem; opacity: 0.3; }
.car-card-status {
  position: absolute; top: 10px; right: 10px;
  padding: 3px 10px; border-radius: 100px;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  font-family: 'Orbitron';
}
.car-card-body { padding: 16px 18px; }
.car-brand-label { font-size: 10px; color: var(--orange); letter-spacing: 2px; text-transform: uppercase; font-weight: 700; margin-bottom: 4px; }
.car-name { font-family: 'Orbitron'; font-size: 0.95rem; font-weight: 700; margin-bottom: 10px; }
.car-year { color: var(--muted); font-weight: 400; }
.car-specs-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.car-specs-row span { font-size: 11px; color: var(--muted); background: var(--card2); padding: 3px 8px; border-radius: 4px; }
.car-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.06); }
.car-price { font-family: 'Orbitron'; font-size: 0.9rem; color: var(--orange); font-weight: 700; }

/* ─── BADGES ─── */
.badge {
  display: inline-block; padding: 3px 10px; border-radius: 100px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.badge-green  { background: rgba(0,201,122,0.15); color: var(--success); border: 1px solid rgba(0,201,122,0.3); }
.badge-red    { background: rgba(255,68,85,0.15);  color: var(--danger);  border: 1px solid rgba(255,68,85,0.3); }
.badge-yellow { background: rgba(255,184,0,0.15);  color: var(--warning); border: 1px solid rgba(255,184,0,0.3); }
.badge-blue   { background: rgba(77,159,255,0.15); color: var(--info);    border: 1px solid rgba(77,159,255,0.3); }
.badge-gray   { background: var(--card2); color: var(--muted); border: 1px solid var(--muted2); }
.badge-orange { background: var(--orange-dim); color: var(--orange); border: 1px solid var(--border2); }

/* ─── STATS ─── */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
.stat-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 18px 20px; position: relative;
}
.stat-label { font-size: 11px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.stat-number { font-family: 'Orbitron'; font-size: 1.7rem; font-weight: 900; color: var(--orange); }
.stat-icon { position: absolute; top: 14px; right: 14px; font-size: 1.4rem; opacity: 0.25; }
.stat-delta { font-size: 11px; color: var(--muted); margin-top: 4px; }

/* ─── TABLES ─── */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; min-width: 600px; }
thead th {
  padding: 12px 16px; text-align: left; font-size: 11px;
  color: var(--orange); letter-spacing: 1.5px; text-transform: uppercase;
  font-family: 'Orbitron'; border-bottom: 1px solid var(--border); font-weight: 600; white-space: nowrap;
  background: var(--g2);
}
tbody td { padding: 13px 16px; font-size: 13px; border-bottom: 1px solid rgba(255,255,255,0.04); }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: var(--orange-dim); }
.td-primary { font-weight: 600; }
.td-muted { color: var(--muted); font-size: 12px; }

/* ─── FORMS ─── */
.form-group { margin-bottom: 16px; }
.form-label {
  display: block; font-size: 11px; color: var(--orange);
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px;
  font-family: 'Orbitron'; font-weight: 600;
}
.form-input, .form-select, .form-textarea {
  width: 100%; background: var(--g3); border: 1px solid var(--border);
  color: var(--white); padding: 11px 14px; border-radius: 8px;
  font-size: 14px; font-family: 'Syne'; transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,106,0,0.12);
}
.form-input::placeholder { color: var(--muted); }
.form-select option { background: var(--g2); }
.form-textarea { resize: vertical; min-height: 90px; line-height: 1.5; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-error { background: rgba(255,68,85,0.1); border: 1px solid rgba(255,68,85,0.3); color: var(--danger); padding: 10px 14px; border-radius: 8px; font-size: 13px; margin-bottom: 14px; }
.form-success { background: rgba(0,201,122,0.1); border: 1px solid rgba(0,201,122,0.3); color: var(--success); padding: 10px 14px; border-radius: 8px; font-size: 13px; margin-bottom: 14px; }

/* ─── MODAL ─── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px); z-index: 3000;
  display: none; align-items: center; justify-content: center; padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--g2); border: 1px solid var(--border2);
  border-radius: 16px; width: 100%; max-width: 560px; max-height: 90vh;
  overflow-y: auto; padding: 32px; position: relative;
}
.modal-lg { max-width: 860px; }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  background: var(--card2); border: none; color: var(--white);
  width: 32px; height: 32px; border-radius: 50%;
  cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.modal-close:hover { background: rgba(255,68,85,0.3); }
.modal-title { font-family: 'Orbitron'; font-size: 1.1rem; font-weight: 700; margin-bottom: 22px; }

/* ─── TOAST ─── */
.sz-toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  background: var(--g2); border: 1px solid var(--border2);
  border-radius: 10px; padding: 13px 18px;
  transform: translateY(80px); opacity: 0;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; max-width: 380px; min-width: 260px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.sz-toast.show { transform: translateY(0); opacity: 1; }
.sz-toast.sz-toast-success { border-color: rgba(0,201,122,0.4); }
.sz-toast.sz-toast-error   { border-color: rgba(255,68,85,0.4); }
.sz-toast.sz-toast-info    { border-color: rgba(77,159,255,0.4); }

/* ─── SEARCH BAR ─── */
.search-bar {
  background: rgba(255,255,255,0.04); backdrop-filter: blur(20px);
  border: 1px solid var(--border2); border-radius: 14px;
  padding: 22px 24px;
  box-shadow: 0 0 60px rgba(255,106,0,0.08);
}
.search-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr auto; gap: 12px; align-items: end; }
@media (max-width: 1000px) { .search-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .search-grid { grid-template-columns: 1fr; } }
.search-field label { font-size: 10px; color: var(--orange); letter-spacing: 2px; text-transform: uppercase; font-family: 'Orbitron'; font-weight: 700; display: block; margin-bottom: 6px; }
.search-input-field, .search-select-field {
  width: 100%; background: rgba(0,0,0,0.6); border: 1px solid var(--border);
  color: var(--white); padding: 10px 14px; border-radius: 8px;
  font-size: 14px; font-family: 'Syne'; transition: border-color 0.2s;
}
.search-input-field:focus, .search-select-field:focus { outline: none; border-color: var(--orange); }
.search-select-field option { background: #111; }
.btn-search {
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: var(--black); font-family: 'Orbitron'; font-weight: 900;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 11px 22px; border-radius: 8px; border: none; cursor: pointer;
  transition: all 0.2s; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(255,106,0,0.3);
}
.btn-search:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,106,0,0.5); }

/* ─── PROGRESS ─── */
.progress-bg { background: var(--g4); border-radius: 100px; height: 5px; }
.progress-bar { background: linear-gradient(90deg, var(--orange), var(--red)); border-radius: 100px; height: 5px; transition: width 0.6s ease; }

/* ─── TABS ─── */
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--border); margin-bottom: 22px; overflow-x: auto; }
.tab-btn {
  padding: 9px 18px; background: transparent; border: none;
  border-bottom: 2px solid transparent; color: var(--muted);
  cursor: pointer; font-size: 13px; font-weight: 600;
  transition: all 0.2s; white-space: nowrap; font-family: 'Syne';
}
.tab-btn:hover { color: var(--white); }
.tab-btn.active { color: var(--orange); border-bottom-color: var(--orange); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ─── DASHBOARD LAYOUT ─── */
.dash-layout { display: flex; min-height: calc(100vh - 68px); }
.dash-sidebar {
  width: 240px; flex-shrink: 0;
  background: var(--g1); border-right: 1px solid var(--border);
  padding: 24px 12px; position: sticky; top: 68px;
  height: calc(100vh - 68px); overflow-y: auto;
}
.dash-sidebar-label { font-size: 10px; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; font-family: 'Orbitron'; padding: 0 10px; margin: 12px 0 6px; }
.dash-nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px; cursor: pointer;
  font-size: 13px; color: var(--muted); font-weight: 600;
  transition: all 0.18s; margin-bottom: 2px;
}
.dash-nav-item:hover { background: var(--card2); color: var(--white); }
.dash-nav-item.active { background: var(--orange-dim); color: var(--orange); border: 1px solid var(--border); }
.dash-nav-icon { font-size: 15px; width: 20px; text-align: center; }
.dash-main { flex: 1; padding: 2rem clamp(1rem,3vw,2.5rem); overflow-y: auto; }
@media (max-width: 800px) {
  .dash-sidebar { display: none; }
  .dash-sidebar.open { display: block; position: fixed; left: 0; top: 68px; z-index: 800; height: calc(100vh-68px); }
}

/* ─── COUNTDOWN ─── */
.countdown-row { display: flex; gap: 8px; align-items: center; }
.countdown-box { background: var(--card2); border: 1px solid var(--border); border-radius: 6px; padding: 4px 10px; text-align: center; }
.countdown-val { font-family: 'Orbitron'; font-size: 1rem; color: var(--orange); font-weight: 700; }
.countdown-label { font-size: 9px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }

/* ─── FOOTER ─── */
footer {
  background: var(--g1); border-top: 1px solid var(--border);
  padding: 4rem clamp(1rem,4vw,2.5rem) 2rem;
  margin-top: auto;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; max-width: 1320px; margin: 0 auto; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand-text { color: var(--muted); font-size: 13px; line-height: 1.7; margin-top: 10px; max-width: 260px; }
.footer-title { font-family: 'Orbitron'; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: var(--muted); transition: color 0.2s; cursor: pointer; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; margin-top: 3rem; max-width: 1320px; margin-left: auto; margin-right: auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 12px; color: var(--muted); }

/* ─── EMPTY STATE ─── */
.empty-state { text-align: center; padding: 60px 20px; }
.empty-icon { font-size: 3rem; opacity: 0.2; display: block; margin-bottom: 12px; }
.empty-text { color: var(--muted); font-size: 14px; }

/* ─── LOADING ─── */
.loading-screen {
  position: fixed; inset: 0; background: var(--black); z-index: 9999;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 20px; transition: opacity 0.5s;
}
.loading-spinner { width: 60px; height: 60px; border-radius: 50%; border: 3px solid var(--g3); border-top-color: var(--orange); border-right-color: var(--orange); animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.loading-text { font-family: 'Orbitron'; font-size: 12px; color: var(--orange); letter-spacing: 4px; }

/* ─── UTILITY ─── */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: 8px; }
.gap-md { gap: 16px; }
.gap-lg { gap: 24px; }
.mt-sm { margin-top: 8px; }
.mt-md { margin-top: 16px; }
.mt-lg { margin-top: 24px; }
.text-muted { color: var(--muted); }
.text-orange { color: var(--orange); }
.text-sm { font-size: 12px; }
.text-xs { font-size: 11px; }
.font-orb { font-family: 'Orbitron'; }
.divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RANGE SLIDER ─── */
input[type="range"] { accent-color: var(--orange); width: 100%; cursor: pointer; }

/* ─── FEATURE CARDS ─── */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.feature-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 28px 22px;
  text-align: center; transition: all 0.3s;
}
.feature-card:hover { border-color: var(--orange); box-shadow: 0 0 30px rgba(255,106,0,0.12); transform: translateY(-4px); }
.feature-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.feature-title { font-family: 'Orbitron'; font-size: 0.85rem; color: var(--orange); margin-bottom: 8px; }
.feature-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ─── PAGE HEADER ─── */
.page-hero {
  background: linear-gradient(135deg, var(--g1) 0%, var(--g2) 100%);
  border-bottom: 1px solid var(--border);
  padding: 3rem clamp(1rem,4vw,2.5rem) 2.5rem;
}
.page-hero-inner { max-width: 1320px; margin: 0 auto; }
.page-hero-badge { font-size: 10px; color: var(--orange); letter-spacing: 3px; text-transform: uppercase; font-family: 'Orbitron'; margin-bottom: 10px; }
.page-hero-title { font-size: clamp(1.8rem,4vw,3rem); margin-bottom: 0.5rem; }
.page-hero-sub { color: var(--muted); font-size: 14px; }
