/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #e63946;
  --orange: #ff6b35;
  --bg: #080a0f;
  --bg2: #0e1118;
  --bg3: #141820;
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
  --text: #f0f2f8;
  --text-muted: #8a90a0;
  --gradient: linear-gradient(135deg, #e63946, #ff6b35);
  --font-main: 'Inter', sans-serif;
  --font-display: 'Orbitron', sans-serif;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }

/* ===== TYPOGRAPHY ===== */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-eyebrow {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, opacity 0.25s;
  box-shadow: 0 0 30px rgba(230,57,70,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(230,57,70,0.55); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: all 0.25s;
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { border-color: rgba(230,57,70,0.6); background: rgba(230,57,70,0.08); }

.btn-full { width: 100%; justify-content: center; border-radius: 12px; font-size: 1rem; padding: 1.1rem; }

/* ===== NAV ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

#navbar.scrolled {
  background: rgba(8,10,15,0.9);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--glass-border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-chery {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-model {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  letter-spacing: 0.03em;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: var(--gradient) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-weight: 700 !important;
  color: transparent !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(8,10,15,0.97);
  backdrop-filter: blur(20px);
  padding: 1.5rem;
  border-top: 1px solid var(--glass-border);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 0.85rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid var(--glass-border);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--text); }
.mobile-cta {
  margin-top: 1rem;
  border: none;
  text-align: center;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 1rem;
}

/* ===== HERO ===== */
#hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 8vh;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,10,15,0.3) 0%,
    rgba(8,10,15,0.1) 40%,
    rgba(8,10,15,0.7) 80%,
    rgba(8,10,15,1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--red);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 900;
  line-height: 1.0;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hero-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  animation: revealUp 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

[data-aos] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos].aos-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== STRIP ===== */
.strip {
  background: linear-gradient(135deg, rgba(230,57,70,0.15), rgba(255,107,53,0.08));
  border-top: 1px solid rgba(230,57,70,0.2);
  border-bottom: 1px solid rgba(230,57,70,0.2);
  padding: 1rem 0;
  overflow: hidden;
}
.strip-inner {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.strip-inner span {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.strip-inner .sep { color: var(--red); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== STATS ===== */
#stats {
  padding: 6rem 0;
  background: var(--bg);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stat-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 1px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s;
}
.stat-card:hover { border-color: rgba(230,57,70,0.35); transform: translateY(-4px); }
.stat-card:hover::before { opacity: 1; }

.stat-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
}
.stat-unit {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-top: 0.2rem;
  display: block;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.6rem;
  letter-spacing: 0.05em;
}

/* ===== FEATURES ===== */
#features {
  padding: 7rem 0;
  background: var(--bg2);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(230,57,70,0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s;
}
.feature-card:hover { border-color: rgba(230,57,70,0.4); transform: translateY(-6px); }
.feature-card:hover::after { opacity: 1; }

.feature-card--large {
  grid-column: span 1;
}

.feature-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1.5rem;
}
.feature-icon svg { width: 100%; height: 100%; }

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.feature-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== PERFORMANCE ===== */
#performance {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.perf-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(230,57,70,0.06), transparent);
  pointer-events: none;
}
.perf-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.perf-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.perf-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.perf-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
}

.perf-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.perf-ring {
  position: relative;
  width: 220px;
  height: 220px;
}
.ring-svg {
  width: 220px;
  height: 220px;
  transform: rotate(-90deg);
}
.ring-bg {
  fill: none;
  stroke: rgba(255,255,255,0.06);
  stroke-width: 8;
}
.ring-progress {
  fill: none;
  stroke: url(#ringGradient);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 628;
  stroke-dashoffset: 628;
  transition: stroke-dashoffset 2s ease;
}

/* Define gradient inside SVG via JS — fallback */
.ring-progress { stroke: var(--red); }

.ring-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ring-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.ring-unit {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.1em;
}
.ring-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.perf-badges {
  display: flex;
  gap: 1rem;
}
.perf-badge {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.perf-badge strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.perf-badge span {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ===== TECH ===== */
#tech {
  padding: 7rem 0;
  background: var(--bg2);
}
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.tech-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  transition: all 0.3s;
}
.tech-item:hover { border-color: rgba(230,57,70,0.35); transform: translateY(-4px); }

.tech-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  opacity: 0.7;
}
.tech-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}
.tech-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== INTERIOR ===== */
#interior {
  padding: 7rem 0;
  background: var(--bg3);
}
.interior-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.interior-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.interior-features {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.int-feat {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.int-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
}

.interior-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.int-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: all 0.3s;
}
.int-card:hover { border-color: rgba(230,57,70,0.35); transform: translateY(-4px); }

