<style>
/* Present Box */
.present-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  width: 100%;
  background: linear-gradient(135deg, #1d3557 0%, #457b9d 100%);
}

.present {
  position: relative;
  width: 60px;
  height: 50px;
  background: #e63946;
  border-radius: 4px;
  animation: present-bounce 1s ease-in-out infinite;
}

.present::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 100%;
  background: #f4a261;
}

.present::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 14px;
  background: #f4a261;
}

.present-lid {
  position: absolute;
  top: -12px;
  left: -4px;
  width: 68px;
  height: 14px;
  background: #c1121f;
  border-radius: 4px;
  animation: lid-wobble 1s ease-in-out infinite;
  transform-origin: bottom center;
}

.present-bow {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 16px;
  animation: lid-wobble 1s ease-in-out infinite;
}

.present-bow::before,
.present-bow::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 14px;
  background: #f4a261;
  border-radius: 50% 50% 10% 10%;
  top: 6px;
}

.present-bow::before {
  left: -6px;
  transform: rotate(-20deg);
}

.present-bow::after {
  right: -6px;
  transform: rotate(20deg);
}

.present-bow-knot {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: #e76f51;
  border-radius: 50%;
  animation: lid-wobble 1s ease-in-out infinite;
}

@keyframes present-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes lid-wobble {
  0%, 100% { transform: translateX(-50%) rotate(-3deg); }
  50% { transform: translateX(-50%) rotate(3deg); }
}
/* snowman2 */
.snowman2-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  width: 100%;
  background: linear-gradient(to bottom, #1a1a2e 0%, #16213e 100%);
}

.snowman2 {
  position: relative;
  width: 80px;
  height: 100px;
}

.snowman2-body-bottom {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: inset -5px -5px 15px rgba(0, 0, 0, 0.1);
}

.snowman2-body-top {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  box-shadow: inset -5px -5px 15px rgba(0, 0, 0, 0.1);
}

.snowman2-head {
  position: absolute;
  bottom: 65px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
  box-shadow: inset -3px -3px 10px rgba(0, 0, 0, 0.1);
}

.snowman2-hat {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 20px;
  background: #1a1a2e;
  border-radius: 3px 3px 0 0;
}

.snowman2-hat::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 6px;
  background: #1a1a2e;
  border-radius: 2px;
}

.snowman2-hat::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 5px;
  background: #e63946;
}

.snowman2-eye {
  position: absolute;
  bottom: 75px;
  width: 5px;
  height: 5px;
  background: #1a1a2e;
  border-radius: 50%;
}

.snowman2-eye--left { left: 28px; }
.snowman2-eye--right { right: 28px; }

