/* ============================================================
   MotoTracce.it — Main Stylesheet
   ============================================================ */

:root {
  --primary:        #e8420a;
  --primary-light:  #ff6b35;
  --primary-dark:   #c43208;
  --accent:         #ff7b00;
  --dark:           #1a1a2e;
  --dark-2:         #16213e;
  --dark-3:         #0f3460;
  --light:          #f8f9fa;
  --text:           #2d2d2d;
  --text-muted:     #6c757d;
  --border:         #dee2e6;
  --success:        #28a745;
  --warning:        #ffc107;
  --danger:         #dc3545;
  --card-shadow:    0 4px 20px rgba(0,0,0,0.08);
  --card-hover:     0 8px 32px rgba(232,66,10,0.15);
  --radius:         12px;
  --radius-sm:      8px;
  --transition:     all 0.25s ease;
}

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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: #f4f5f7;
  line-height: 1.6;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar-main {
  background: var(--dark);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.navbar-main .navbar-brand img { height: 42px; }

.navbar-main .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.navbar-main .nav-link:hover,
.navbar-main .nav-link.active {
  color: var(--accent) !important;
  background: rgba(255,255,255,0.06);
}

.navbar-main .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.navbar-main .nav-link:hover::after,
.navbar-main .nav-link.active::after { width: 60%; }

.btn-nav-login {
  background: transparent;
  border: 1.5px solid var(--primary-light);
  color: var(--primary-light) !important;
  padding: 0.4rem 1.2rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  transition: var(--transition) !important;
}

.btn-nav-login:hover {
  background: var(--primary-light) !important;
  color: white !important;
}

.btn-nav-register {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: none;
  color: white !important;
  padding: 0.4rem 1.2rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  transition: var(--transition) !important;
  box-shadow: 0 3px 12px rgba(232,66,10,0.35);
}

.btn-nav-register:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(232,66,10,0.45);
}

.user-avatar {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  background: var(--dark);
  background-image: url('/assets/img/hero-bg.svg');
  background-size: cover;
  background-position: center;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(26,26,46,0.75) 0%,
    rgba(232,66,10,0.15) 100%);
}

.hero-section .container { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(232,66,10,0.2);
  border: 1px solid rgba(232,66,10,0.4);
  color: var(--accent);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: white;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.hero-title span {
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
}

.hero-stat { text-align: center; }

.hero-stat .number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  display: block;
  line-height: 1;
}

.hero-stat .label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-map-preview {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  overflow: hidden;
  position: relative;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary-mt {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border: none;
  padding: 0.65rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(232,66,10,0.35);
  text-decoration: none;
}

.btn-primary-mt:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(232,66,10,0.45);
  color: white;
}

.btn-outline-mt {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.6rem 1.7rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-outline-mt:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.btn-dark-mt {
  background: var(--dark);
  color: white;
  border: none;
  padding: 0.65rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-dark-mt:hover {
  background: var(--dark-3);
  color: white;
  transform: translateY(-2px);
}

/* ============================================================
   FILTER BAR
   ============================================================ */
.filter-bar {
  background: white;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--card-shadow);
  margin-bottom: 2rem;
  border: 1px solid var(--border);
}

.filter-bar .form-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.filter-bar .form-select,
.filter-bar .form-control {
  border-radius: var(--radius-sm);
  border-color: var(--border);
  font-size: 0.9rem;
  transition: var(--transition);
}

.filter-bar .form-select:focus,
.filter-bar .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232,66,10,0.12);
}

/* ============================================================
   TRACK CARDS
   ============================================================ */
.track-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.track-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-hover);
  border-color: rgba(232,66,10,0.2);
}

.track-card-img {
  height: 180px;
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}

.track-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.track-card:hover .track-card-img img { transform: scale(1.05); }

