#festive-cal {
  position: fixed; top: 160px; right: 12px; z-index: 99992;
  font: 500 12px/1.3 system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--game-fg, #f4f1ea);
}
@media (max-width: 640px) { #festive-cal { top: 144px; right: 8px; transform: scale(0.92); transform-origin: top right; } }
#festive-cal .fc-pill {
  background: var(--game-bg, rgba(15,18,24,0.92));
  border: 1px solid rgba(255,255,255,0.1);
  color: inherit; cursor: pointer;
  padding: 6px 10px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 6px;
  box-shadow: 0 6px 20px -8px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  max-width: 220px;
}
#festive-cal .fc-pill:hover { border-color: var(--game-accent, #ffb547); }
#festive-cal .fc-emoji { font-size: 14px; }
#festive-cal .fc-text { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
#festive-cal .fc-panel {
  position: absolute; top: calc(100% + 6px); right: 0;
  width: 260px; max-width: 80vw;
  background: var(--game-bg, rgba(15,18,24,0.95));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 12px;
  box-shadow: 0 12px 40px -12px rgba(0,0,0,0.6);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
#festive-cal .fc-panel[hidden] { display: none; }
#festive-cal .fc-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; font-size: 13px; }
#festive-cal .fc-close {
  background: rgba(255,255,255,0.08); border: none; color: inherit;
  width: 22px; height: 22px; border-radius: 50%; cursor: pointer; font-size: 14px; line-height: 1;
}
#festive-cal .fc-list { display: flex; flex-direction: column; gap: 4px; margin-bottom: 10px; }
#festive-cal .fc-row { display: flex; align-items: center; gap: 8px; padding: 4px 6px; border-radius: 6px; }
#festive-cal .fc-row:hover { background: rgba(255,255,255,0.04); }
#festive-cal .fc-row-emoji { font-size: 14px; }
#festive-cal .fc-row-label { flex: 1; }
#festive-cal .fc-row-days { color: var(--game-muted, #9aa1ad); font-size: 11px; }
#festive-cal .fc-prefs {
  display: flex; gap: 6px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 8px; font-size: 11px;
}
#festive-cal .fc-prefs label {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 8px; border-radius: 999px;
  background: rgba(255,255,255,0.05); cursor: pointer;
}
#festive-cal .fc-prefs input { accent-color: var(--game-accent, #ffb547); }
@media (prefers-reduced-motion: reduce) { #festive-cal * { transition: none !important; animation: none !important; } }