.snowman2-nose {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid #f4a261;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

.snowman2-arm {
  position: absolute;
  bottom: 50px;
  width: 25px;
  height: 4px;
  background: #5c4033;
  border-radius: 2px;
  transform-origin: left center;
}

.snowman2-arm--left {
  left: -15px;
  transform: rotate(-30deg);
  animation: wave-arm 0.8s ease-in-out infinite;
  transform-origin: right center;
}

.snowman2-arm--right {
  right: -15px;
  transform: rotate(30deg);
}

.snowman2-button {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #1a1a2e;
  border-radius: 50%;
}

.snowman2-button--top { bottom: 52px; }
.snowman2-button--middle { bottom: 43px; }
.snowman2-button--bottom { bottom: 34px; }

@keyframes wave-arm {
  0%, 100% { transform: rotate(-30deg); }
  50% { transform: rotate(-70deg); }
}
/* Christmas Bell */
.bell-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 15px;
  min-height: 100%;
  width: 100%;
  background: linear-gradient(135deg, #2d6a4f 0%, #1b4332 100%);
}

.bell-wrapper {
  animation: bell-swing 1.5s ease-in-out infinite;
  transform-origin: top center;
}

.bell {
  position: relative;
  width: 50px;
  height: 45px;
  background: linear-gradient(135deg, #ffd700 0%, #daa520 50%, #b8860b 100%);
  border-radius: 0 0 25px 25px;
  box-shadow: inset -5px 0 10px rgba(0, 0, 0, 0.2);
}

.bell::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 12px;
  background: linear-gradient(135deg, #ffd700 0%, #b8860b 100%);
  border-radius: 6px 6px 0 0;
}

.bell-hanger {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border: 4px solid #228b22;
  border-radius: 50%;
  background: transparent;
}

.bell-hanger::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #dc143c;
  border-radius: 50%;
}

.bell-clapper {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #b8860b 0%, #8b6914 100%);
  border-radius: 50%;
  animation: clapper-swing 1.5s ease-in-out infinite;
}

.bell-ribbon {
  position: absolute;
  top: -10px;
  left: -15px;
  width: 20px;
  height: 30px;
  background: #dc143c;
  clip-path: polygon(100% 0, 100% 100%, 50% 70%, 0 100%, 0 0);
}

.bell-ribbon--right {
  left: auto;
  right: -15px;
  transform: scaleX(-1);
}

@keyframes bell-swing {
  0%, 100% { transform: rotate(-15deg); }
  50% { transform: rotate(15deg); }
}

@keyframes clapper-swing {
  0%, 100% { transform: translateX(-50%) translateX(-5px); }
  50% { transform: translateX(-50%) translateX(5px); }
}
/* Twinkling Star */
.star-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  width: 100%;
  background: linear-gradient(to bottom, #0f0c29 0%, #302b63 50%, #24243e 100%);
}

.star-wrapper {
  position: relative;
  animation: star-pulse 2s ease-in-out infinite;
}

.xmas-star {
  position: relative;
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 18px solid #ffd700;
}

.xmas-star::before {
  content: "";
  position: absolute;
  top: 6px;
  left: -25px;
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-top: 18px solid #ffd700;
}

.star-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  animation: glow-flicker 1.5s ease-in-out infinite;
}

.star-sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  animation: sparkle 1s ease-in-out infinite;
}

.star-sparkle:nth-child(2) { top: -20px; left: 0; animation-delay: 0.2s; }
.star-sparkle:nth-child(3) { top: 10px; left: -30px; animation-delay: 0.4s; }
.star-sparkle:nth-child(4) { top: 10px; right: -30px; animation-delay: 0.6s; }
.star-sparkle:nth-child(5) { bottom: -15px; left: -15px; animation-delay: 0.8s; }
.star-sparkle:nth-child(6) { bottom: -15px; right: -15px; animation-delay: 0.3s; }

@keyframes star-pulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.1) rotate(5deg); }
}

@keyframes glow-flicker {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0); }
  50% { opacity: 1; transform: scale(1); }
}
	/* Dancing Candy Cane */
.candy-cane-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  width: 100%;
  background: linear-gradient(135deg, #1d3557 0%, #457b9d 100%);
}

.candy-cane {
  position: relative;
  width: 20px;
  height: 70px;
  background: repeating-linear-gradient(
    180deg,
    #fff 0px,
    #fff 8px,
    #e63946 8px,
    #e63946 16px
  );
  border-radius: 4px;
  animation: candy-dance 1s ease-in-out infinite;
  transform-origin: bottom center;
}

.candy-cane::before {
  content: "";
  position: absolute;
  top: -18px;
  right: -10px;
  width: 30px;
  height: 30px;
  border: 10px solid transparent;
  border-top: 10px solid #e63946;
  border-right: 10px solid #e63946;
  border-radius: 0 50% 0 0;
  background: repeating-linear-gradient(
    90deg,
    #fff 0px,
    #fff 4px,
    #e63946 4px,
    #e63946 8px
  );
  background-clip: padding-box;
  transform: rotate(0deg);
}

.candy-cane-shadow {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 10px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  animation: shadow-dance 1s ease-in-out infinite;
}

@keyframes candy-dance {
  0%, 100% { transform: rotate(-10deg); }
  25% { transform: rotate(10deg) translateY(-5px); }
  50% { transform: rotate(-10deg); }
  75% { transform: rotate(10deg) translateY(-5px); }
}