.int-card-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.int-card strong {
  font-size: 1rem;
  font-weight: 700;
}
.int-card span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===== SPECS ===== */
#specs {
  padding: 7rem 0;
  background: var(--bg);
}
.specs-table {
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  border-bottom: 1px solid var(--glass-border);
  transition: background 0.2s;
}
.spec-row:last-child { border-bottom: none; }
.spec-row:hover { background: var(--glass); }
.spec-row:nth-child(odd) { background: rgba(255,255,255,0.015); }
.spec-row:nth-child(odd):hover { background: rgba(255,255,255,0.04); }

.spec-key {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}
.spec-val {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  text-align: right;
}

/* ===== CTA / CONTACT ===== */
#contact {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  background: var(--bg2);
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(230,57,70,0.1), transparent);
  pointer-events: none;
}
.cta-container {
  position: relative;
  z-index: 1;
  max-width: 700px;
  text-align: center;
}
.cta-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.cta-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-input {
  width: 100%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 0.9rem 1.25rem;
  color: var(--text);
  font-size: 0.9rem;
  font-family: var(--font-main);
  outline: none;
  transition: border-color 0.25s;
  -webkit-appearance: none;
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus { border-color: rgba(230,57,70,0.6); }
.form-select { cursor: pointer; }
.form-select option { background: var(--bg); color: var(--text); }

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 3rem;
  animation: revealUp 0.6s ease forwards;
}
.form-success.show { display: flex; }
.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  font-weight: 700;
}
.form-success h3 { font-size: 1.5rem; }
.form-success p { color: var(--text-muted); }

/* ===== FOOTER ===== */
footer {
  background: var(--bg);
  border-top: 1px solid var(--glass-border);
  padding: 3rem 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.footer-brand p {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-top: 0.35rem;
}
.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-copy p {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.footer-author {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .perf-container { grid-template-columns: 1fr; gap: 3rem; }
  .perf-visual { order: -1; }
  .interior-layout { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Hero — mobilde video üstte, metin altta */
  #hero {
    height: auto;
    min-height: 100svh;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 3rem;
    padding-top: var(--nav-h);
  }

  .hero-video-wrap {
    position: relative;
    width: 100%;
    height: 56.25vw; /* 16:9 oran */
    flex-shrink: 0;
  }

  .hero-video-wrap video {
    object-fit: contain;
    background: var(--bg);
  }

  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(8,10,15,0.1) 0%,
      rgba(8,10,15,0.3) 80%,
      rgba(8,10,15,1) 100%
    );
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding-top: 2rem;
    flex: 1;
  }

  .hero-title { font-size: clamp(2.5rem, 12vw, 4rem); }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-num { font-size: 2.5rem; }

  .features-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .interior-cards { grid-template-columns: 1fr 1fr; }

  .footer-inner { flex-direction: column; text-align: center; align-items: center; }
  .footer-links { justify-content: center; }

  .hero-scroll-hint { display: none; }

  .spec-row { padding: 1rem 1.25rem; }
  .spec-key, .spec-val { font-size: 0.8rem; }

  .perf-badges { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; justify-content: center; }
  .interior-cards { grid-template-columns: 1fr; }
  .section-title { font-size: 2rem; }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(230,57,70,0.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }
