/* ═══════════════════════════════════════════
   Gossler Handel — Premium Sportwagenvermittlung
   v3 — Refined UI + Lightbox + Share
   Dark · Silver · Luxury
   ═══════════════════════════════════════════ */

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

:root {
  --black: #000000;
  --dark: #0a0a0a;
  --card: #111111;
  --card-hover: #181818;
  --elevated: #1c1c1e;
  --border: rgba(255,255,255,0.07);
  --border-light: rgba(255,255,255,0.04);

  --accent: #c9a96e;
  --accent-hover: #dbb97e;
  --accent-dim: rgba(201,169,110,0.12);
  --accent-glow: rgba(201,169,110,0.2);

  --text-primary: #f5f5f5;
  --text-secondary: #a0a0a0;
  --text-muted: #555;

  --font-display: 'Space Grotesk', 'SF Pro Display', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --radius-pill: 999px;
}

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

html { -webkit-tap-highlight-color: transparent; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text-primary);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

#app {
  max-width: 480px;
  margin: 0 auto;
  padding-bottom: 40px;
}

/* ── Header ──────────────────────────────── */
#header {
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  padding: 12px 18px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 11px;
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: #000;
  flex-shrink: 0;
  box-shadow: 0 4px 14px var(--accent-glow);
}

.logo-text h1 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.2px;
}

.logo-text .subtitle {
  font-size: 10px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.header-contact {
  background: var(--accent);
  color: #000;
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.18s ease;
  letter-spacing: 0.2px;
}

.header-contact:active {
  transform: scale(0.94);
  background: var(--accent-hover);
}

/* ── Search ──────────────────────────────── */
#search-bar {
  padding: 10px 16px;
  display: flex;
  gap: 8px;
  position: sticky;
  top: 62px;
  z-index: 99;
  background: rgba(10,10,10,0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
}

.search-input-wrap {
  flex: 1;
  position: relative;
}

.search-icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  opacity: 0.4;
}

#search {
  width: 100%;
  padding: 11px 14px 11px 38px;
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

#search:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

#search::placeholder { color: var(--text-muted); }

#filter-toggle {
  width: 46px;
  height: 46px;
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 17px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

#filter-toggle:active,
#filter-toggle.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
}

/* ── Filters ─────────────────────────────── */
.filters {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 200px;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.25s ease;
  opacity: 1;
}

.filters.hidden {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  pointer-events: none;
}

.filter-row {
  display: flex;
  gap: 8px;
  padding-top: 8px;
}

.filter-row:last-child { padding-bottom: 8px; }

.filter-row select {
  flex: 1;
  padding: 9px 10px;
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
}

.filter-row select:focus { border-color: var(--accent); }

/* ── Views ────────────────────────────────── */
.view { display: none; }
.view.active { display: block; }

/* ── Loading / Error ─────────────────────── */
.loading, .error-state {
  text-align: center;
  padding: 80px 20px 60px;
  color: var(--text-muted);
}

.hidden { display: none !important; }

.spinner {
  width: 36px;
  height: 36px;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  margin: 0 auto 16px;
  animation: spin 0.75s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.retry-btn {
  margin-top: 16px;
  background: var(--accent);
  color: #000;
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

/* ── Vehicle Count ───────────────────────── */
.vehicle-count {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 18px 4px;
}

/* ── Vehicle Grid ────────────────────────── */
.vehicles-grid {
  padding: 8px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── Vehicle Card ────────────────────────── */
.vehicle-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: transform 0.15s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  animation: cardIn 0.35s ease-out both;
}

.vehicle-card:active {
  transform: scale(0.977);
  border-color: rgba(201,169,110,0.25);
  box-shadow: 0 0 0 1px rgba(201,169,110,0.1);
}

@keyframes cardIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.vehicle-card:nth-child(2) { animation-delay: 0.06s; }
.vehicle-card:nth-child(3) { animation-delay: 0.12s; }
.vehicle-card:nth-child(4) { animation-delay: 0.18s; }
.vehicle-card:nth-child(5) { animation-delay: 0.22s; }
.vehicle-card:nth-child(6) { animation-delay: 0.26s; }

/* Card Image Slider */
.vehicle-card-image-wrap {
  position: relative;
  overflow: hidden;
}

.card-image-slider {
  display: flex;
  transition: transform 0.3s ease;
  will-change: transform;
}

.card-image-slider img {
  width: 100%;
  min-width: 100%;
  height: 200px;
  object-fit: cover;
  background: #0d0d0d;
  display: block;
  flex-shrink: 0;
}

.vehicle-card-image-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #111, #1c1c1e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  opacity: 0.35;
}

/* Card image count badge */
.card-image-count {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: var(--radius-pill);
  z-index: 2;
}

/* Condition Badge overlay */
.vehicle-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 9px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(201,169,110,0.25);
  z-index: 2;
}

/* Card slider dots */
.card-slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 3;
}

.card-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: all 0.25s ease;
}

.card-dot.active {
  background: var(--accent);
  width: 16px;
  border-radius: 3px;
}

/* Body */
.vehicle-card-body {
  padding: 14px 16px 16px;
}

.vehicle-card-make {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 3px;
}

.vehicle-card-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 10px;
}