@keyframes shadow-dance {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.3; }
  25%, 75% { transform: translateX(-50%) scale(0.7); opacity: 0.2; }
  50% { transform: translateX(-50%) scale(1); opacity: 0.3; }
}

/* Snowman 2025 */
.2025_snowman-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  width: 100%;
  background: linear-gradient(to bottom, #1a1a2e 0%, #16213e 100%);
}

.2025_snowman {
  position: relative;
  width: 80px;
  height: 100px;
  animation: 2025_snowman-wiggle 2s ease-in-out infinite;
}

.2025_snowman-body-bottom {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: inset -5px -5px 15px rgba(200, 220, 240, 0.5);
}

.2025_snowman-body-top {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  box-shadow: inset -5px -5px 15px rgba(200, 220, 240, 0.5);
}

.2025_snowman-head {
  position: absolute;
  bottom: 65px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
  box-shadow: inset -3px -3px 10px rgba(200, 220, 240, 0.5);
}

.2025_snowman-hat {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 22px;
  background: #1a1a2e;
  border-radius: 3px 3px 0 0;
}

.2025_snowman-hat::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 6px;
  background: #1a1a2e;
  border-radius: 2px;
}

.2025_snowman-hat::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 5px;
  background: #e63946;
}

.2025_snowman-eye {
  position: absolute;
  bottom: 75px;
  width: 5px;
  height: 5px;
  background: #1a1a2e;
  border-radius: 50%;
}

.2025_snowman-eye--left { left: 28px; }
.2025_snowman-eye--right { right: 28px; }

.2025_snowman-nose {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid #e76f51;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

.2025_snowman-scarf {
  position: absolute;
  bottom: 58px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 8px;
  background: #e63946;
  border-radius: 2px;
}

.2025_snowman-scarf::after {
  content: "";
  position: absolute;
  top: 6px;
  right: -2px;
  width: 10px;
  height: 20px;
  background: #e63946;
  border-radius: 2px;
}

.2025_snowman-arm {
  position: absolute;
  bottom: 50px;
  width: 30px;
  height: 4px;
  background: #5c4033;
  border-radius: 2px;
}

.2025_snowman-arm--left {
  left: -20px;
  transform: rotate(-20deg);
  animation: 2025_arm-wave 1s ease-in-out infinite;
  transform-origin: right center;
}

.2025_snowman-arm--right {
  right: -20px;
  transform: rotate(20deg);
}

.2025_snowman-arm--left::before,
.2025_snowman-arm--right::before {
  content: "";
  position: absolute;
  top: -4px;
  width: 3px;
  height: 8px;
  background: #5c4033;
  border-radius: 2px;
}

.2025_snowman-arm--left::before { left: 2px; transform: rotate(30deg); }
.2025_snowman-arm--right::before { right: 2px; transform: rotate(-30deg); }

.2025_snowman-button {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #1a1a2e;
  border-radius: 50%;
}

.2025_snowman-button--top { bottom: 50px; }
.2025_snowman-button--middle { bottom: 42px; }
.2025_snowman-button--bottom { bottom: 34px; }

@keyframes 2025_snowman-wiggle {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(2deg); }
}

@keyframes 2025_arm-wave {
  0%, 100% { transform: rotate(-20deg); }
  50% { transform: rotate(-50deg); }
}

/* Santa 2025 */
.2025_santa-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  width: 100%;
  background: linear-gradient(135deg, #2d6a4f 0%, #1b4332 100%);
}

.2025_santa {
  position: relative;
  width: 70px;
  height: 90px;
  animation: 2025_santa-bounce 1s ease-in-out infinite;
}

.2025_santa-face {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 45px;
  background: #fdbf60;
  border-radius: 50%;
}

.2025_santa-hat {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 30px;
  background: #e63946;
  border-radius: 50% 50% 0 0;
  clip-path: polygon(15% 100%, 50% 0%, 85% 100%);
}

.2025_santa-hat::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 55px;
  height: 10px;
  background: #fff;
  border-radius: 5px;
}

.2025_santa-hat::after {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
}

