

:root {
  --bg-base: #050810;
  --bg-elevated: #0a0f1a;
  --bg-card: #0f1624;
  --bg-card-hover: #141b2d;
  --bg-glass: rgba(15, 22, 36, 0.65);
  --border: rgba(96, 165, 250, 0.1);
  --border-strong: rgba(96, 165, 250, 0.25);
  --border-hover: rgba(96, 165, 250, 0.45);
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #64748b;
  --text-faint: #475569;
  --accent: #60a5fa;
  --accent-bright: #93c5fd;
  --accent-dark: #2563eb;
  --accent-darker: #1d4ed8;
  --accent-glow: rgba(96, 165, 250, 0.45);
  --accent-glow-soft: rgba(96, 165, 250, 0.15);
  --gold: #fbbf24;
  --red: #f87171;
  --green: #4ade80;
  --orange: #fb923c;
  --purple: #a78bfa;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 40px rgba(96, 165, 250, 0.25);
  --shadow-glow-strong: 0 0 60px rgba(96, 165, 250, 0.4);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

img {
  max-width: 100%;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
}

html, body {
  height: 100%;
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(96, 165, 250, 0.1), transparent),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(167, 139, 250, 0.05), transparent),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(96, 165, 250, 0.05), transparent),
    var(--bg-base);
  min-height: 100vh;
}

.bg-noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(96, 165, 250, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 165, 250, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  pointer-events: none;
  animation: gridFloat 30s linear infinite;
}

.bg-glow {
  position: fixed;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 800px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 65%);
  z-index: 0;
  pointer-events: none;
  animation: glowPulse 12s ease-in-out infinite;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.3), transparent);
  top: 30%;
  left: -100px;
  animation: orbFloat1 20s ease-in-out infinite;
}

.orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.2), transparent);
  bottom: 20%;
  right: -100px;
  animation: orbFloat2 25s ease-in-out infinite;
}

@keyframes gridFloat {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.15); }
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(100px, -50px) scale(1.1); }
  66% { transform: translate(50px, 80px) scale(0.95); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-80px, 60px) scale(1.05); }
  66% { transform: translate(-40px, -40px) scale(0.95); }
}

#app {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 8, 16, 0.5);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: all 0.3s var(--transition);
}

.header.scrolled {
  background: rgba(5, 8, 16, 0.85);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo-wrap {
  position: relative;
  width: 56px;
  height: 28px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 20px var(--accent-glow);
  border: 1px solid var(--border-strong);
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0 50%;
  display: block;
}

.brand-logo-glow {
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, var(--accent), transparent, var(--accent));
  border-radius: 8px;
  opacity: 0.5;
  z-index: -1;
  animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

.brand-text h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text-primary);
}

.brand-text h1 span {
  color: var(--accent);
  font-weight: 600;
}

.brand-sub {
  font-size: 9px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 3px;
  display: block;
}

.credit-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s var(--transition);
  box-shadow: var(--shadow-sm);
}

.credit-link:hover {
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.2), rgba(88, 101, 242, 0.05));
  border-color: #5865f2;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(88, 101, 242, 0.3);
}

.credit-by {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.credit-name {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  background: linear-gradient(135deg, #5865f2, #7289da);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.01em;
}

.credit-discord {
  width: 16px;
  height: 16px;
  color: #5865f2;
  transition: transform 0.3s var(--transition);
}

.credit-link:hover .credit-discord {
  transform: scale(1.2) rotate(-8deg);
}

.header-stats {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 8px 22px;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 100px;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
}

.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.01em;
}

.stat-value.stat-mesh { color: var(--orange); }

.stat-label {
  font-size: 9px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
}

.main {
  flex: 1;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
}

.hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
  margin: 0 -32px;
}

.hero-bg-images {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroRotate 24s infinite;
}

.hero-bg-img:nth-child(1) { animation-delay: 0s; }
.hero-bg-img:nth-child(2) { animation-delay: 8s; }
.hero-bg-img:nth-child(3) { animation-delay: 16s; }

