/* ================================
   CHRISTMAS FESTIVAL MODE 🎄
   ================================ */

/* Snow container */
#snow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

/* Individual snowflake */
.snowflake {
  position: absolute;
  top: -10px;
  color: #fff;
  font-size: 12px;
  opacity: 0.8;
  animation: fall linear infinite;
  user-select: none;
}

/* Falling animation */
@keyframes fall {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(110vh) rotate(360deg);
  }
}

/* Festive greeting strip */
#festive-banner {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(90deg, #b11226, #0b7a3e);
  color: #fff;
  text-align: center;
  padding: 8px 12px;
  font-size: 14px;
  z-index: 10000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

#festive-banner span {
  font-weight: 500;
}

#festive-close {
  position: absolute;
  right: 12px;
  top: 6px;
  cursor: pointer;
  font-weight: bold;
}
