
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap');

body {
  background: linear-gradient(145deg, #0d0d0d, #1a1a1a);
  color: #f0f0f0;
  font-family: 'Orbitron', sans-serif;
  margin: 0;
  padding: 20px;
}

h1 {
  text-align: center;
  font-size: 40px;
  color: #7FFFD4;
  margin-bottom: 30px;
  text-shadow: 0 0 10px rgba(127, 255, 212, 0.6);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.filters select {
  padding: 10px 14px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #7FFFD4;
  background: #0f0f0f;
  color: #7FFFD4;
  font-family: 'Orbitron', sans-serif;
}

.vehicle-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.vehicle-card {
  width: 240px;
  background: rgba(32, 32, 32, 0.8);
  border-radius: 20px;
  padding: 12px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 30px rgba(0, 255, 180, 0.1);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(0, 255, 180, 0.2);
}

.vehicle-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(0, 255, 180, 0.6);
}

.vehicle-card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 10px;
}

.vehicle-card .info {
  font-size: 14px;
  line-height: 1.6;
  color: #e0e0e0;
}

.vehicle-card .info strong {
  display: block;
  font-size: 16px;
  color: #7FFFD4;
  margin-bottom: 6px;
}
.footer {
  margin-top: 60px;
  padding: 30px 20px;
  text-align: center;
  font-size: 14px;
  background: rgba(0, 255, 180, 0.05);
  border-top: 1px solid rgba(0, 255, 180, 0.1);
  border-radius: 20px 20px 0 0;
  color: #7FFFD4;
  box-shadow: 0 -2px 10px rgba(0, 255, 180, 0.1);
}

.footer a {
  color: #7FFFD4;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.footer a:hover {
  color: #ffffff;
  text-shadow: 0 0 5px rgba(127, 255, 212, 0.8);
}

.main-menu {
  background: rgba(0, 255, 180, 0.06);
  border-bottom: 1px solid rgba(0, 255, 180, 0.1);
  padding: 12px 0;
  margin-bottom: 40px;
  box-shadow: 0 2px 15px rgba(0, 255, 180, 0.1);
  border-radius: 0 0 14px 14px;
  text-align: center;
}

.main-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  gap: 30px;
}

.main-menu li a {
  color: #7FFFD4;
  font-family: 'Orbitron', sans-serif;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  padding: 8px 14px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.main-menu li a:hover {
  background-color: rgba(127, 255, 212, 0.1);
  box-shadow: 0 0 10px rgba(127, 255, 212, 0.3);
  color: #ffffff;
}