@keyframes heroRotate {
  0%, 25% { opacity: 0.18; transform: scale(1); }
  33% { opacity: 0.18; transform: scale(1.05); }
  41%, 100% { opacity: 0; transform: scale(1.05); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 30%, var(--bg-base) 75%),
    linear-gradient(180deg, transparent 0%, rgba(5, 8, 16, 0.4) 50%, var(--bg-base) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  padding: 0 32px;
}

.hero-logo-embed {
  position: relative;
  display: inline-block;
  margin: 0 auto 28px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(96, 165, 250, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-strong);
  background: linear-gradient(135deg, #0a1424, #050810);
  animation: heroLogoIn 0.9s var(--transition-bounce);
  transition: transform 0.4s var(--transition-bounce), box-shadow 0.4s;
}

.hero-logo-embed:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.85),
    0 0 60px rgba(96, 165, 250, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.hero-logo-img {
  display: block;
  width: 100%;
  max-width: 460px;
  height: auto;
  object-fit: cover;
}

.hero-logo-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.18) 50%, transparent 70%);
  transform: skewX(-20deg);
  pointer-events: none;
  animation: heroShine 4.5s ease-in-out infinite;
  animation-delay: 1.2s;
}

@keyframes heroLogoIn {
  from { opacity: 0; transform: translateY(-20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes heroShine {
  0%, 100% { left: -100%; }
  50% { left: 160%; }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-strong);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  box-shadow: 0 0 30px var(--accent-glow-soft);
  animation: fadeUp 0.6s 0.2s var(--transition-bounce) both;
}

.hero-tag-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 20px;
  animation: fadeUp 0.7s 0.1s var(--transition-bounce) both;
}

.hero-title-line {
  display: block;
}

.hero-title em {
  font-style: normal;
  color: var(--accent);
  font-weight: 700;
}

.hero-title em.gradient {
  background: linear-gradient(135deg, var(--accent-bright) 0%, var(--accent) 50%, var(--purple) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  animation: fadeUp 0.7s 0.2s var(--transition-bounce) both;
}

.search-wrapper {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  animation: fadeUp 0.7s 0.3s var(--transition-bounce) both;
}

.search-box {
  position: relative;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  padding: 4px 4px 4px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s var(--transition);
  box-shadow:
    var(--shadow-md),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.search-box::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 100px;
  background: linear-gradient(135deg, transparent, var(--accent-glow-soft), transparent);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s;
}

.search-box:focus-within {
  border-color: var(--accent);
  box-shadow:
    0 0 0 4px var(--accent-glow-soft),
    var(--shadow-md);
  transform: translateY(-2px);
}

.search-box:focus-within::before { opacity: 1; }

.search-icon {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: color 0.2s;
}

.search-box:focus-within .search-icon { color: var(--accent); }

.search-input {
  flex: 1;
  background: transparent;
  border: 0;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 4px;
  outline: none;
  font-family: inherit;
}

.search-input::placeholder { color: var(--text-muted); }

.search-kbd {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: 6px;
  margin-right: 8px;
}

.search-clear {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.search-clear:hover {
  background: var(--red);
  border-color: var(--red);
  color: white;
  transform: rotate(90deg);
}

.search-clear svg { width: 14px; height: 14px; }

.search-info {
  margin-top: 16px;
  min-height: 24px;
  display: flex;
  justify-content: center;
}

.result-count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--green);
  background: rgba(74, 222, 128, 0.1);
  padding: 5px 12px;
  border-radius: 100px;
  font-family: 'Geist Mono', monospace;
  font-weight: 500;
  border: 1px solid rgba(74, 222, 128, 0.25);
}

.result-count svg { width: 12px; height: 12px; }

.fade-enter-active, .fade-leave-active { transition: opacity 0.2s; }
.fade-enter-from, .fade-leave-to { opacity: 0; }

.filter-section {
  padding: 24px 0 40px;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  animation: fadeUp 0.7s 0.4s var(--transition-bounce) both;
}

.chip {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: 100px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 0.2s var(--transition);
  font-family: inherit;
  letter-spacing: 0.01em;
}

.chip svg { width: 14px; height: 14px; }

.chip:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-1px);
  color: var(--text-primary);
}

.chip.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-color: var(--accent);
  color: white;
  box-shadow: 0 0 24px var(--accent-glow);
}

.chip-count {
  background: rgba(0, 0, 0, 0.3);
  color: inherit;
  padding: 1px 7px;
  border-radius: 100px;
  font-size: 10px;
  font-family: 'Geist Mono', monospace;
  font-weight: 700;
  min-width: 22px;
  text-align: center;
}

.chip.active .chip-count {
  background: rgba(255, 255, 255, 0.25);
}

.bikes-section {
  padding-bottom: 80px;
}

.bikes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.bike-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s var(--transition);
  display: flex;
  flex-direction: column;
  animation: cardEnter 0.5s var(--transition-bounce) both;
  position: relative;
}