.2025_santa-eye {
  position: absolute;
  top: 28px;
  width: 6px;
  height: 6px;
  background: #1a1a2e;
  border-radius: 50%;
}

.2025_santa-eye--left { left: 22px; }
.2025_santa-eye--right { right: 22px; }

.2025_santa-cheek {
  position: absolute;
  top: 35px;
  width: 10px;
  height: 8px;
  background: #f4a4a4;
  border-radius: 50%;
}

.2025_santa-cheek--left { left: 12px; }
.2025_santa-cheek--right { right: 12px; }

.2025_santa-nose {
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: #e8a455;
  border-radius: 50%;
}

.2025_santa-mustache {
  position: absolute;
  top: 42px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 10px;
  background: #fff;
  border-radius: 10px 10px 0 0;
}

.2025_santa-mustache::before,
.2025_santa-mustache::after {
  content: "";
  position: absolute;
  top: 2px;
  width: 15px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
}

.2025_santa-mustache::before { left: -8px; }
.2025_santa-mustache::after { right: -8px; }

.2025_santa-beard {
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 35px;
  background: #fff;
  border-radius: 0 0 50% 50%;
}

.2025_santa-body {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 55px;
  height: 25px;
  background: #e63946;
  border-radius: 10px 10px 0 0;
}

.2025_santa-belt {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 55px;
  height: 8px;
  background: #1a1a2e;
}

.2025_santa-belt::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #ffd700;
  border-radius: 2px;
}

@keyframes 2025_santa-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Christmas Wreath 2025 */
.2025_wreath-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  width: 100%;
  background: linear-gradient(135deg, #1d3557 0%, #0d1b2a 100%);
}

.2025_wreath {
  position: relative;
  width: 70px;
  height: 70px;
  animation: 2025_wreath-sway 3s ease-in-out infinite;
  transform-origin: top center;
}

.2025_wreath-ring {
  position: absolute;
  width: 70px;
  height: 70px;
  border: 14px solid #228b22;
  border-radius: 50%;
  box-shadow: inset 3px 3px 5px rgba(0, 0, 0, 0.3),
              inset -2px -2px 5px rgba(255, 255, 255, 0.1);
}

.2025_wreath-ring::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 3px dotted #2e8b2e;
  border-radius: 50%;
}

.2025_wreath-bow {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 18px;
}

.2025_wreath-bow::before,
.2025_wreath-bow::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 12px;
  background: #e63946;
  border-radius: 50% 50% 20% 20%;
  top: 0;
}

.2025_wreath-bow::before {
  left: -4px;
  transform: rotate(-25deg);
}

.2025_wreath-bow::after {
  right: -4px;
  transform: rotate(25deg);
}

.2025_wreath-bow-center {
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: #c1121f;
  border-radius: 50%;
  z-index: 2;
}

.2025_wreath-bow-tail {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 15px;
  background: #e63946;
  clip-path: polygon(0 0, 100% 0, 70% 100%, 30% 100%);
}

.2025_wreath-bow-tail::after {
  content: "";
  position: absolute;
  left: 10px;
  width: 8px;
  height: 15px;
  background: #e63946;
  clip-path: polygon(0 0, 100% 0, 70% 100%, 30% 100%);
  transform: rotate(10deg);
}

.2025_wreath-berry {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #e63946;
  border-radius: 50%;
  box-shadow: inset -2px -2px 3px rgba(0, 0, 0, 0.3);
}

.2025_wreath-berry:nth-child(3) { top: -2px; left: 50%; transform: translateX(-50%); }
.2025_wreath-berry:nth-child(4) { top: 10px; left: 5px; }
.2025_wreath-berry:nth-child(5) { top: 10px; right: 5px; }
.2025_wreath-berry:nth-child(6) { top: 50%; left: -4px; }
.2025_wreath-berry:nth-child(7) { top: 50%; right: -4px; }

.2025_wreath-hanger {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 15px;
  border: 4px solid #c1121f;
  border-bottom: none;
  border-radius: 10px 10px 0 0;
}

@keyframes 2025_wreath-sway {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}
</style>