* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.boosters-poke {
  padding: 40px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.collection-filter {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  padding: 20px 0;
}

.filter-btn {
  background: transparent;
  border: 3px solid #ff3e6c;
  color: #ff3e6c;
  padding: 12px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Poppins", sans-serif;
}

.filter-btn:hover {
  background: rgba(255, 62, 108, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 62, 108, 0.3);
}

.filter-btn.active {
  background: #fff;
  color: #1a1a1a;
  border-color: #fff;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.collections-container {
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.collection-section {
  margin-bottom: 60px;
}

.collection-header {
  text-align: center;
  margin-bottom: 30px;
}

.collection-link {
  display: inline-block;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
  text-decoration: none;
  outline: none;
}

.collection-link:hover {
  transform: scale(1.05);
  opacity: 0.8;
}

.collection-link:focus {
  outline: none;
}

.collection-logo {
  max-width: 300px;
  height: auto;
  display: block;
  margin: 0 auto;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}

.packs-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
}

.pack-link {
  display: inline-block;
  cursor: pointer;
  transition: transform 0.3s ease;
  text-decoration: none;
  outline: none;
}

.pack-link:hover {
  transform: translateY(-10px);
}

.pack-image {
  width: 240px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: block;
}

.pack-link:hover .pack-image {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  transform: scale(1.05);
}

.pack-series {
  font-size: 12px;
  color: #888;
}

@media (max-width: 768px) {
  .packs-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    padding: 20px 20px;
    gap: 20px;
  }

  header {
    padding: 15px 20px;
  }

  .search-bar {
    display: none;
  }
}