@keyframes cardEnter {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.bike-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md), 0 0 40px var(--accent-glow-soft);
}

.bike-image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(ellipse at 40% 60%, rgba(96, 165, 250, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at center, #0d1424 0%, #050810 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bike-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 8px;
  transition: transform 0.7s var(--transition);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.bike-card:hover .bike-image { transform: scale(1.1); }

.bike-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100%;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.08) 50%, transparent 70%);
  transform: skewX(-20deg);
  transition: left 0.6s var(--transition);
  pointer-events: none;
}

.bike-card:hover .bike-shine { left: 130%; }

.bike-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
}

.bike-image-placeholder svg { width: 64px; height: 64px; opacity: 0.4; }

.bike-overlay {
  position: absolute;
  inset: 0;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 8, 16, 0.5) 0%, transparent 30%, transparent 70%, rgba(5, 8, 16, 0.7) 100%);
}

.bike-badges {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.badge {
  font-size: 9px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'Space Grotesk', sans-serif;
}

.badge-gold {
  background: linear-gradient(135deg, #f59e0b, var(--gold));
  color: #1a1500;
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.45);
}

.badge-red {
  background: var(--red);
  color: white;
}

.badge-info {
  background: rgba(96, 165, 250, 0.15);
  color: var(--accent);
  border: 1px solid var(--accent);
  backdrop-filter: blur(10px);
}

.bike-chassis-tag {
  background: rgba(96, 165, 250, 0.95);
  color: #000;
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  box-shadow: 0 0 16px var(--accent-glow);
}

.bike-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.bike-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.bike-text {
  flex: 1;
  min-width: 0;
}

.bike-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.bike-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 3px;
  letter-spacing: -0.01em;
}

.bike-year {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  background: var(--bg-elevated);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.bike-specs {
  display: flex;
  gap: 6px;
}

.spec {
  flex: 1;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.08), rgba(96, 165, 250, 0.02));
  border: 1px solid rgba(96, 165, 250, 0.12);
  border-radius: 8px;
  padding: 8px 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
  font-size: 11px;
  transition: all 0.2s;
}

.bike-card:hover .spec {
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.15), rgba(96, 165, 250, 0.05));
  border-color: rgba(96, 165, 250, 0.25);
}

.spec-icon {
  width: 11px;
  height: 11px;
  color: var(--accent);
  flex-shrink: 0;
}

.spec-value {
  font-weight: 700;
  color: var(--text-primary);
  font-family: 'Geist Mono', monospace;
}

.spec-unit {
  color: var(--text-muted);
  font-size: 9px;
}

.bike-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.bike-price {
  font-family: 'Geist Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
}

.bike-counts {
  display: flex;
  gap: 6px;
  align-items: center;
}

.bike-parts, .bike-meshes {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--text-muted);
  background: var(--bg-elevated);
  padding: 3px 9px;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-weight: 500;
  font-family: 'Geist Mono', monospace;
}

.bike-meshes {
  background: rgba(251, 146, 60, 0.12);
  color: var(--orange);
  border-color: rgba(251, 146, 60, 0.25);
}

.bike-parts svg, .bike-meshes svg { width: 10px; height: 10px; flex-shrink: 0; }

.empty-state {
  text-align: center;
  padding: 120px 20px;
  color: var(--text-muted);
}

.empty-state svg { width: 64px; height: 64px; margin-bottom: 16px; opacity: 0.4; }
.empty-state h3 { font-size: 18px; margin-bottom: 8px; color: var(--text-secondary); font-family: 'Space Grotesk', sans-serif; }

.scroll-sentinel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  gap: 12px;
  color: var(--text-muted);
  font-size: 12px;
}

.scroll-loader {
  display: flex;
  gap: 6px;
  align-items: center;
  height: 30px;
}

.scroll-loader-bar {
  width: 4px;
  background: var(--accent);
  border-radius: 2px;
  animation: barBounce 1s ease-in-out infinite;
  box-shadow: 0 0 10px var(--accent-glow);
}

.scroll-loader-bar:nth-child(1) { height: 12px; animation-delay: 0s; }
.scroll-loader-bar:nth-child(2) { height: 22px; animation-delay: 0.15s; }
.scroll-loader-bar:nth-child(3) { height: 14px; animation-delay: 0.3s; }

@keyframes barBounce {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(1.5); opacity: 1; }
}

.loading {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-base);
  z-index: 200;
  gap: 24px;
}

