
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #e6edf5;
}


.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px;
}

h1 {
  margin-bottom: 28px;
  font-size: 2.2rem;
  font-weight: 800;
  color: #38bdf8;
  text-align: center;
  letter-spacing: 1px;
}


.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}


.card {
  background: rgba(20, 26, 33, 0.9);
  border: 1px solid rgba(148,163,184,0.15);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.8);
}


.thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #0a0e12;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}


.card-body {
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.name {
  font-weight: 600;
  font-size: 1rem;
  color: #f8fafc;
}

.price {
  font-weight: 700;
  font-size: 1rem;
  color: #22c55e;
}


@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }
  .grid {
    gap: 16px;
  }
}
