<style>
    /* General Page Layout & Shared Styles */
.container {
  max-width: 1200px !important;
  margin: 50px auto 0 auto !important;
  padding: 8px !important;
  text-align: left !important;
  color: white !important;
  filter: brightness(100%) !important;
}

h2 {
  font-size: 24px !important;
  font-weight: 200 !important;
  margin-bottom: 24px !important;
  color: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

/* Base Glass Card Style */
.glass-card {
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  background-color: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.3) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.glass-card:hover {
  background-color: rgba(255, 255, 255, 0.08) !important;
  transform: translateY(-2px) !important;
}

/* Base Glass Icon Style (e.g., Like Buttons) */
.glass-icon {
  width: 36px !important;
  height: 36px !important;
  border-radius: 9999px !important;
  background: rgba(0, 0, 0, 0.15) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: white !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
  cursor: pointer !important;
  transition: transform 0.2s ease, background 0.3s ease;
  border: none !important;
}

.glass-icon:hover {
  transform: scale(1.1) !important;
  background: rgba(255, 255, 255, 0.25) !important;
}

.glass-icon.liked {
  background-color: #FF3366 !important;
  color: white !important;
}

.glass-icon svg {
  width: 18px !important;
  height: 18px !important;
  stroke-width: 1.6 !important;
}

/* Generic Filter Button */
.filter-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 8px 16px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
  text-align: center !important;
  gap: 8px !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  border: none !important;
  white-space: nowrap !important;
}

.filter-button.active {
  background-color: #ffffff !important;
  color: #000000 !important;
}

.filter-button:hover:not(.active) {
  background-color: rgba(255, 255, 255, 0.15) !important;
}

/* Generic Like/Category Filter Buttons */
.like-filter-buttons {
  display: flex !important;
  gap: 12px !important; /* Resolved conflict to 12px */
  margin-top: 16px !important;
  margin-left: 24px !important;
  margin-bottom: 16px !important;
  flex-wrap: wrap !important;
}

.like-filter-btn {
  padding: 7px 16px !important; /* Resolved conflict */
  font-size: 13px !important;
  font-weight: 500 !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important; /* Resolved conflict */
  background: rgba(255, 255, 255, 0.05) !important; /* Resolved conflict */
  color: rgba(255, 255, 255, 0.8) !important; /* Resolved conflict */
  border-radius: 20px !important; /* Resolved conflict */
  cursor: pointer !important;
  transition: all 0.2s ease !important; /* Resolved conflict */
  font-family: 'Figtree', sans-serif !important;
  white-space: nowrap;
}

.like-filter-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: #ffffff !important;
}

.like-filter-btn.active {
  background: white !important;
  color: black !important;
  border-color: white !important;
  font-weight: 600 !important;
}

.like-filter-btn.disabled {
  opacity: 0.4 !important;
  pointer-events: none !important;
  cursor: default !important;
  background: rgba(255, 255, 255, 0.03) !important;
  color: rgba(255, 255, 255, 0.3) !important;
}
</style>