.loader-orbit {
  width: 60px;
  height: 60px;
  border: 2px solid var(--bg-card);
  border-top-color: var(--accent);
  border-right-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  position: relative;
  box-shadow: 0 0 30px var(--accent-glow);
}

.loader-dot {
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--accent);
}

.loading p {
  color: var(--text-muted);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  letter-spacing: 0.02em;
}

@keyframes spin { to { transform: rotate(360deg); } }

.card-list-enter-active, .card-list-leave-active {
  transition: all 0.4s var(--transition-bounce);
}

.card-list-enter-from { opacity: 0; transform: translateY(20px) scale(0.95); }
.card-list-leave-to { opacity: 0; transform: scale(0.95); }
.card-list-move { transition: transform 0.5s var(--transition); }

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
}

.modal {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  max-width: 1200px;
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg), 0 0 80px var(--accent-glow-soft);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s;
}

.modal-close:hover {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.1) rotate(90deg);
}

.modal-close svg { width: 18px; height: 18px; }

.modal-hero {
  position: relative;
  padding: 70px 40px 40px;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.modal-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  filter: blur(40px) saturate(120%);
  opacity: 0.55;
  transform: scale(1.15);
}

.modal-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 15, 26, 0.4) 0%, rgba(10, 15, 26, 0.85) 70%, var(--bg-elevated) 100%),
    linear-gradient(90deg, rgba(96, 165, 250, 0.1), transparent);
}

.modal-hero-content {
  position: relative;
  z-index: 1;
}

.modal-chassis-tag {
  display: inline-block;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.1em;
  background: rgba(96, 165, 250, 0.1);
  border: 1px solid var(--accent);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.modal-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1;
}

.modal-brand-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.modal-model-name {
  font-size: 38px;
  font-weight: 700;
}

.modal-badges {
  display: flex;
  gap: 6px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.image-gallery {
  padding: 0 40px 30px;
}

.gallery-main {
  background:
    radial-gradient(ellipse at center, rgba(96, 165, 250, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at center, #0d1424 0%, #050810 100%);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--border);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.gallery-img {
  max-width: 92%;
  max-height: 92%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
  display: block;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.thumb {
  flex-shrink: 0;
  width: 110px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background:
    radial-gradient(ellipse at center, rgba(96, 165, 250, 0.1) 0%, transparent 60%),
    #0a0f1a;
  padding: 4px;
  transition: all 0.2s;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thumb img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.thumb-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.8), transparent);
  color: white;
  font-size: 9px;
  font-weight: 600;
  padding: 8px 4px 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.thumb:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.thumb.active {
  border-color: var(--accent);
  box-shadow: 0 0 16px var(--accent-glow);
}

.modal-section {
  padding: 30px 40px;
  border-top: 1px solid var(--border);
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.02em;
}

.section-title svg { width: 20px; height: 20px; color: var(--accent); }

.section-count {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(96, 165, 250, 0.12);
  padding: 3px 10px;
  border-radius: 100px;
  margin-left: auto;
}

.section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.section-header .section-title { margin-bottom: 0; }

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 12px;
}

.spec-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}

.spec-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.spec-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.spec-card:hover::before { opacity: 1; }

.spec-card.highlight {
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.12), rgba(96, 165, 250, 0.02));
  border-color: var(--accent);
  box-shadow: 0 0 30px var(--accent-glow-soft);
}

.spec-card-label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 10px;
}

.spec-card-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.02em;
}

.spec-card-value span {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  margin-left: 4px;
}

.spec-card-sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 8px;
}

.perf-bars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
}

.perf-bar { display: flex; flex-direction: column; gap: 8px; }

.perf-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 600;
}

.perf-value {
  font-family: 'Geist Mono', monospace;
  font-weight: 700;
  color: var(--accent);
}

.perf-track {
  height: 10px;
  background: var(--bg-card);
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
}

.perf-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-darker), var(--accent), var(--accent-bright));
  border-radius: 5px;
  transition: width 1s var(--transition-bounce);
  box-shadow: 0 0 16px var(--accent-glow);
  position: relative;
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer { to { background-position: -200% 0; } }

.cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.cat-tab {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: 100px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
  font-family: inherit;
  letter-spacing: 0.01em;
}

.cat-tab:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  color: var(--text-primary);
}

.cat-tab.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}

.tab-badge {
  background: rgba(0, 0, 0, 0.3);
  padding: 1px 7px;
  border-radius: 100px;
  font-size: 10px;
  font-family: 'Geist Mono', monospace;
  font-weight: 700;
}

