body {
  font-family: Arial, sans-serif;
  background-color: #1e1e1e;
  color: #e0e0e0;
  margin: 0;
  padding: 1rem;
}

h1 {
  text-align: center;
  margin-bottom: 1rem;
  color: #ffffff;
}

#resultsCount {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #cccccc;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.filters input,
.filters select {
  padding: 0.5rem 1rem;
  border: 2px solid #333;
  border-radius: 8px;
  background: #2b2b2b;
  color: #e0e0e0;
  font-size: 1rem;
  outline: none;
  transition: 0.2s ease;
}

.filters input:focus,
.filters select:focus {
  border-color: #7a5cf5;
  background: #353535;
}

.catalog {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.plushie-card {
  text-decoration: none;
  border-radius: 16px;
  background: #2a2a2a;
  box-shadow: 0 4px 8px rgba(0,0,0,0.4);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
  padding: 0.5rem;
}

.plushie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.6);
}

.plushie-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 12px;
}

.plushie-card p {
  padding-top: 0.5rem;
  font-weight: bold;
  color: #ffffff;
}

body > img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  border-radius: 12px;
}

body > p {
  text-align: center;
  max-width: 600px;
  margin: 0.5rem auto;
}

a {
  color: #7a5cf5;
}

a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .filters {
    margin: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .filters input,
  .filters select {
    padding: 8px;
    font-size: 1rem;
    border: 1px solid #444;
    border-radius: 6px;
  }
}

.profile-container {
  max-width: 700px;
  margin: 2rem auto;
  background: #1e1e1e;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.profile-container h1 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 2.2rem;
  color: #ffffff;
}

.profile-container img {
  width: 320px;
  max-width: 90%;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.profile-container p {
  margin: 0.5rem 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

.profile-container strong {
  color: #bb86fc;
}

.profile-container a {
  display: inline-block;
  margin-top: 1.5rem;
  text-decoration: none;
  color: #bb86fc;
  font-weight: bold;
  transition: color 0.2s;
}

.profile-container a:hover {
  color: #d2a8ff;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .filters {
    margin: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .filters input,
  .filters select {
    padding: 8px;
    font-size: 1rem;
    border: 1px solid #444;
    border-radius: 6px;
  }
}
