* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #333;
  min-height: 100vh;
  padding: 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

h1 {
  color: white;
  text-align: center;
  margin-bottom: 30px;
  font-size: 2.5em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  background: white;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-group label {
  font-weight: 600;
  color: #333;
  font-size: 0.95em;
}

.filter-group input,
.filter-group select {
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 1em;
  transition: all 0.3s ease;
  font-family: inherit;
}

.filter-group input:focus,
.filter-group select:focus {
  outline: none;
  border-color: #ff6b6b;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.filter-group input::placeholder {
  color: #999;
}

#reset-btn {
  padding: 12px 24px;
  background: #ff6b6b;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-end;
}

#reset-btn:hover {
  background: #ee5a52;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.results-info {
  text-align: center;
  color: white;
  margin-bottom: 20px;
  font-size: 1.1em;
  font-weight: 500;
}

#result-count {
  color: #ffd700;
  font-weight: 700;
}

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

.band-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  border-left: 5px solid #ff6b6b;
}

.band-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.25);
}

.band-info h3 {
  color: #1a1a2e;
  margin-bottom: 12px;
  font-size: 1.4em;
}

.band-info p {
  color: #555;
  margin-bottom: 8px;
  line-height: 1.6;
  font-size: 0.95em;
}

.band-info strong {
  color: #333;
}

.no-results {
  text-align: center;
  color: white;
  font-size: 1.2em;
  padding: 40px;
  grid-column: 1 / -1;
}

@media (max-width: 768px) {
  .filters {
    grid-template-columns: 1fr;
  }

  #reset-btn {
    align-self: stretch;
  }

  h1 {
    font-size: 1.8em;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }
}