.cat-tab.active .tab-badge {
  background: rgba(255, 255, 255, 0.25);
}

.tab-mesh-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: rgba(251, 146, 60, 0.18);
  color: var(--orange);
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 10px;
  font-family: 'Geist Mono', monospace;
  font-weight: 700;
  border: 1px solid rgba(251, 146, 60, 0.3);
  margin-left: 2px;
}

.tab-mesh-badge svg { width: 9px; height: 9px; }

.cat-tab.active .tab-mesh-badge {
  background: rgba(255, 255, 255, 0.25);
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
}

.sort-bar {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 14px 18px;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.sort-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-family: 'Space Grotesk', sans-serif;
}

.sort-label svg { width: 14px; height: 14px; color: var(--accent); }

.sort-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex: 1;
}

.sort-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 7px 12px;
  border-radius: 100px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  transition: all 0.2s;
  font-family: inherit;
  letter-spacing: 0.01em;
}

.sort-btn svg { width: 12px; height: 12px; }

.sort-btn:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  color: var(--text-primary);
}

.sort-btn.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-color: var(--accent);
  color: white;
  box-shadow: 0 0 20px var(--accent-glow);
}

.category-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.brand-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  animation: cardEnter 0.4s var(--transition-bounce);
}

.brand-block-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: linear-gradient(90deg, rgba(96, 165, 250, 0.08), transparent);
  border-bottom: 1px solid var(--border);
}

.brand-block-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  object-position: center;
  background: white;
  border-radius: 8px;
  padding: 6px;
  flex-shrink: 0;
  display: block;
}

.brand-block-logo-fallback {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
}

.brand-block-name {
  flex: 1;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.brand-block-count {
  font-size: 10px;
  color: var(--text-muted);
  background: var(--bg-elevated);
  padding: 4px 10px;
  border-radius: 100px;
  font-family: 'Geist Mono', monospace;
  border: 1px solid var(--border);
  font-weight: 500;
}

.models-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 12px;
  padding: 14px;
  background: rgba(5, 8, 16, 0.4);
}

.model-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 14px;
  align-items: stretch;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
  transition: all 0.3s var(--transition);
  position: relative;
  overflow: hidden;
  min-height: 110px;
}

.model-row::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, transparent 0%, rgba(96, 165, 250, 0.06) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.model-row::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.model-row:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 24px var(--accent-glow-soft);
}

.model-row:hover::before { opacity: 1; }
.model-row:hover::after { opacity: 1; }

.model-thumb {
  width: 130px;
  height: 110px;
  border-radius: 12px 0 0 12px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 30%, rgba(96, 165, 250, 0.18) 0%, transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(167, 139, 250, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, #131a2c 0%, #080d18 100%);
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s var(--transition);
}

.model-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(96, 165, 250, 0.05) 1px, transparent 1px);
  background-size: 8px 8px;
  opacity: 0.6;
  pointer-events: none;
}

.model-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}

.model-row:hover .model-thumb {
  background:
    radial-gradient(circle at 30% 30%, rgba(96, 165, 250, 0.25) 0%, transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(167, 139, 250, 0.15) 0%, transparent 50%),
    linear-gradient(135deg, #1a2238 0%, #0a1020 100%);
}

.model-thumb img {
  max-width: 88%;
  max-height: 84%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 6px 12px rgba(0, 0, 0, 0.7))
    drop-shadow(0 0 12px rgba(96, 165, 250, 0.2));
  transition: transform 0.4s var(--transition);
  position: relative;
  z-index: 1;
}

.model-row:hover .model-thumb img {
  transform: scale(1.12) rotate(-2deg);
  filter:
    drop-shadow(0 8px 16px rgba(0, 0, 0, 0.8))
    drop-shadow(0 0 18px rgba(96, 165, 250, 0.4));
}

.model-thumb-fallback {
  color: var(--accent);
  opacity: 0.35;
  position: relative;
  z-index: 1;
}

.model-thumb-fallback svg { width: 44px; height: 44px; }

.model-body {
  min-width: 0;
  padding: 12px 14px 12px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
}

.model-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.model-key {
  font-family: 'Geist Mono', monospace;
  font-size: 9.5px;
  color: var(--text-muted);
  word-break: break-all;
  opacity: 0.55;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.model-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px dashed var(--border);
}

.model-cost {
  font-family: 'Geist Mono', monospace;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 12px rgba(251, 191, 36, 0.3);
}