.vehicle-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
}

.spec-badge {
  background: var(--accent-dim);
  color: var(--accent);
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
}

.spec-badge.muted {
  background: rgba(255,255,255,0.05);
  color: var(--text-secondary);
}

/* Footer */
.vehicle-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-light);
  padding-top: 12px;
}

.vehicle-card-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
}

.vehicle-card-price-currency {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 1px;
}

.vehicle-card-cta {
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.3px;
}

/* ── No Results ──────────────────────────── */
.no-results {
  text-align: center;
  padding: 80px 20px 60px;
  color: var(--text-muted);
}

.no-results.hidden { display: none; }
.no-results-icon { font-size: 48px; opacity: 0.25; margin-bottom: 12px; display: block; }

/* ── Detail Top Bar ─────────────────────── */
.detail-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 12px;
  cursor: pointer;
}

.detail-top-actions {
  display: flex;
  gap: 4px;
}

.share-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  margin-right: 8px;
}

.share-btn:active {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

/* ── Detail Images ───────────────────────── */
.detail-images {
  position: relative;
  background: #0a0a0a;
  overflow: hidden;
}

.image-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.image-slider::-webkit-scrollbar { display: none; }

.image-slider img {
  width: 100%;
  min-width: 100%;
  height: 300px;
  object-fit: cover;
  scroll-snap-align: start;
}

.image-placeholder {
  width: 100%;
  min-width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #111, #1c1c1e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  opacity: 0.25;
  scroll-snap-align: start;
}

.image-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 14px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: all 0.25s ease;
  cursor: pointer;
}

.dot.active {
  background: var(--accent);
  width: 20px;
  border-radius: 3px;
}

/* Image counter */
.image-counter {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  z-index: 2;
}

/* Expand button */
.image-expand-btn {
  position: absolute;
  bottom: 44px;
  right: 12px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: all 0.2s;
}

.image-expand-btn:active {
  background: var(--accent);
  color: #000;
}

/* ── Detail Content ──────────────────────── */
.detail-content {
  padding: 20px 18px 120px;
}

.detail-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.detail-make-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-dim);
  color: var(--accent);
  padding: 4px 11px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}

.detail-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 16px;
}

/* Price block */
.detail-price-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.detail-price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.8px;
}

.detail-price .currency {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 3px;
}

.detail-price .vat {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 3px;
}

/* Section */
.detail-section {
  margin-bottom: 24px;
}

.detail-section-title {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 12px;
}

/* Specs grid */
.detail-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.detail-spec {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
}

.detail-spec-label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 5px;
}

.detail-spec-value {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

/* Features */
.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.feature-tag {
  background: rgba(255,255,255,0.04);
  color: var(--text-secondary);
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
  border: 1px solid var(--border);
}

/* Description */
.detail-description {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-secondary);
  white-space: pre-line;
}

/* ── Detail Bottom Bar ────────────────────── */
.detail-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  z-index: 50;
}

.share-btn-large {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 20px;
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
}

.share-btn-large:active {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

.share-btn-large .btn-icon { font-size: 16px; }

.contact-btn-large {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #000;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.2px;
  box-shadow: 0 4px 16px var(--accent-glow);
  transition: all 0.15s ease;
}

.contact-btn-large:active {
  transform: scale(0.97);
  box-shadow: 0 2px 8px var(--accent-glow);
}

.contact-btn-large .btn-icon { font-size: 16px; }

/* ── Lightbox ─────────────────────────────── */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.97);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  flex-shrink: 0;
}

.lightbox-counter {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
}

.lightbox-close {
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.lightbox-close:active {
  background: rgba(255,255,255,0.2);
}

.lightbox-slider-wrap {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.lightbox-slider {
  display: flex;
  transition: transform 0.3s ease;
  will-change: transform;
}

.lightbox-slider img {
  width: 100%;
  min-width: 100%;
  object-fit: contain;
  max-height: 70vh;
  flex-shrink: 0;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-size: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 2;
}

.lightbox-nav:active {
  background: var(--accent);
  color: #000;
}

.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }

.lightbox-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 16px;
  flex-shrink: 0;
}

.lb-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: all 0.25s ease;
  cursor: pointer;
}

.lb-dot.active {
  background: var(--accent);
  width: 20px;
  border-radius: 3px;
}

/* ── Share Modal ──────────────────────────── */
.share-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.share-modal.active {
  opacity: 1;
  pointer-events: all;
}

.share-modal-content {
  background: var(--card);
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 24px 20px 34px;
  width: 100%;
  max-width: 480px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.share-modal.active .share-modal-content {
  transform: translateY(0);
}

.share-modal-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.share-option {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 8px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}

.share-option:active {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

.share-option-icon {
  font-size: 22px;
}

.share-cancel {
  width: 100%;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-top: 8px;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}

.share-cancel:active {
  background: var(--elevated);
}

/* ── Divider ─────────────────────────────── */
.gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 0 18px;
  opacity: 0.2;
}

/* ── Scrollbar ───────────────────────────── */
::-webkit-scrollbar { width: 0; }

/* ── Telegram theme — immer Dark ────────── */
html, body {
  background-color: #0a0a0a !important;
  color: #f5f5f5 !important;
}
