/* ============================================================
   Rising 25 — Main Stylesheet
   Aesthetic: Dark industrial with molten orange-gold energy
   Fonts: Bebas Neue (display) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat&family=Montserrat:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

:root {
  --orange:     #FF6B00;
  --gold:       #FFC107;
  --amber:      #FF8C00;
  --bg:         #080810;
  --bg2:        #0f0f1e;
  --bg3:        #16162a;
  --card:       #111124;
  --border:     rgba(255, 108, 0, 0.18);
  --border2:    rgba(255,255,255,0.06);
  --text:       #F0EDE8;
  --muted:      #8a8a9e;
  --success:    #22c55e;
  --danger:     #ef4444;
  --info:       #3b82f6;
  --radius:     14px;
  --radius-sm:  8px;
  --shadow:     0 8px 40px rgba(0,0,0,0.6);
  --glow:       0 0 40px rgba(255,108,0,0.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ---- Background texture ---- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(255,108,0,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(255,193,7,0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,8,16,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border2);
  padding: 0 clamp(16px, 4vw, 48px);
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}

.navbar-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 1px;
  color: var(--text);
}
 .logo-text span { color: var(--orange); }

.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 14px; font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }

.btn-nav {
  background: var(--orange);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: background .2s, transform .15s !important;
}
.btn-nav:hover { background: #e05a00 !important; transform: translateY(-1px); }

/* ============================================================
   HERO / BANNER
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(15px, 8vw, 15px) clamp(16px, 6vw, 15px);
  text-align: center;
  z-index: 1;
 
}


.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /*background: url('https://startupjharkhand.org/assets/img/bg/EC3.0 Slider.jpg') center/cover no-repeat;*/
  opacity: 0.3; /* adjust: 0.2 = lighter, 0.5 = darker */
  z-index: 0;
}

/* Keep content above */
.hero > * {
  position: relative;
  z-index: 1;
}





.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,108,0,0.12);
  border: 1px solid rgba(255,108,0,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px; font-weight: 600;
  color: var(--orange);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge .dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; animation: pulse 2s infinite; }

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 10vw, 130px);
  line-height: 0.92;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.hero-title .accent { color: var(--orange); }
.hero-title .outline {
  -webkit-text-stroke: 2px var(--text);
  color: transparent;
}

.hero-sub {
  font-size: clamp(16px, 2.5vw, 22px);
  color: var(--muted);
  max-width: 600px;
  margin: 16px auto 36px;
  font-weight: 300;
  letter-spacing: 0.3px;
}

.hero-meta {
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-meta .meta-item {
  display: flex; flex-direction: column; align-items: center;
}
.hero-meta .meta-item .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px; color: White; line-height: 1;
}
.hero-meta .meta-item .lbl { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

.hero-cta-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Countdown */
.countdown-bar {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 32px;
  display: inline-flex; align-items: center; gap: 24px;
  margin: 40px auto 0;
  flex-wrap: wrap; justify-content: center;
}
.countdown-bar .cd-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.countdown-bar .cd-units { display: flex; gap: 16px; }
.countdown-bar .cd-unit { text-align: center; }
.countdown-bar .cd-unit .num {
  font-family: 'Space Mono', monospace;
  font-size: 28px; color: var(--text); line-height: 1;
}
.countdown-bar .cd-unit .lbl { font-size: 10px; color: var(--muted); }
.countdown-sep { font-size: 24px; color: var(--orange); line-height: 1; align-self: flex-start; margin-top: 4px; }

/* ============================================================
   RIBBON / CTA SECTION
   ============================================================ */
.nomination-ribbon {
  background: linear-gradient(135deg, rgba(255,108,0,0.15) 0%, rgba(255,193,7,0.08) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px clamp(16px, 6vw, 80px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.ribbon-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--text);
  letter-spacing: 1px;
}
.ribbon-text p { color: var(--muted); font-size: 15px; margin-top: 6px; }
.ribbon-deadline {
  display: flex; align-items: center; gap: 10px;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px; color: #ef4444; font-weight: 600;
}
.ribbon-deadline .icon { font-size: 16px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 24px rgba(255,108,0,0.35);
}
.btn-primary:hover { background: #e05a00; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,108,0,0.45); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border2);
}
.btn-outline:hover { border-color: rgba(255,108,0,0.4); color: var(--orange); }

.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); }

.btn-sm { padding: 9px 20px; font-size: 13px; }
.btn-lg { padding: 18px 44px; font-size: 17px; }
.btn-block { width: 100%; justify-content: center; }
.btn-danger { background: var(--danger); color: #fff; }
.btn-success { background: var(--success); color: #fff; }

.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ============================================================
   CARDS (Startup nominee cards)
   ============================================================ */
.section {
  padding: clamp(40px, 6vw, 80px) clamp(16px, 5vw, 64px);
  position: relative; z-index: 1;
}
.section-header {
  text-align: center; margin-bottom: 50px;
}
.section-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: 1px;
}
.section-header h2 span { color: var(--orange); }
.section-header p { color: var(--muted); font-size: 16px; margin-top: 10px; }

.nominees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1300px; margin: 0 auto;
}