.model-upgrade {
  font-family: 'Geist Mono', monospace;
  font-size: 9px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  background: rgba(96, 165, 250, 0.1);
  padding: 3px 8px;
  border-radius: 100px;
  border: 1px solid rgba(96, 165, 250, 0.2);
}

.mesh-sidebar-info {
  margin-top: 20px;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
}

.mesh-sidebar-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mesh-sidebar-title svg { width: 16px; height: 16px; }

.mesh-sidebar-title span {
  margin-left: auto;
  background: rgba(96, 165, 250, 0.15);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-family: 'Geist Mono', monospace;
}

.mesh-sidebar-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 6px;
}

.mesh-sidebar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  transition: all 0.15s;
}

.mesh-sidebar-row:hover {
  border-color: var(--border-hover);
  background: var(--bg-card);
}

.mesh-sidebar-row.stock .mesh-dot { background: var(--green); box-shadow: 0 0 8px var(--green); }
.mesh-sidebar-row.aftermarket .mesh-dot { background: var(--orange); box-shadow: 0 0 8px var(--orange); }

.mesh-sidebar-row .mesh-name {
  flex: 1;
  color: var(--text-secondary);
}

.mesh-type-tag {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}

.mesh-sidebar-row.stock .mesh-type-tag {
  background: rgba(74, 222, 128, 0.15);
  color: var(--green);
}

.mesh-sidebar-row.aftermarket .mesh-type-tag {
  background: rgba(251, 146, 60, 0.15);
  color: var(--orange);
}

.mesh-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 14px;
}

.mesh-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.mesh-block-header {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg, rgba(96, 165, 250, 0.04), transparent);
}

.mesh-block-header h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 8px;
}

.mesh-counts { display: flex; gap: 6px; }

.mesh-tag {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 100px;
  font-family: 'Geist Mono', monospace;
}

.mesh-tag.stock {
  background: rgba(74, 222, 128, 0.12);
  color: var(--green);
  border: 1px solid rgba(74, 222, 128, 0.25);
}

.mesh-tag.after {
  background: rgba(251, 146, 60, 0.12);
  color: var(--orange);
  border: 1px solid rgba(251, 146, 60, 0.25);
}

.mesh-list { padding: 8px 0; }

.mesh-row {
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  transition: background 0.15s;
}

.mesh-row:hover { background: var(--bg-card-hover); }

.mesh-row.stock { color: var(--green); }
.mesh-row.after { color: var(--orange); }

.mesh-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

.mesh-name { color: var(--text-secondary); }

.modal-enter-active, .modal-leave-active { transition: all 0.4s var(--transition); }
.modal-enter-active .modal { transition: all 0.4s var(--transition-bounce); }
.modal-enter-from { opacity: 0; }
.modal-enter-from .modal { transform: translateY(40px) scale(0.96); }
.modal-leave-to { opacity: 0; }
.modal-leave-to .modal { transform: scale(0.96); }

.footer {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
  font-size: 12px;
  border-top: 1px solid var(--border);
  margin-top: auto;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .header-inner { padding: 12px 20px; }
  .header-stats { display: none; }
  .credit-by { display: none; }
  .credit-link { padding: 8px 12px; }
  .main { padding: 0 20px; }
  .hero { padding: 50px 0 40px; margin: 0 -20px; }
  .hero-content { padding: 0 20px; }
  .hero-title { font-size: 36px; }
  .hero-logo-img { max-width: 320px; }
  .hero-logo-embed { margin-bottom: 20px; border-radius: 12px; }
  .modal-hero { padding: 60px 24px 30px; }
  .modal-title, .modal-model-name { font-size: 24px; }
  .modal-section { padding: 24px; }
  .image-gallery { padding: 0 24px 24px; }
  .perf-bars { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
  .bikes-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; }
  .models-list { grid-template-columns: 1fr; padding: 10px; }
  .model-row { grid-template-columns: 110px 1fr; min-height: 100px; }
  .model-thumb { width: 110px; height: 100px; }
  .model-body { padding: 10px 12px 10px 0; }
  .model-name { font-size: 13px; }
  .sort-bar { padding: 12px; }
  .sort-options { gap: 4px; }
  .sort-btn { padding: 6px 10px; font-size: 10px; }
}

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb {
  background: var(--bg-card);
  border-radius: 5px;
  border: 2px solid var(--bg-base);
}
::-webkit-scrollbar-thumb:hover { background: var(--accent-dark); }
