body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #0e0e1a;
  color: #fff;
  margin: 0;
  padding: 0;
}

header {
  padding: 30px 20px 10px;
  background-color: #1a1a2e;
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #ffffff;
  letter-spacing: 1px;
  text-shadow: 0 0 10px #6c5ce7;
}

#searchInput {
  padding: 12px 20px;
  width: 60%;
  max-width: 500px;
  border-radius: 12px;
  border: none;
  outline: none;
  font-size: 1rem;
  background-color: #2c2c3e;
  color: white;
  box-shadow: 0 0 10px rgba(108, 92, 231, 0.4);
}

.filters {
  margin-top: 15px;
}

.filter-btn {
  background: none;
  border: 1px solid #666;
  color: white;
  padding: 8px 14px;
  margin: 5px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: #6c5ce7;
  border-color: #6c5ce7;
}

main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.frame-card {
  background-color: #202040;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  width: 200px;
  box-shadow: 0 0 10px #000;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s;
}

.frame-card:hover {
  transform: scale(1.1);
  z-index: 10;
  box-shadow: 0 0 20px rgba(108, 92, 231, 0.5);
}

.frame-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.frame-card h3 {
  margin: 0;
  font-size: 1.2em;
}

.frame-card .price {
  margin: 5px 0;
  color: #aaa;
  font-size: 0.9em;
}