.nominee-card {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  cursor: default;
  position: relative; overflow: hidden;
}
.nominee-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  opacity: 0;
  transition: opacity .25s;
}
.nominee-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--glow);
}
.nominee-card:hover::before { opacity: 1; }

.card-top { display: flex; align-items: flex-start; gap: 16px; }
.card-logo {
  width: 60px; height: 60px; border-radius: 12px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; color: var(--orange);
  flex-shrink: 0; overflow: hidden;
}
.card-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }

.card-info h3 { font-size: 17px; font-weight: 700; line-height: 1.3; }
.card-info .founder { color: var(--muted); font-size: 13px; margin-top: 3px; }

.card-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border2);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px; color: var(--muted);
  font-weight: 500;
}
.tag.orange { background: rgba(255,108,0,0.1); border-color: rgba(255,108,0,0.25); color: var(--orange); }

.card-tagline { font-size: 13px; color: var(--muted); flex: 1; }

.card-footer {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border2);
  padding-top: 16px;
  margin-top: auto;
}
.vote-count {
  display: flex; align-items: center; gap: 6px;
  font-family: 'Space Mono', monospace;
  font-size: 14px; color: var(--text);
}
.vote-count .icon { color: var(--orange); font-size: 16px; }
.vote-count .label { font-size: 11px; color: var(--muted); font-family: 'DM Sans', sans-serif; margin-left: 2px; }

/* ============================================================
   VOTE MODAL
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }

.modal {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  width: 100%; max-width: 480px;
  padding: 40px;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform .3s;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.active .modal { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; color: var(--muted);
  font-size: 22px; cursor: pointer; line-height: 1;
  transition: color .2s;
}
.modal-close:hover { color: var(--text); }

.modal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px; letter-spacing: 1px; margin-bottom: 6px;
}
.modal-subtitle { font-size: 14px; color: var(--muted); margin-bottom: 28px; }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 13px; font-weight: 600;
  color: var(--muted); margin-bottom: 7px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.form-control {
  width: 100%;
  background: var(--bg3);
  border: 1.5px solid var(--border2);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus {
  border-color: rgba(255,108,0,0.5);
  box-shadow: 0 0 0 3px rgba(255,108,0,0.1);
}
.form-control::placeholder { color: var(--muted); }
textarea.form-control { resize: vertical; min-height: 100px; }
select.form-control { cursor: pointer; }

.otp-input-group { display: flex; gap: 8px; }
.otp-input-group input { text-align: center; letter-spacing: 8px; font-family: 'Space Mono', monospace; font-size: 22px; }
.otp-timer { font-size: 12px; color: var(--muted); margin-top: 6px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-hint { font-size: 12px; color: var(--muted); margin-top: 5px; }

/* ============================================================
   ALERTS / FLASH
   ============================================================ */
.alert {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  display: flex; align-items: flex-start; gap: 10px;
}
.alert-success { background: rgba(34,197,94,0.1); border-color: rgba(34,197,94,0.3); color: #86efac; }
.alert-danger  { background: rgba(239,68,68,0.1);  border-color: rgba(239,68,68,0.3);  color: #fca5a5; }
.alert-info    { background: rgba(59,130,246,0.1); border-color: rgba(59,130,246,0.3); color: #93c5fd; }
.alert-warning { background: rgba(251,146,60,0.1); border-color: rgba(251,146,60,0.3); color: #fdba74; }

/* ============================================================
   NOMINEE STATUS BADGES
   ============================================================ */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px; font-weight: 600;
  text-transform: capitalize;
}
.badge-pending  { background: rgba(251,146,60,0.15); color: #fb923c; border: 1px solid rgba(251,146,60,0.3); }
.badge-approved { background: rgba(34,197,94,0.15);  color: #4ade80; border: 1px solid rgba(34,197,94,0.3);  }
.badge-rejected { background: rgba(239,68,68,0.15);  color: #f87171; border: 1px solid rgba(239,68,68,0.3);  }

/* ============================================================
   NOMINEE DASHBOARD
   ============================================================ */
.dashboard-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: calc(100vh - 68px);
}

.sidebar {
  background: var(--bg2);
  border-right: 1px solid var(--border2);
  padding: 32px 0;
  position: sticky; top: 68px; height: calc(100vh - 68px); overflow-y: auto;
}
.sidebar-nav { list-style: none; }
.sidebar-nav li a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 28px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px; font-weight: 500;
  transition: all .2s;
  border-left: 3px solid transparent;
}
.sidebar-nav li a:hover { color: var(--text); background: rgba(255,255,255,0.03); }
.sidebar-nav li a.active { color: var(--orange); border-left-color: var(--orange); background: rgba(255,108,0,0.06); }
.sidebar-nav li a .icon { font-size: 18px; }

.dashboard-content { padding: clamp(24px, 4vw, 48px); }

.stat-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 20px; margin-bottom: 36px; }
.stat-card {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 24px;
}
.stat-card .stat-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px; color: var(--orange); line-height: 1;
}
.stat-card .stat-label { font-size: 13px; color: var(--muted); margin-top: 6px; }

/* ============================================================
   ADMIN PANEL
   ============================================================ */
.admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}
.admin-sidebar {
  background: #09090f;
  border-right: 1px solid var(--border2);
  padding: 0;
  position: sticky; top: 0; height: 100vh; overflow-y: auto;
}
.admin-brand {
  padding: 24px 28px;
  border-bottom: 1px solid var(--border2);
  display: flex; flex-direction: column;
}
.admin-brand .admin-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; color: var(--orange); letter-spacing: 1px;
}
.admin-brand .admin-sub { font-size: 11px; color: var(--muted); margin-top: 2px; }