.track-type-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.badge-offroad  { background: #8B4513; color: white; }
.badge-stradale { background: var(--dark-3); color: white; }
.badge-misto    { background: #2d6a4f; color: white; }

.track-download-quick {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  color: var(--primary);
  font-size: 0.9rem;
}

.track-download-quick:hover {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

.track-card-body {
  padding: 1.1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.track-card-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.track-card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.track-card-meta span { display: flex; align-items: center; gap: 0.25rem; }

.track-stars {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.star { color: #ddd; font-size: 1rem; cursor: pointer; transition: color 0.15s; }
.star.filled { color: var(--warning); }
.star:hover { color: var(--warning); }

.vote-count {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-left: auto;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  margin-bottom: 2rem;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.section-label::before,
.section-label::after {
  content: '';
  flex: 1;
  max-width: 40px;
  height: 2px;
  background: linear-gradient(to right, var(--primary), transparent);
}

.section-label::before { transform: scaleX(-1); }

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.2;
}

/* ============================================================
   BANNER ADS
   ============================================================ */
.ad-banner-top {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-align: center;
  padding: 0.5rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.ad-banner-top img { max-width: 100%; height: auto; }

.ad-label {
  font-size: 0.65rem;
  color: #bbb;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.25rem;
}

.ad-sidebar {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.ad-sidebar img { max-width: 100%; height: auto; }

.ad-discount {
  background: linear-gradient(135deg, var(--dark), var(--dark-3));
  color: white;
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--accent);
}

.ad-discount .discount-brand { font-weight: 700; color: var(--accent); font-size: 0.9rem; }
.ad-discount .discount-text  { font-size: 0.82rem; color: rgba(255,255,255,0.8); margin: 0.25rem 0; }
.ad-discount .discount-code  {
  background: rgba(255,255,255,0.1);
  border: 1px dashed rgba(255,255,255,0.3);
  border-radius: 6px;
  padding: 0.3rem 0.7rem;
  font-family: monospace;
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 700;
  display: inline-block;
  margin-top: 0.3rem;
}

/* ============================================================
   AUTH PAGES
   ============================================================ */
.auth-wrapper {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.auth-card {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.auth-logo { text-align: center; margin-bottom: 1.5rem; }
.auth-logo img { height: 50px; }

.auth-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  margin-bottom: 0.25rem;
}

.auth-subtitle { text-align: center; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.75rem; }

.form-floating > label { font-size: 0.88rem; color: var(--text-muted); }

.form-floating > .form-control,
.form-floating > .form-select {
  border-radius: var(--radius-sm);
  border-color: var(--border);
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232,66,10,0.12);
}

.auth-divider {
  text-align: center;
  position: relative;
  margin: 1.25rem 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.auth-divider::before, .auth-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 42%;
  height: 1px;
  background: var(--border);
}

.auth-divider::before { left: 0; }
.auth-divider::after  { right: 0; }

/* ============================================================
   DASHBOARD
   ============================================================ */
.dashboard-sidebar {
  background: var(--dark);
  min-height: calc(100vh - 70px);
  padding: 1.5rem 0;
}

.sidebar-nav .nav-link {
  color: rgba(255,255,255,0.7);
  padding: 0.65rem 1.5rem;
  border-radius: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  border-left: 3px solid transparent;
}

.sidebar-nav .nav-link:hover,
.sidebar-nav .nav-link.active {
  color: white;
  background: rgba(255,255,255,0.06);
  border-left-color: var(--accent);
}

.sidebar-nav .nav-link .nav-icon { width: 18px; text-align: center; }

.sidebar-section-title {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  padding: 1rem 1.5rem 0.4rem;
  font-weight: 600;
}

.dashboard-content { padding: 2rem; }

.stat-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.3rem;
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}

.stat-card:hover { transform: translateY(-3px); box-shadow: var(--card-hover); }

.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.stat-icon.orange  { background: rgba(232,66,10,0.12);  color: var(--primary); }
.stat-icon.blue    { background: rgba(13,110,253,0.12); color: #0d6efd; }
.stat-icon.green   { background: rgba(40,167,69,0.12);  color: var(--success); }
.stat-icon.yellow  { background: rgba(255,193,7,0.12);  color: var(--warning); }

.stat-number { font-size: 1.8rem; font-weight: 900; color: var(--dark); line-height: 1; }
.stat-label  { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.15rem; }

/* ============================================================
   ADMIN
   ============================================================ */
.admin-topbar {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-badge { background: var(--dark); color: var(--accent); }

.table-mt thead th {
  background: var(--dark);
  color: white;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.75rem 1rem;
  border: none;
  font-weight: 600;
}

.table-mt tbody td {
  vertical-align: middle;
  padding: 0.7rem 1rem;
  border-color: var(--border);
  font-size: 0.88rem;
}

.table-mt tbody tr:hover { background: rgba(232,66,10,0.03); }

.status-badge {
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.status-pending  { background: rgba(255,193,7,0.15);  color: #856404; }
.status-approved { background: rgba(40,167,69,0.15);  color: #155724; }
.status-rejected { background: rgba(220,53,69,0.15);  color: #721c24; }

/* ============================================================
   TRACK DETAIL
   ============================================================ */
.track-detail-hero {
  background: var(--dark);
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

.track-detail-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #f4f5f7);
}

#map { height: 450px; border-radius: var(--radius); overflow: hidden; z-index: 1; }

.track-info-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  margin-bottom: 1.25rem;
}

.track-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}

.track-info-row:last-child { border-bottom: none; }
.track-info-row .info-label { color: var(--text-muted); font-weight: 500; }
.track-info-row .info-value { font-weight: 700; color: var(--dark); }

.download-btn-hero {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: 0 4px 15px rgba(232,66,10,0.35);
  text-decoration: none;
}

.download-btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(232,66,10,0.45);
  color: white;
}

/* ============================================================
   SPONSOR PAGE
   ============================================================ */
.sponsor-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
  padding: 80px 0;
  color: white;
  text-align: center;
}

.pricing-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--card-shadow);
  border: 2px solid var(--border);
  transition: var(--transition);
  height: 100%;
}

.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.03);
  box-shadow: var(--card-hover);
}

.pricing-card:hover { transform: scale(1.03); box-shadow: var(--card-hover); }
.pricing-card.featured:hover { transform: scale(1.05); }

.pricing-badge {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}

.pricing-price sup { font-size: 1.2rem; font-weight: 700; vertical-align: super; }
.pricing-period { font-size: 0.85rem; color: var(--text-muted); }

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
}

.pricing-feature:last-child { border-bottom: none; }
.pricing-feature .check { color: var(--success); font-weight: 700; }
.pricing-feature .cross  { color: #ccc; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-main {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 1.5rem;
  margin-top: 4rem;
}

.footer-brand img { height: 40px; margin-bottom: 0.75rem; }

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
  line-height: 1.7;
}

.footer-heading {
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 0.4rem; }

.footer-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--accent); padding-left: 4px; }

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.9rem;
}

