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

/* Individual snowflakes */
.snow {
  position: absolute;
  top: -10px;
  background: rgb(132, 171, 151);
  border-radius: 50%;
  opacity: 0.8;
  animation-name: fall;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

/* Random sizes, positions & speeds */
.snow:nth-child(n) {
  width: calc(4px + 4 * random());
  height: calc(4px + 4 * random());
  left: calc(100% * random());
  animation-duration: calc(10s + 10 * random());
  animation-delay: calc(-20s * random());
}

/* Falling animation */
@keyframes fall {
  0% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(110vh);
  }
}

/* =========================
   CHRISTMAS BANNER (DESIGNED)
========================= */
.christmas-banner {
  position: fixed;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #8b0000, #c1121f);
  color: #fff;
  padding: 14px 26px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 600;
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow:
    0 6px 20px rgba(0,0,0,0.3),
    inset 0 0 0 2px rgba(255,255,255,0.15);
  pointer-events: none;

  animation:
    slideDown 1s ease-out,
    fadeOut 1s ease-in forwards;
  animation-delay:
    0s,
    9s;
}

.christmas-banner strong {
  color: #ffe066;
}

.banner-text {
  white-space: nowrap;
}

.banner-tree {
  font-size: 18px;
}

.banner-snow {
  font-size: 14px;
  opacity: 0.8;
}

.banner-cap {
  font-size: 18px;
}

/* =========================
   CHRISTMAS TREE GARLAND
========================= */
.christmas-garland {
  position: fixed;
  top: 5px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 18px;
  z-index: 10000;
  pointer-events: none;
}

.christmas-garland .tree {
  font-size: 20px;
  animation: floatTree 3s ease-in-out infinite;
}

/* Stagger movement */
.christmas-garland .tree:nth-child(odd) {
  animation-delay: 1.5s;
}

@keyframes floatTree {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(6px); }
  100% { transform: translateY(0); }
}
