/* ╔═══════════════════════════════════════════════════════════════════════╗
   ║  The Ride Dolomites 2026 – Stylesheet (Zwift-inspired dark style)    ║
   ╚═══════════════════════════════════════════════════════════════════════╝ */

:root {
  --bg:          #060614;
  --bg-card:     #0d0d28;
  --bg-card2:    #111130;
  --orange:      #FF6A00;
  --orange-glow: #ff6a0055;
  --yellow:      #FFD600;
  --cyan:        #00C9FF;
  --green:       #39FF14;
  --red:         #FF2D55;
  --text:        #FFFFFF;
  --text-dim:    #AAB4C8;
  --text-muted:  #556;
  --border:      #1a1a3e;
  --nav-h:       64px;
  --radius:      12px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  padding-top: var(--nav-h);
}

/* ── Typography ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4, .stat-num { font-family: 'Rajdhani', sans-serif; letter-spacing: 0.03em; }
a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--yellow); }

/* ── NAV ───────────────────────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center; gap: 4px;
  padding: 0 20px;
  background: rgba(6, 6, 20, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex; align-items: center; gap: 8px;
  cursor: pointer; padding: 4px 12px 4px 0;
  border-right: 1px solid var(--border);
  margin-right: 8px; flex-shrink: 0;
}
.brand-icon { font-size: 22px; }
.brand-text {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 18px; color: var(--orange); letter-spacing: 0.08em;
}
.brand-sub { color: var(--text-dim); font-size: 14px; font-weight: 500; }

.nav-links {
  display: flex; align-items: center; gap: 2px; flex-wrap: nowrap; overflow-x: auto;
  scrollbar-width: none;
}
.nav-links::-webkit-scrollbar { display: none; }

.nav-item {
  position: relative; white-space: nowrap;
  padding: 6px 14px; border-radius: 6px; cursor: pointer;
  font-family: 'Rajdhani', sans-serif; font-weight: 600;
  font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-dim); transition: all 0.2s;
  user-select: none;
}
.nav-item:hover { color: var(--text); background: rgba(255,106,0,0.12); }
.nav-item.active { color: var(--orange); background: rgba(255,106,0,0.18); }

.nav-subscribe-btn {
  color: var(--cyan); border: 1px solid var(--cyan);
  margin-left: 8px;
}
.nav-subscribe-btn:hover { background: rgba(0,201,255,0.12); color: var(--cyan); }

.new-badge {
  display: none; position: absolute; top: 2px; right: 2px;
  background: var(--red); color: #fff; font-size: 8px;
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  padding: 1px 4px; border-radius: 4px; letter-spacing: 0.05em;
  animation: badgePulse 2s ease-in-out infinite;
}
.new-badge.visible { display: block; }

@keyframes badgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

.nav-hamburger {
  display: none; background: none; border: none;
  color: var(--text); font-size: 22px; cursor: pointer; margin-left: auto;
}

@media (max-width: 900px) {
  .nav-hamburger { display: block; }
  .nav-links {
    display: none; position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: var(--bg-card); border-bottom: 1px solid var(--border);
    padding: 12px; flex-direction: column; align-items: flex-start; gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-item { width: 100%; }
}

/* ── MAIN/APP container ─────────────────────────────────────────────────── */
#app { min-height: calc(100vh - var(--nav-h)); }

/* ── HERO (Intro page) ─────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 80px 24px 60px;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,106,0,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(0,60,120,0.3) 0%, transparent 70%);
}

.mountains-svg {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 1;
  width: 100%; pointer-events: none;
}

.hero-content { position: relative; z-index: 2; }

.hero-flag {
  font-size: 11px; font-family: 'Rajdhani', sans-serif; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange);
  background: rgba(255,106,0,0.12); border: 1px solid var(--orange-glow);
  padding: 4px 16px; border-radius: 20px; display: inline-block; margin-bottom: 24px;
}

.hero-title {
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: clamp(48px, 9vw, 110px);
  line-height: 0.9; text-transform: uppercase; letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.hero-title span.grad {
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle {
  font-size: clamp(16px, 3vw, 22px); color: var(--text-dim);
  margin-bottom: 48px;
}

.hero-stats {
  display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stat { text-align: center; }
.hero-stat .stat-num {
  font-size: clamp(32px, 5vw, 52px); font-weight: 700;
  color: var(--orange); display: block; line-height: 1;
}
.hero-stat .stat-label {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-dim);
}

/* ── Countdown ──────────────────────────────────────────────────────────── */
.countdown-bar {
  display: flex; gap: 20px; justify-content: center;
  margin-bottom: 48px;
}
.countdown-unit { text-align: center; }
.countdown-num {
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 42px;
  color: var(--yellow); line-height: 1;
  text-shadow: 0 0 20px rgba(255,214,0,0.5);
}
.countdown-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-dim); }
.countdown-sep { font-family: 'Rajdhani', sans-serif; font-size: 42px; color: var(--orange); align-self: flex-start; padding-top: 2px; }