.admin-nav { list-style: none; padding: 16px 0; }
.admin-nav li a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 28px;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px; font-weight: 500;
  transition: all .2s;
  border-left: 3px solid transparent;
}
.admin-nav li a:hover { color: var(--text); background: rgba(255,255,255,0.03); }
.admin-nav li a.active { color: var(--orange); border-left-color: var(--orange); background: rgba(255,108,0,0.05); }
.admin-nav .nav-section-label {
  padding: 16px 28px 6px;
  font-size: 10px;
  color: #444;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.admin-main { padding: clamp(24px, 3vw, 40px); overflow-x: auto; }
.admin-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; flex-wrap: wrap; gap: 16px; }
.admin-header h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 44px); letter-spacing: 1px;
}

/* Table */
.data-table-wrap { overflow-x: auto; }
.data-table {
  width: 100%; border-collapse: collapse;
  font-size: 14px;
}
.data-table th {
  background: var(--bg3);
  padding: 12px 16px;
  text-align: left;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.8px;
  color: var(--muted);
  white-space: nowrap;
}
.data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border2);
  vertical-align: middle;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(255,255,255,0.02); }

.table-startup-info { display: flex; align-items: center; gap: 12px; }
.mini-logo {
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--bg3); border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 16px; color: var(--orange);
  flex-shrink: 0; overflow: hidden;
}
.mini-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }

.action-btns { display: flex; gap: 8px; flex-wrap: wrap; }

/* ============================================================
   LEADERBOARD  (Voting section)
   ============================================================ */
.leaderboard-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.rank-indicator {
  position: absolute; top: 12px; right: 12px;
  width: 28px; height: 28px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Mono', monospace;
  font-size: 11px; color: var(--muted);
}
.rank-indicator.top3 { background: rgba(255,193,7,0.15); border-color: rgba(255,193,7,0.4); color: var(--gold); }

/* ============================================================
   SEARCH & FILTER BAR
   ============================================================ */
.filter-bar {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 36px;
  max-width: 1300px; margin-left: auto; margin-right: auto;
}
.filter-bar .search-input {
  flex: 1; min-width: 200px;
  background: var(--card);
  border: 1.5px solid var(--border2);
  border-radius: var(--radius-sm);
  padding: 11px 16px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; outline: none;
  transition: border-color .2s;
}
.filter-bar .search-input:focus { border-color: rgba(255,108,0,0.4); }
.filter-bar select {
  background: var(--card);
  border: 1.5px solid var(--border2);
  border-radius: var(--radius-sm);
  padding: 11px 16px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; outline: none; cursor: pointer;
}

/* ============================================================
   MISC
   ============================================================ */
.divider { border: none; border-top: 1px solid var(--border2); margin: 32px 0; }

.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.text-orange { color: var(--orange); }

.loader {
  width: 24px; height: 24px;
  border: 3px solid rgba(255,108,0,0.2);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: inline-block;
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:.4; } }
@keyframes fadeInUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }

.fade-in { animation: fadeInUp .5s ease both; }
.fade-in-delay-1 { animation-delay: .1s; }
.fade-in-delay-2 { animation-delay: .2s; }
.fade-in-delay-3 { animation-delay: .3s; }

.container { max-width: 1300px; margin: 0 auto; }
.container-sm { max-width: 600px; margin: 0 auto; }
.container-md { max-width: 900px; margin: 0 auto; }

.page-wrapper { min-height: calc(100vh - 68px); padding: 60px clamp(16px, 5vw, 64px); position: relative; z-index: 1; }

/* Form page card */
.form-card {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: clamp(28px, 5vw, 52px);
  max-width: 680px;
  margin: 0 auto;
}
.form-card .form-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 52px);
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.form-card .form-subtitle { color: var(--muted); font-size: 15px; margin-bottom: 36px; }

.form-section-title {
  font-size: 12px; font-weight: 700;
  color: var(--orange);
  text-transform: uppercase; letter-spacing: 1.5px;
  margin: 28px 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border2);
}

/* Footer */
footer {
  border-top: 1px solid var(--border2);
  padding: 32px clamp(16px, 5vw, 64px);
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  position: relative; z-index: 1;
}
footer a { color: var(--orange); text-decoration: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255,108,0,0.3); border-radius: 3px; }

/* Responsive */
@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
  .dashboard-layout, .admin-layout { grid-template-columns: 1fr; }
  .sidebar, .admin-sidebar { position: static; height: auto; }
  .nomination-ribbon { flex-direction: column; text-align: center; }
  .nav-links { gap: 10px; }
  .admin-main { padding: 20px 16px; }
}
