.soundboard {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  padding: 5px;
}
.fancy-fart-btn {
  display: inline-block;
  background: linear-gradient(90deg,#bada55 70%,#eaff6b 100%);
  color: #0b5285;
  font-family: 'Original Surfer', cursive, sans-serif;
  font-size: 1em;
  font-weight: 600;
  padding: 15px 24px 15px 24px;
  border: 2.5px solid #0b5285;
  margin: 0 0 2px 0;
  box-shadow: 2px 2px 0 #0b5285;
  text-decoration: none;
  transition: background 0.2s, color 0.18s, transform 0.13s;
  position: relative;
}
.fancy-fart-btn:hover {
  background: linear-gradient(90deg,#eaff6b 60%,#bada55 100%);
  color: #1555f0;
  text-decoration: none;
  transform: scale(1.04) rotate(-1.5deg);
  box-shadow: 3px 3px 0 #375fd6;
}
html.dark-mode .fancy-fart-btn {
  background: linear-gradient(95deg,#375fd6 60%,#284c76 100%) !important;
  color: #eaff6b !important;
  border: 2.5px solid #bada55 !important;
  border-radius: 1.8em;
  box-shadow: 2px 2px 0 #bada55 !important;
}
html.dark-mode .fancy-fart-btn:hover {
  background: linear-gradient(92deg,#bada55 70%,#6ee56f 100%) !important;
  color: #284c76 !important;
  border-color: #bada55 !important;
  box-shadow: 4px 4px 0 #375fd6 !important;
}
.fart-button {
  position: relative;
  width: 150px;
  height: 100px;
  background: radial-gradient(circle at 30% 30%, #7ec850, #4a7c2f);
  border: 4px solid #2d4a1f;
  border-radius: 15px;
  box-shadow: 
    0 8px 0 #1a2e13,
    0 8px 20px rgba(0,0,0,0.3),
    inset 0 2px 0 rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.2s;
  overflow: visible;
  font-family: 'Original Surfer', cursive, sans-serif;
  font-size: 0.90em;
  font-weight: 600;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  margin: 10px 0 0;
  outline: none;
}
.fart-button::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 3px dashed rgba(255,255,255,0.3);
  border-radius: 10px;
  pointer-events: none;
}
.fart-button:hover {
  transform: translateY(-3px) scale(1.05);
  color: #dafa72;
  box-shadow: 
    0 12px 0 #1a2e13,
    0 10px 10px rgba(0,0,0,0.4);
  animation: pressure-build 0.6s infinite;
}
@keyframes pressure-build {
  0%, 100% { transform: translateY(-3px) scale(1.05); }
  50% { transform: translateY(-3px) scale(1.08); }
}

.fart-button:active {
  transform: translateY(4px) scale(0.98);
  box-shadow: 
    0 4px 0 #1a2e13,
    0 6px 10px rgba(0,0,0,0.2);
}
html.dark-mode .fart-button {
  background: radial-gradient(circle at 30% 30%, #375fd6, #1e3a6b) !important;
  border: 4px solid #bada55 !important;
  box-shadow: 
    0 8px 0 #0a1e3d,
    0 8px 20px rgba(186, 218, 85, 0.3),
    inset 0 2px 0 rgba(234, 255, 107, 0.2) !important;
  color: #eaff6b !important;
}
html.dark-mode .fart-button:hover {
  box-shadow: 
    0 12px 0 #0a1e3d,
    0 10px 10px rgba(186, 218, 85, 0.4) !important;
}
html.dark-mode .fart-button:active {
  box-shadow: 
    0 4px 0 #0a1e3d,
    0 6px 10px rgba(186, 218, 85, 0.2) !important;
}
/* ============== STINK CLOUD ANIMATION =================== */
.stink-cloud {
  position: fixed;
  pointer-events: none;
  width: 70px;
  height: 70px;
  opacity: 0;
  transform: translate(-50%, -50%);
  will-change: transform, opacity;
  z-index: 10000;
}
.stink-cloud::before,
.stink-cloud::after {
  content: '';
  position: absolute;
  background: radial-gradient(circle, rgba(126, 200, 80, 0.9), rgba(74, 124, 47, 0.7));
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(126, 200, 80, 0.5);
}
.stink-cloud::before {
  width: 70px;
  height: 70px;
  top: 0;
  left: 0;
}
.stink-cloud::after {
  width: 50px;
  height: 50px;
  top: 20px;
  left: 40px;
}
html.dark-mode .stink-cloud::before,
html.dark-mode .stink-cloud::after {
  background: radial-gradient(circle, rgba(186, 218, 85, 0.9), rgba(126, 200, 80, 0.7)) !important;
  box-shadow: 0 0 25px rgba(186, 218, 85, 0.6) !important;
}
.stink-cloud.active {
  animation: float-away 2.5s ease-out forwards;
}
@keyframes float-away {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.2) rotate(0deg);
  }
  10% {
    opacity: 1;
  }
  30% {
    opacity: 0.95;
  }
  70% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -400%) scale(1.8) rotate(40deg);
  }
}
/* ============== CATEGORY TOGGLE =================== */
.category-section {
  margin: 5px 0;
}
.category-header {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 15px;
  background: linear-gradient(90deg, #bada55 70%, #eaff6b 100%);
  border: 3px solid #0b5285;
  margin-bottom: 15px;
  transition: all 0.3s;
  user-select: none;
}
.category-header:hover {
  background: linear-gradient(90deg, #eaff6b 60%, #bada55 100%);
  transform: scale(1.02);
}
html.dark-mode .category-header {
  background: linear-gradient(95deg, #375fd6 60%, #284c76 100%) !important;
  border: 3px solid #bada55 !important;
  border-radius: 12px;
}
html.dark-mode .category-header:hover {
  background: linear-gradient(92deg, #bada55 70%, #6ee56f 100%) !important;
  color: #0b5285;
}
.category-header h2 {
  margin: 0;
  color: #0b5285;
  font-size: 1rem;
  font-family: 'Original Surfer', cursive, sans-serif;
}
html.dark-mode .category-header h2 {
  color: #eaff6b !important;
}
html.dark-mode .category-header:hover h2 {
  color: #284c76 !important;
}
html.dark-mode .category-header:hover .category-toggle {
  color: #284c76 !important;
}
.category-toggle {
  font-size: 24px;
  color: #0b5285;
  margin-left: 15px;
  transition: transform 0.3s;
}
html.dark-mode .category-toggle {
  color: #bada55 !important;
}
.category-toggle.collapsed {
  transform: rotate(-90deg);
}
.category-content {
  max-height: 5000px;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out, opacity 0.3s;
  opacity: 1;
}
.category-content.collapsed {
  max-height: 0;
  opacity: 0;
}
.category-description {
  margin: 5px;
  font-style: italic;
  text-align: center;
}
h1, h3 {
  margin: 10px;
}