/* ── Avatars ────────────────────────────────────────────────────────────── */
.avatars-row {
  display: flex; gap: 60px; justify-content: center; align-items: flex-end;
  margin: 40px 0;
}
.avatar-wrap { text-align: center; }
.avatar-svg { width: 140px; height: 200px; }
.avatar-name {
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 18px;
  margin-top: 8px; letter-spacing: 0.05em;
}
.avatar-name.orange { color: var(--orange); }
.avatar-name.cyan   { color: var(--cyan); }

/* Pedal animation */
@keyframes pedalL {
  0%   { transform: rotate(0deg); transform-origin: 50% 40%; }
  100% { transform: rotate(360deg); transform-origin: 50% 40%; }
}
@keyframes pedalR {
  0%   { transform: rotate(180deg); transform-origin: 50% 40%; }
  100% { transform: rotate(540deg); transform-origin: 50% 40%; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.avatar-svg { animation: float 3s ease-in-out infinite; }
.crank-arm-l { animation: pedalL 0.8s linear infinite; }
.crank-arm-r { animation: pedalR 0.8s linear infinite; }

/* ── Stage Timeline ──────────────────────────────────────────────────────── */
.stage-timeline { max-width: 860px; margin: 0 auto; padding: 60px 24px; }
.timeline-title {
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 28px;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--orange); margin-bottom: 32px; text-align: center;
}

.timeline-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px;
}
.timeline-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 18px;
  cursor: pointer; transition: all 0.25s; position: relative; overflow: hidden;
}
.timeline-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
}
.timeline-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(255,106,0,0.2);
}
.tc-tag {
  font-family: 'Rajdhani', sans-serif; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--orange);
}
.tc-name { font-family: 'Rajdhani', sans-serif; font-size: 20px; font-weight: 700; margin: 4px 0; }
.tc-date { font-size: 12px; color: var(--text-dim); margin-bottom: 12px; }
.tc-stats { display: flex; gap: 12px; }
.tc-stat { font-size: 13px; }
.tc-stat span { color: var(--yellow); font-weight: 600; }

/* ── Stage Page ─────────────────────────────────────────────────────────── */
.stage-page { max-width: 960px; margin: 0 auto; padding: 40px 24px 80px; }

.stage-header {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 32px; margin-bottom: 32px;
  position: relative; overflow: hidden;
}
.stage-header::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--yellow), var(--cyan));
}
.stage-header-top {
  display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 16px;
}
.stage-tag {
  font-family: 'Rajdhani', sans-serif; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--orange);
}
.stage-name {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: clamp(28px, 5vw, 48px); text-transform: uppercase; line-height: 1;
  margin: 6px 0 4px;
}
.stage-date { color: var(--text-dim); font-size: 14px; margin-bottom: 24px; }

.stage-kpis {
  display: flex; gap: 32px; flex-wrap: wrap; margin-bottom: 24px;
}
.kpi { }
.kpi-val {
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 36px;
  color: var(--yellow); line-height: 1;
}
.kpi-unit { font-size: 14px; color: var(--text-dim); margin-left: 2px; }
.kpi-lbl { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); }

.stage-status-badge {
  padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 600;
  font-family: 'Rajdhani', sans-serif; letter-spacing: 0.08em; text-transform: uppercase;
}
.status-future  { background: rgba(0,201,255,0.12); color: var(--cyan); border: 1px solid var(--cyan); }
.status-done    { background: rgba(57,255,20,0.12);  color: var(--green); border: 1px solid var(--green); }
.status-live    { background: rgba(255,45,85,0.18);  color: var(--red);   border: 1px solid var(--red);
                  animation: badgePulse 1.5s infinite; }

/* ── Elevation Profile ───────────────────────────────────────────────────── */
.elevation-wrap {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; margin-bottom: 32px; overflow: hidden;
}
.elevation-label {
  font-family: 'Rajdhani', sans-serif; font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim);
  margin-bottom: 12px;
}
.elevation-svg { width: 100%; display: block; }

/* ── Climbs ──────────────────────────────────────────────────────────────── */
.climbs-section { margin-bottom: 32px; }
.section-title {
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 20px;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.section-title::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}

