/* Christmas Banner */
/* Christmas Banner */
.christmas-banner {
    background-color: #d42426; /* Christmas Red */
    background-image: repeating-linear-gradient(
        45deg,
        #d42426,
        #d42426 10px,
        #b30000 10px,
        #b30000 20px
    );
    color: #ffffff;
    text-align: center;
    padding: 12px 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    position: relative;
    z-index: 10000;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border-bottom: 2px solid #fff;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.christmas-banner:hover {
    transform: scale(1.01);
}

.christmas-banner span {
    display: inline-block;
    margin: 0 10px;
    animation: bounce 2s infinite;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-5px);}
    60% {transform: translateY(-3px);}
}

/* Santa Sleigh Animation (CSS only representation) */
.christmas-banner::before {
    content: '🎅 🦌 🦌';
    position: absolute;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    animation: sleigh-ride 15s linear infinite;
}

@keyframes sleigh-ride {
    0% { left: -100px; }
    100% { left: 110%; }
}

/* Snowflakes Canvas */
#snowflake-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 99999;
}

/* Music Player */
.christmas-music-player {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 10001;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid #d42426;
}

.music-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: #d42426;
  padding: 0;
  line-height: 1;
}

.music-label {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #333;
}