.social-btn:hover { background: var(--primary); color: white; transform: translateY(-3px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.25rem;
  margin-top: 2.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--accent); }

/* ============================================================
   UTILS & RESPONSIVE
   ============================================================ */
.page-header {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
  margin-bottom: 2rem;
}

.page-header h1 { font-weight: 800; font-size: 1.7rem; color: var(--dark); margin: 0; }
.breadcrumb { margin: 0; font-size: 0.82rem; }
.breadcrumb-item.active { color: var(--text-muted); }
.breadcrumb-item a { color: var(--primary); text-decoration: none; }

.alert-mt {
  border-radius: var(--radius-sm);
  border: none;
  padding: 0.85rem 1.25rem;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.upload-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  background: #fafbfc;
  cursor: pointer;
  transition: var(--transition);
}

.upload-zone:hover, .upload-zone.dragover {
  border-color: var(--primary);
  background: rgba(232,66,10,0.03);
}

.upload-zone .upload-icon { font-size: 2.5rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.upload-zone p { color: var(--text-muted); font-size: 0.88rem; margin: 0; }
.upload-zone strong { color: var(--primary); }

.pagination .page-link {
  color: var(--primary);
  border-radius: var(--radius-sm) !important;
  margin: 0 2px;
  border-color: var(--border);
}

.pagination .page-link:hover { background: var(--primary); color: white; border-color: var(--primary); }
.pagination .page-item.active .page-link { background: var(--primary); border-color: var(--primary); }

/* Toasts */
.toast-container-mt {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
}

@media (max-width: 768px) {
  .hero-section { padding: 60px 0 50px; }
  .hero-stats { gap: 1.2rem; }
  .hero-stat .number { font-size: 1.5rem; }
  .dashboard-sidebar { min-height: auto; }
  .pricing-card.featured { transform: scale(1); }
  .footer-bottom { text-align: center; justify-content: center; }
  .auth-card { padding: 1.75rem; }
}