.climbs-list { display: flex; flex-wrap: wrap; gap: 12px; }
.climb-chip {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; padding: 10px 16px; display: flex; flex-direction: column; gap: 2px;
  transition: border-color 0.2s;
}
.climb-chip:hover { border-color: var(--orange); }
.climb-chip .c-name { font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 15px; }
.climb-chip .c-alt {
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 22px; color: var(--orange);
  line-height: 1;
}
.climb-chip .c-unit { font-size: 11px; color: var(--text-dim); }

/* ── Description ─────────────────────────────────────────────────────────── */
.stage-description {
  background: var(--bg-card); border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 20px 24px;
  margin-bottom: 32px; line-height: 1.8; color: var(--text-dim);
  font-size: 15px;
}

/* ── Blog Posts ──────────────────────────────────────────────────────────── */
.posts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-bottom: 40px; }

.post-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; position: relative; overflow: hidden;
}
.post-card::before {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 3px;
}
.post-card.author-1::before { background: var(--orange); }
.post-card.author-2::before { background: var(--cyan); }
.post-card.empty {
  opacity: 0.4; border-style: dashed;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 160px; text-align: center;
}
.post-author {
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px;
}
.post-card.author-1 .post-author { color: var(--orange); }
.post-card.author-2 .post-author { color: var(--cyan); }
.post-content { color: var(--text-dim); line-height: 1.8; white-space: pre-wrap; }
.post-date { font-size: 11px; color: var(--text-muted); margin-top: 12px; }

/* ── Photo Gallery ───────────────────────────────────────────────────────── */
.photo-gallery {
  columns: 3; gap: 12px; margin-bottom: 40px;
}
.photo-gallery img {
  width: 100%; display: block; margin-bottom: 12px;
  border-radius: 8px; cursor: pointer; transition: all 0.2s;
  border: 1px solid var(--border);
}
.photo-gallery img:hover { transform: scale(1.02); border-color: var(--orange); }
.gallery-empty {
  text-align: center; color: var(--text-muted); padding: 40px;
  border: 1px dashed var(--border); border-radius: var(--radius);
  font-size: 14px; margin-bottom: 40px;
}

@media (max-width: 600px) { .photo-gallery { columns: 2; } }

/* ── Comments ────────────────────────────────────────────────────────────── */
.comments-section { margin-bottom: 40px; }
.comments-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.comment {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 18px;
}
.comment-header { display: flex; justify-content: space-between; margin-bottom: 6px; }
.comment-name { font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 14px; color: var(--yellow); }
.comment-date { font-size: 11px; color: var(--text-muted); }
.comment-body { color: var(--text-dim); font-size: 14px; }
.no-comments { color: var(--text-muted); font-size: 14px; font-style: italic; margin-bottom: 16px; }

.comment-form {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
}
.comment-form-title { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 18px; margin-bottom: 16px; }

/* ── Forms ───────────────────────────────────────────────────────────────── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

.form-input, .form-textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text); padding: 12px 14px; font-size: 14px;
  font-family: 'Inter', sans-serif; transition: border-color 0.2s; outline: none;
}
.form-input:focus, .form-textarea:focus { border-color: var(--orange); }
.form-input.mb { margin-bottom: 12px; }
.form-textarea { min-height: 100px; resize: vertical; }
.form-msg { font-size: 13px; margin-top: 10px; min-height: 18px; }
.form-msg.ok  { color: var(--green); }
.form-msg.err { color: var(--red); }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 12px 24px; border-radius: 8px; border: none;
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 14px;
  letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--orange); color: #fff;
  box-shadow: 0 4px 20px rgba(255,106,0,0.3);
}
.btn-primary:hover { background: #ff8533; transform: translateY(-1px); box-shadow: 0 6px 28px rgba(255,106,0,0.4); }
.btn-secondary {
  background: transparent; color: var(--text-dim);
  border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: var(--text-dim); color: var(--text); }
.btn-full { width: 100%; }
.btn-sm { padding: 8px 16px; font-size: 12px; }

/* ── Modals ──────────────────────────────────────────────────────────────── */
.modal {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(6px);
  align-items: center; justify-content: center;
}
.modal.open { display: flex; }
.modal-box {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; max-width: 420px; width: 90%;
  position: relative;
}
.modal-close {
  position: absolute; top: 14px; right: 14px;
  background: none; border: none; color: var(--text-dim); font-size: 18px; cursor: pointer;
}
.modal-title { font-family: 'Rajdhani', sans-serif; font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.modal-sub { color: var(--text-dim); font-size: 14px; margin-bottom: 20px; }

/* ── Lightbox ────────────────────────────────────────────────────────────── */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 3000;
  background: rgba(0,0,0,0.92); align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 80vh; border-radius: 8px; object-fit: contain; }
