/* ===== MUTE Cookie Consent Bar ===== */
#mute-cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 24px;
  background: rgba(18, 18, 18, 0.96);
  color: #d0d0d0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 13px;
  line-height: 1.4;
  box-shadow: 0 -1px 8px rgba(0, 0, 0, 0.25);
}
.mute-cc-text { flex: 1; }
#mute-cookie-bar button {
  flex-shrink: 0;
  padding: 5px 16px;
  border-radius: 4px;
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  transition: opacity 0.15s;
  white-space: nowrap;
}
#mute-cookie-bar button:hover { opacity: 0.8; }
#mute-cc-accept { background: #00838f; color: #fff; border: none; }
#mute-cc-decline { background: transparent; color: #888; border: 1px solid #555; }
@media (max-width: 560px) {
  #mute-cookie-bar { flex-wrap: wrap; gap: 8px; padding: 10px 16px; }
  .mute-cc-text { width: 100%; }
}