.lightbox p { color: var(--text-dim); font-size: 13px; }
.lightbox-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: #fff; font-size: 28px; cursor: pointer; }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,106,0,0.25); border: none; color: #fff;
  font-size: 36px; width: 52px; height: 52px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,106,0,0.5); }

/* ── Toast ───────────────────────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; padding: 12px 24px; font-size: 14px;
  transition: transform 0.3s; z-index: 4000; pointer-events: none; white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.ok  { border-color: var(--green); color: var(--green); }
.toast.err { border-color: var(--red); color: var(--red); }

/* ── Retro page ──────────────────────────────────────────────────────────── */
.retro-page { max-width: 860px; margin: 0 auto; padding: 40px 24px 80px; }
.retro-hero {
  text-align: center; padding: 48px 24px;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(255,106,0,0.12), transparent);
  border-radius: var(--radius); margin-bottom: 40px;
}
.retro-title { font-family: 'Rajdhani', sans-serif; font-size: clamp(36px, 8vw, 72px); font-weight: 700; text-transform: uppercase; }
.retro-title .grad { background: linear-gradient(90deg, var(--orange), var(--yellow)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.retro-stats { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-top: 32px; }

/* ── Admin panel ─────────────────────────────────────────────────────────── */
.admin-page { max-width: 960px; margin: 0 auto; padding: 40px 24px 80px; }
.admin-header { margin-bottom: 32px; }
.admin-title { font-family: 'Rajdhani', sans-serif; font-size: 32px; font-weight: 700; color: var(--orange); }
.admin-tabs { display: flex; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
.admin-tab {
  padding: 8px 18px; border-radius: 6px; border: 1px solid var(--border);
  font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.08em; cursor: pointer;
  color: var(--text-dim); background: transparent; transition: all 0.2s;
}
.admin-tab.active { background: var(--orange); color: #fff; border-color: var(--orange); }
.admin-tab:hover:not(.active) { border-color: var(--text-dim); color: var(--text); }
.admin-section { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-bottom: 24px; }
.admin-section-title { font-family: 'Rajdhani', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 16px; color: var(--yellow); }
.admin-stage-select {
  width: 100%; background: var(--bg); border: 1px solid var(--border); border-radius: 8px;
  color: var(--text); padding: 10px 12px; font-size: 14px; margin-bottom: 12px; outline: none;
}
.admin-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.admin-table th { text-align: left; color: var(--text-dim); padding: 8px 12px; border-bottom: 1px solid var(--border); font-weight: 600; }
.admin-table td { padding: 10px 12px; border-bottom: 1px solid rgba(255,255,255,0.04); vertical-align: top; }
.admin-table tr:hover td { background: rgba(255,255,255,0.02); }
.admin-login { max-width: 340px; margin: 80px auto; text-align: center; padding: 40px 32px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); }
.admin-login-title { font-family: 'Rajdhani', sans-serif; font-size: 28px; font-weight: 700; margin-bottom: 24px; color: var(--orange); }
.admin-notify-form { display: flex; flex-direction: column; gap: 12px; }
.img-preview { max-width: 100px; max-height: 70px; border-radius: 4px; object-fit: cover; }

/* ── Coming soon ─────────────────────────────────────────────────────────── */
.coming-soon {
  text-align: center; padding: 60px 24px;
  background: var(--bg-card); border: 1px dashed var(--border);
  border-radius: var(--radius); margin-bottom: 32px;
}
.coming-soon-icon { font-size: 48px; margin-bottom: 16px; }
.coming-soon-title { font-family: 'Rajdhani', sans-serif; font-size: 24px; font-weight: 700; margin-bottom: 8px; color: var(--text-dim); }
.coming-soon-sub { font-size: 14px; color: var(--text-muted); }

/* ── Scrollbar ───────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }

/* ── Animations ──────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.5s ease both; }
.fade-up-d1 { animation-delay: 0.1s; }
.fade-up-d2 { animation-delay: 0.2s; }
.fade-up-d3 { animation-delay: 0.3s; }
.fade-up-d4 { animation-delay: 0.4s; }
.fade-up-d5 { animation-delay: 0.5s; }
.fade-up-d6 { animation-delay: 0.6s; }

/* SVG path drawing animation */
.route-line {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: drawRoute 2.5s ease forwards;
}
@keyframes drawRoute {
  to { stroke-dashoffset: 0; }
}
