:root {
    /* Palette de couleurs */
    --sky-dark: #0a1128;
    --sky-light: #1a2845;
    --moon-glow: #ffd700;
    --snow-white: #ffffff;
    --wood-dark: #4a2c1b;
    --wood-light: #8b5a3c;
    --glass-tint: rgba(255, 255, 255, 0.1);
    --mountain-dark: #2c3e50;
    --mountain-light: #34495e;
    --house-red: #8b2e2e;
    --house-wood: #d4a373;
    --tree-green: #2d5016;
    --santa-red: #c41e3a;
    --santa-white: #f0f0f0;
    --aurora-green: #00ff88;
    --aurora-blue: #0099ff;
    --aurora-purple: #cc00ff;

    /* Timings */
    --snow-fall: 15s;
    --santa-fly: 12s;
    --smoke-rise: 4s;
    --lights-blink: 1.5s;
    --aurora-wave: 8s;
    --shooting-star: 3s;
    --bokeh-float: 12s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at 50% 30%, #1e293b, #020617);
    font-family: 'Georgia', serif;
    overflow: hidden;
    perspective: 1200px;
}

/* CONTENEUR PRINCIPAL avec animation de lévitation - AGRANDI */
.snow-globe-container {
    position: relative;
    width: 500px;
    height: 620px;
    perspective: 1500px;
    transform-style: preserve-3d;
    animation: levitate 6s ease-in-out infinite;
    transition: transform 0.4s ease-out;
    cursor: pointer;
}

.snow-globe-container:hover {
    transform: scale(1.05) rotateX(3deg) rotateY(-2deg);
    animation-play-state: paused;
}

/* Intensification des effets au survol */
.snow-globe-container:hover .aurora {
    opacity: 0.9;
    animation-duration: 5s;
}

.snow-globe-container:hover .moon {
    box-shadow:
        0 0 80px rgba(255, 255, 255, 1),
        0 0 130px rgba(230, 230, 255, 0.8),
        0 0 190px rgba(210, 210, 255, 0.5),
        inset -10px -10px 20px rgba(150, 150, 170, 0.3),
        inset 5px 5px 10px rgba(255, 255, 255, 0.5);
}

.snow-globe-container:hover .bokeh-lights {
    opacity: 1;
}

.snow-globe-container:hover .bokeh {
    animation-duration: 6s;
    filter: blur(2px);
}

.snow-globe-container:hover .stars {
    animation-duration: 1.5s;
}

.snow-globe-container:hover .smoke {
    animation-duration: 2s;
}

.snow-globe-container:hover .glass-reflection {
    opacity: 1;
}

@keyframes levitate {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* LA BOULE DE VERRE */
.globe {
    position: relative;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(15, 23, 42, 0.3) 50%, rgba(148, 163, 184, 0.05) 100%);
    border: 3px solid transparent;
    background-clip: padding-box;
    box-shadow:
        inset 20px -10px 60px rgba(255, 255, 255, 0.15),
        inset -25px 15px 50px rgba(0, 150, 255, 0.08),
        inset -35px -35px 80px rgba(0, 0, 0, 0.4),
        inset 40px 40px 90px rgba(255, 255, 255, 0.2),
        0 0 40px rgba(255, 255, 255, 0.1),
        0 40px 120px rgba(0, 0, 0, 0.6),
        0 20px 60px rgba(100, 200, 255, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(1px);
}

/* Bordure animée */
.globe::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg,
        rgba(255, 100, 100, 0.3),
        rgba(100, 255, 255, 0.3),
        rgba(255, 100, 255, 0.2));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.6;
    animation: chromatic-pulse 4s ease-in-out infinite;
    z-index: 101;
    pointer-events: none;
}

@keyframes chromatic-pulse {
    0%, 100% { opacity: 0.4; filter: hue-rotate(0deg); }
    50% { opacity: 0.8; filter: hue-rotate(30deg); }
}

/* Reflet sur la boule */
.globe::after {
    display: none;
    content: '';
    position: absolute;
    top: 8%;
    left: 18%;
    width: 22%;
    height: 12%;
    border-radius: 50%;
    background: radial-gradient(
        ellipse at 30% 30%,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.7) 30%,
        transparent 70%
    );
    transform: rotate(-45deg);
    z-index: 102;
    pointer-events: none;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.9; transform: rotate(-45deg) scale(1); }
    50% { opacity: 1; transform: rotate(-45deg) scale(1.05); }
}

/* Reflet flottant */
.glass-reflection {
    position: absolute;
    top: 60%;
    right: 15%;
    width: 15%;
    height: 8%;
    border-radius: 50%;
    background: radial-gradient(rgba(255, 255, 255, 0.4), transparent 60%);
    transform: rotate(25deg);
    z-index: 102;
    pointer-events: none;
    animation: reflection-float 5s ease-in-out infinite;
}

@keyframes reflection-float {
    0%, 100% { opacity: 0.5; transform: rotate(25deg) translateY(0); }
    50% { opacity: 0.8; transform: rotate(25deg) translateY(-5px); }
}

/* SCÈNE INTÉRIEURE */
.scene {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

/* CIEL NOCTURNE */
.sky {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
        #0a0e1a 0%,
        #0d1528 20%,
        var(--sky-dark) 40%,
        var(--sky-light) 70%,
        #1e2f4d 100%);
}

/* AURORES BORÉALES */
.aurora {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    pointer-events: none;
    z-index: 2;
    opacity: 0.6;
    mix-blend-mode: screen;
    animation: aurora-dance var(--aurora-wave) ease-in-out infinite;
}

.aurora::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -20%;
    width: 140%;
    height: 100px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(0, 255, 136, 0.3) 20%,
        rgba(0, 153, 255, 0.4) 40%,
        rgba(204, 0, 255, 0.3) 60%,
        rgba(0, 255, 136, 0.35) 80%,
        transparent 100%);
    filter: blur(25px);
    border-radius: 50%;
    transform: skewY(-8deg);
    animation: aurora-wave-1 10s ease-in-out infinite alternate;
}

.aurora::after {
    content: '';
    position: absolute;
    top: 25%;
    left: -10%;
    width: 120%;
    height: 80px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(204, 0, 255, 0.25) 25%,
        rgba(0, 255, 136, 0.35) 50%,
        rgba(0, 153, 255, 0.3) 75%,
        transparent 100%);
    filter: blur(30px);
    border-radius: 50%;
    transform: skewY(5deg);
    animation: aurora-wave-2 12s ease-in-out infinite alternate-reverse;
}

@keyframes aurora-dance {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

@keyframes aurora-wave-1 {
    0% { transform: skewY(-8deg) translateX(-5%); }
    100% { transform: skewY(-12deg) translateX(5%); }
}

@keyframes aurora-wave-2 {
    0% { transform: skewY(5deg) translateX(3%); }
    100% { transform: skewY(8deg) translateX(-3%); }
}

/* NUAGES ANIMÉS */
.clouds {
    position: absolute;
    top: 20%;
    left: 0;
    width: 100%;
    height: 30%;
    z-index: 1;
    opacity: 0.4;
}

.cloud {
    position: absolute;
    animation: cloud-drift 40s linear infinite;
}

/* Nuage 1 - Grand nuage cotonneux */
.cloud:nth-child(1) {
    top: 15%;
    left: -150px;
    width: 120px;
    height: 50px;
    animation-duration: 38s;
}

/* Forme du nuage */
.cloud:nth-child(1)::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 30px;
    width: 60px;
    height: 50px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    filter: blur(8px);
}

/* Détail du nuage */
.cloud:nth-child(1)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 40px;
    background: rgba(255, 255, 255, 0.65);
    border-radius: 50%;
    filter: blur(8px);
    box-shadow:
        10px -8px 0 4px rgba(255, 255, 255, 0.68),
        50px -12px 0 6px rgba(255, 255, 255, 0.72),
        90px -5px 0 2px rgba(255, 255, 255, 0.63),
        30px -15px 0 -2px rgba(255, 255, 255, 0.7),
        70px -18px 0 0px rgba(255, 255, 255, 0.75);
}

/* Nuage 2 - Nuage moyen */
.cloud:nth-child(2) {
    top: 55%;
    left: -160px;
    width: 100px;
    height: 45px;
    animation-duration: 42s;
    animation-delay: 12s;
}

.cloud:nth-child(2)::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25px;
    width: 50px;
    height: 45px;
    background: rgba(255, 255, 255, 0.68);
    border-radius: 50%;
    filter: blur(7px);
}

.cloud:nth-child(2)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 38px;
    background: rgba(255, 255, 255, 0.63);
    border-radius: 50%;
    filter: blur(7px);
    box-shadow:
        15px -10px 0 3px rgba(255, 255, 255, 0.66),
        45px -8px 0 5px rgba(255, 255, 255, 0.7),
        75px -3px 0 0px rgba(255, 255, 255, 0.6),
        30px -16px 0 -1px rgba(255, 255, 255, 0.68);
}

/* Nuage 3 - Petit nuage léger */
.cloud:nth-child(3) {
    top: 35%;
    left: -110px;
    width: 80px;
    height: 38px;
    animation-duration: 36s;
    animation-delay: 22s;
}

.cloud:nth-child(3)::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    width: 40px;
    height: 38px;
    background: rgba(255, 255, 255, 0.65);
    border-radius: 50%;
    filter: blur(6px);
}

.cloud:nth-child(3)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 32px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    filter: blur(6px);
    box-shadow:
        12px -7px 0 2px rgba(255, 255, 255, 0.64),
        38px -10px 0 4px rgba(255, 255, 255, 0.68),
        62px -4px 0 -1px rgba(255, 255, 255, 0.58),
        25px -13px 0 -2px rgba(255, 255, 255, 0.66);
}

@keyframes cloud-drift {
    0% { transform: translateX(0); }
    100% { transform: translateX(600px); }
}

/* ÉTOILES SCINTILLANTES - Plus nombreuses et variées */
.stars {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    z-index: 3;
    box-shadow:
        30px 40px 0 0 rgba(255, 255, 255, 0.9),
        80px 25px 0 1px rgba(255, 255, 255, 0.7),
        150px 60px 0 0 rgba(255, 255, 255, 1),
        200px 35px 0 0 rgba(255, 255, 255, 0.6),
        250px 70px 0 1px rgba(255, 255, 255, 0.8),
        320px 45px 0 0 rgba(255, 255, 255, 0.7),
        100px 90px 0 0 rgba(255, 255, 255, 0.5),
        180px 20px 0 1px rgba(255, 255, 255, 0.9),
        280px 55px 0 0 rgba(255, 255, 255, 0.6),
        350px 30px 0 1px rgba(255, 255, 255, 0.8),
        50px 75px 0 0 rgba(255, 255, 255, 0.7),
        130px 50px 0 0 rgba(255, 255, 255, 0.5),
        /* Étoiles supplémentaires */
        370px 80px 0 0 rgba(255, 255, 255, 0.9),
        110px 15px 0 1px rgba(255, 255, 255, 0.6),
        300px 95px 0 0 rgba(255, 255, 255, 0.8),
        160px 110px 0 1px rgba(255, 255, 255, 0.7),
        240px 10px 0 0 rgba(255, 255, 255, 0.9),
        340px 105px 0 0 rgba(255, 255, 255, 0.6),
        70px 120px 0 1px rgba(255, 255, 255, 0.8),
        210px 85px 0 0 rgba(255, 255, 255, 0.5);
    animation: twinkle 3s ease-in-out infinite alternate;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* ÉTOILES FILANTES - Météores traversant le ciel */
.shooting-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 8px 2px rgba(255, 255, 255, 0.8);
    z-index: 4;
    animation: shoot var(--shooting-star) ease-out infinite;
}

.shooting-star:nth-child(1) {
    top: 20%;
    left: 80%;
    animation-delay: 2s;
}

.shooting-star:nth-child(2) {
    top: 40%;
    left: 90%;
    animation-delay: 5s;
    animation-duration: 2.5s;
}

.shooting-star:nth-child(3) {
    top: 15%;
    left: 70%;
    animation-delay: 8s;
    animation-duration: 3.5s;
}

@keyframes shoot {
    0% {
        transform: translateX(0) translateY(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateX(-20px) translateY(10px) scale(1);
    }
    100% {
        transform: translateX(-300px) translateY(150px) scale(0.5);
        opacity: 0;
        box-shadow: 0 0 0 0 transparent;
    }
}

/* Traînée de l'étoile filante */
.shooting-star::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0.9),
        rgba(255, 255, 255, 0.5),
        transparent);
    transform: rotate(-25deg);
    transform-origin: 0 0;
}

/* LUNE - Améliorée avec cratères */
.moon {
    position: absolute;
    top: 50px;
    right: 80px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, #ffffff, #e8e8e8, #d0d0d0);
    box-shadow:
        0 0 50px rgba(255, 255, 255, 0.8),
        0 0 80px rgba(220, 220, 255, 0.5),
        0 0 120px rgba(200, 200, 255, 0.3),
        inset -10px -10px 20px rgba(150, 150, 170, 0.3),
        inset 5px 5px 10px rgba(255, 255, 255, 0.4);
    z-index: 5;
    animation: moon-glow 6s ease-in-out infinite;
}

@keyframes moon-glow {
    0%, 100% {
        box-shadow:
            0 0 50px rgba(255, 255, 255, 0.8),
            0 0 80px rgba(220, 220, 255, 0.5),
            0 0 120px rgba(200, 200, 255, 0.3),
            inset -10px -10px 20px rgba(150, 150, 170, 0.3),
            inset 5px 5px 10px rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow:
            0 0 70px rgba(255, 255, 255, 1),
            0 0 110px rgba(220, 220, 255, 0.7),
            0 0 150px rgba(200, 200, 255, 0.4),
            inset -10px -10px 20px rgba(150, 150, 170, 0.3),
            inset 5px 5px 10px rgba(255, 255, 255, 0.5);
    }
}

/* Cratères lunaires */
.moon::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 35px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(180, 180, 190, 0.3);
    box-shadow:
        -15px -8px 0 -2px rgba(170, 170, 180, 0.25),
        5px 15px 0 -3px rgba(160, 160, 170, 0.2);
}

/* MONTAGNES - Arrière-plan lointain */
.mountains {
    position: absolute;
    bottom: 120px;
    width: 100%;
    height: 150px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.mountain {
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 120px solid var(--mountain-dark);
    filter: brightness(0.95);
}

.mountain:nth-child(1) {
    left: 20px;
    border-bottom-color: #3d5a73;
    filter: brightness(1.05);
}

.mountain:nth-child(2) {
    left: 120px;
    border-left-width: 100px;
    border-right-width: 100px;
    border-bottom-width: 140px;
    border-bottom-color: #2a3f54;
}

.mountain:nth-child(3) {
    right: 30px;
    border-left-width: 70px;
    border-right-width: 70px;
    border-bottom-width: 100px;
    border-bottom-color: #3d5a73;
    filter: brightness(1.1);
}

/* Sommet enneigé */
.mountain::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 18px solid #ffffff;
}

.mountain:nth-child(2)::before {
    border-left-width: 25px;
    border-right-width: 25px;
    border-bottom-width: 30px;
}

.mountain:nth-child(3)::before {
    border-left-width: 18px;
    border-right-width: 18px;
    border-bottom-width: 20px;
}

/* SOL ENNEIGÉ - Amélioré avec ombres portées */
.ground {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 120px;
    z-index: 5;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(200, 220, 255, 0.3), transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(200, 220, 255, 0.2), transparent 40%),
        linear-gradient(to bottom,
            #e8f4f8 0%,
            #f0f8ff 50%,
            #ffffff 100%);
    border-radius: 0 0 50% 50%;
    box-shadow: inset 0 10px 20px rgba(200, 220, 255, 0.3);
}

/* Ombres */
.ground::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        /* Ombre du chalet */
        radial-gradient(ellipse at 90px 20%, rgba(0, 0, 0, 0.15), transparent 35%),
        /* Ombre du sapin */
        radial-gradient(ellipse at 280px 20%, rgba(0, 0, 0, 0.12), transparent 30%),
        /* Ombre du bonhomme de neige */
        radial-gradient(ellipse at 200px 20%, rgba(0, 0, 0, 0.1), transparent 25%);
    border-radius: 0 0 50% 50%;
}

/* Congères de neige - Détails supplémentaires */
.ground::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background:
        radial-gradient(ellipse at 20% 100%, #ffffff, transparent 40%),
        radial-gradient(ellipse at 50% 100%, #f8fcff, transparent 45%),
        radial-gradient(ellipse at 80% 100%, #ffffff, transparent 35%);
    filter: blur(2px);
}

/* Scintillement de la neige au sol - Paillettes magiques */
.snow-sparkles {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    pointer-events: none;
    z-index: 20;
    opacity: 0.6;
}

.sparkle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: radial-gradient(circle, #ffffff, transparent);
    border-radius: 50%;
    animation: sparkle-twinkle 2s ease-in-out infinite;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.8);
}

.sparkle:nth-child(1) {
    bottom: 15%;
    left: 20%;
    animation-delay: 0s;
}

.sparkle:nth-child(2) {
    bottom: 25%;
    left: 45%;
    animation-delay: 0.3s;
}

.sparkle:nth-child(3) {
    bottom: 18%;
    left: 70%;
    animation-delay: 0.6s;
}

.sparkle:nth-child(4) {
    bottom: 30%;
    left: 30%;
    animation-delay: 0.9s;
}

.sparkle:nth-child(5) {
    bottom: 22%;
    left: 60%;
    animation-delay: 1.2s;
}

.sparkle:nth-child(6) {
    bottom: 28%;
    left: 85%;
    animation-delay: 1.5s;
}

.sparkle:nth-child(7) {
    bottom: 20%;
    left: 10%;
    animation-delay: 0.4s;
}

.sparkle:nth-child(8) {
    bottom: 35%;
    left: 50%;
    animation-delay: 0.8s;
}

@keyframes sparkle-twinkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
        box-shadow: 0 0 8px rgba(255, 255, 255, 1);
    }
}

/* CHALET */
.house {
    position: absolute;
    bottom: 120px;
    left: 50px;
    width: 100px;
    height: 80px;
    background: linear-gradient(90deg, var(--house-wood), #c9956f);
    border-radius: 4px;
    z-index: 10;
}

/* Toit de chalet arrondi - Style alpin élégant */
.house::before {
    content: '';
    position: absolute;
    top: -42px;
    left: -15px;
    width: 130px;
    height: 50px;
    background: linear-gradient(180deg, var(--house-red) 0%, #7d2828 100%);
    border-radius: 50% 50% 0 0 / 60% 60% 0 0;
    box-shadow:
        0 -2px 0 rgba(0, 0, 0, 0.2),
        inset 0 -3px 5px rgba(0, 0, 0, 0.3);
}

/* Neige sur le toit */
.house::after {
    content: '';
    position: absolute;
    top: -40px;
    left: -12px;
    width: 124px;
    height: 38px;
    z-index: 5;
    background:
        radial-gradient(ellipse at 25% 100%, rgba(255, 255, 255, 0.9) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 100%, rgba(255, 255, 255, 1) 0%, transparent 45%),
        radial-gradient(ellipse at 75% 100%, rgba(255, 255, 255, 0.85) 0%, transparent 35%),
        linear-gradient(180deg, #ffffff 0%, #f5f9ff 60%, transparent 100%);
    border-radius: 50% 50% 0 0 / 55% 55% 0 0;
    box-shadow:
        inset 0 -2px 8px rgba(200, 220, 255, 0.4),
        0 2px 6px rgba(255, 255, 255, 0.6),
        0 -1px 3px rgba(200, 220, 255, 0.3);
    filter: drop-shadow(0 1px 2px rgba(180, 200, 255, 0.4));
}

/* FENÊTRES DU CHALET */
.window {
    position: absolute;
    width: 20px;
    height: 25px;
    background: #1a2530;
    border: 2px solid var(--wood-dark);
    transition: background 0.5s ease, box-shadow 0.5s ease;
}

/* Fenêtres */
.window::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--wood-dark);
}

.window::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--wood-dark);
    z-index: 1;
}

.window:nth-child(1) {
    top: 20px;
    left: 15px;
}

.window:nth-child(2) {
    top: 20px;
    right: 15px;
}

/* Fenêtres allumées au survol */
.snow-globe-container:hover .window {
    background: #ffca28;
    box-shadow: 0 0 20px rgba(255, 202, 40, 0.9), 0 0 40px rgba(255, 202, 40, 0.4);
}

/* CHEMINÉE - Juste le bout visible au-dessus de la neige */
.chimney {
    position: absolute;
    top: -50px;
    right: 15px;
    width: 20px;
    height: 55px;
    background: linear-gradient(90deg, #7d3c3c, #a04848);
    z-index: 1;
}

/* FUMÉE */
.smoke {
    position: absolute;
    top: -40px;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(200, 200, 200, 0.6);
    animation: smoke-rise var(--smoke-rise) infinite ease-out;
}

.smoke:nth-child(2) {
    animation-delay: 1.3s;
}

.smoke:nth-child(3) {
    animation-delay: 2.6s;
}

@keyframes smoke-rise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-30px) translateX(10px) scale(1.5);
        opacity: 0.4;
    }
    100% {
        transform: translateY(-60px) translateX(-10px) scale(2);
        opacity: 0;
    }
}

/* SAPIN DE NOËL */
.tree {
    position: absolute;
    bottom: 120px;
    right: 80px;
    width: 0;
    height: 0;
    z-index: 10;
}

.tree-layer {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 48px solid var(--tree-green);
}

.tree-layer:nth-child(1) {
    bottom: 72px;
    left: -30px;
}

.tree-layer:nth-child(2) {
    bottom: 48px;
    left: -36px;
    border-left-width: 36px;
    border-right-width: 36px;
    border-bottom-width: 54px;
}

.tree-layer:nth-child(3) {
    bottom: 24px;
    left: -42px;
    border-left-width: 42px;
    border-right-width: 42px;
    border-bottom-width: 60px;
}

.tree-trunk {
    position: absolute;
    bottom: 0;
    left: -8px;
    width: 16px;
    height: 20px;
    background: linear-gradient(90deg, #3e2723, #5d4037);
}

/* ÉTOILE AU SOMMET DU SAPIN */
.tree-star {
    position: absolute;
    bottom: 120px;
    left: -10px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: star-twinkle 2s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
    z-index: 20;
}

@keyframes star-twinkle {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
    }
    50% {
        transform: scale(1.2);
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 1));
    }
}

/* GUIRLANDES DU SAPIN */
.tree-lights {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    animation: lights-blink var(--lights-blink) infinite alternate;
    opacity: 0.4;
    transition: opacity 0.5s ease;
}

.tree-lights:nth-child(6) {
    bottom: 85px;
    left: -15px;
    background: #ff1744;
}

.tree-lights:nth-child(7) {
    bottom: 78px;
    left: 5px;
    background: #00e5ff;
    animation-delay: 0.5s;
}

.tree-lights:nth-child(8) {
    bottom: 64px;
    left: -20px;
    background: #ffeb3b;
    animation-delay: 1s;
}

.tree-lights:nth-child(9) {
    bottom: 56px;
    left: 12px;
    background: #ff1744;
    animation-delay: 1.5s;
}

.tree-lights:nth-child(10) {
    bottom: 45px;
    left: -8px;
    background: #4caf50;
    animation-delay: 0.3s;
}

.tree-lights:nth-child(11) {
    bottom: 38px;
    left: -25px;
    background: #ff9800;
    animation-delay: 0.8s;
}

.tree-lights:nth-child(12) {
    bottom: 30px;
    left: 15px;
    background: #e91e63;
    animation-delay: 1.2s;
}

.tree-lights:nth-child(13) {
    bottom: 22px;
    left: -5px;
    background: #9c27b0;
    animation-delay: 0.6s;
}

/* Au survol, les lumières s'illuminent pleinement */
.snow-globe-container:hover .tree-lights {
    opacity: 1;
    animation-duration: 0.4s;
}

@keyframes lights-blink {
    0% {
        opacity: 0.5;
        box-shadow: 0 0 3px currentColor;
    }
    100% {
        opacity: 1;
        box-shadow: 0 0 12px currentColor, 0 0 20px currentColor;
    }
}

/* BONHOMME DE NEIGE - Nouveau personnage */
.snowman {
    position: absolute;
    bottom: 120px;
    left: 180px;
    width: 50px;
    height: 80px;
    z-index: 15;
}

/* Corps inférieur du bonhomme */
.snowman-bottom {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: radial-gradient(circle at 30% 30%, #ffffff, #e8f4f8);
    border-radius: 50%;
    box-shadow:
        inset -5px -5px 10px rgba(150, 200, 220, 0.3),
        0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Corps supérieur du bonhomme */
.snowman-middle {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: radial-gradient(circle at 30% 30%, #ffffff, #e8f4f8);
    border-radius: 50%;
    box-shadow:
        inset -4px -4px 8px rgba(150, 200, 220, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Boutons du bonhomme */
.snowman-middle::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #333;
    box-shadow:
        0 8px 0 0 #333,
        0 16px 0 0 #333;
}

/* Tête du bonhomme */
.snowman-head {
    position: absolute;
    bottom: 55px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: radial-gradient(circle at 30% 30%, #ffffff, #e8f4f8);
    border-radius: 50%;
    box-shadow:
        inset -3px -3px 6px rgba(150, 200, 220, 0.3),
        0 3px 10px rgba(0, 0, 0, 0.15);
}

/* Yeux du bonhomme */
.snowman-head::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 6px;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: #333;
    box-shadow: 10px 0 0 0 #333;
}

/* Nez carotte */
.snowman-head::after {
    content: '';
    position: absolute;
    top: 11px;
    left: 11px;
    width: 0;
    height: 0;
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
    border-left: 8px solid #ff6b35;
}

/* Chapeau du bonhomme */
.snowman-hat {
    position: absolute;
    bottom: 76px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 10px;
    background: linear-gradient(180deg, #1a1a1a, #333);
    border-radius: 10px 10px 0 0;
}

.snowman-hat::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 3px;
    background: #1a1a1a;
    border-radius: 50%;
}

/* Écharpe du bonhomme */
.snowman-scarf {
    position: absolute;
    bottom: 53px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 6px;
    background: linear-gradient(90deg, #ff1744, #f50057);
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.snowman-scarf::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: -4px;
    width: 4px;
    height: 12px;
    background: linear-gradient(180deg, #ff1744, #f50057);
    border-radius: 0 0 2px 2px;
}

/* CADEAUX SOUS LE SAPIN */
.gifts {
    position: absolute;
    bottom: 120px;
    right: 65px;
    width: 80px;
    height: 30px;
    z-index: 14;
    transform: scale(1.3);
}

/* Cadeau 1 - Rouge */
.gift {
    position: absolute;
    width: 22px;
    height: 20px;
    background: linear-gradient(135deg, #d32f2f, #ff5252);
    border-radius: 2px;
    box-shadow:
        inset -2px -2px 5px rgba(0, 0, 0, 0.3),
        2px 3px 8px rgba(0, 0, 0, 0.3);
}

.gift:nth-child(1) {
    bottom: 0;
    left: 0;
}

/* Ruban horizontal */
.gift::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffeb3b);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Ruban vertical */
.gift::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #ffd700, #ffeb3b);
    box-shadow: 1px 0 2px rgba(0, 0, 0, 0.2);
}

/* Cadeau 2 - Vert */
.gift:nth-child(2) {
    bottom: 0;
    left: 26px;
    width: 18px;
    height: 16px;
    background: linear-gradient(135deg, #388e3c, #66bb6a);
}

.gift:nth-child(2)::before {
    background: linear-gradient(90deg, #ff5252, #ff1744);
}

.gift:nth-child(2)::after {
    background: linear-gradient(180deg, #ff5252, #ff1744);
}

/* Cadeau 3 - Bleu */
.gift:nth-child(3) {
    bottom: 0;
    right: 0;
    width: 20px;
    height: 18px;
    background: linear-gradient(135deg, #1976d2, #42a5f5);
}

.gift:nth-child(3)::before {
    background: linear-gradient(90deg, #4caf50, #66bb6a);
}

.gift:nth-child(3)::after {
    background: linear-gradient(180deg, #4caf50, #66bb6a);
}

/* Nœuds sur les cadeaux */
.gift-bow {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 6px;
    background: transparent;
}

.gift-bow::before,
.gift-bow::after {
    content: '';
    position: absolute;
    top: 0;
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50% 50% 0 50%;
}

.gift-bow::before {
    left: -3px;
    transform: rotate(-45deg);
}

.gift-bow::after {
    right: -3px;
    transform: rotate(45deg);
}

/* PÈRE NOËL ET TRAÎNEAU - Convoi complet */
.santa-scene {
    position: absolute;
    top: 70px;
    left: -180px;
    width: 140px;
    height: 40px;
    animation: santa-fly var(--santa-fly) linear infinite;
    z-index: 10;
    transform: scale(0.8);
}

/* TRAÎNEAU - À gauche (derrière) */
.sleigh {
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 35px;
    height: 18px;
    background: linear-gradient(135deg, var(--santa-red), #a01225);
    border-radius: 0 0 15px 25px;
    transform: skew(-8deg);
    z-index: 2;
}

/* Patins du traîneau */
.sleigh::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #ffd700;
    border-radius: 0 0 10px 10px;
    transform: skew(8deg);
}

/* Dossier du traîneau */
.sleigh::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 5px;
    width: 25px;
    height: 10px;
    background: var(--santa-white);
    border-radius: 4px 4px 0 0;
    transform: skew(8deg);
}

/* HOTTE DU PÈRE NOËL - Sac rempli de cadeaux */
.sack {
    position: absolute;
    top: -12px;
    left: -18px;
    width: 24px;
    height: 26px;
    background: linear-gradient(135deg, #8b6f47, #a0826b);
    border-radius: 40% 40% 50% 50% / 40% 40% 60% 60%;
    z-index: 1;
    box-shadow:
        inset -3px -3px 8px rgba(0, 0, 0, 0.4),
        2px 3px 6px rgba(0, 0, 0, 0.3);
}

/* Cordelette de fermeture */
.sack::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 3px;
    background: linear-gradient(90deg, #5d4037, #6d4c41);
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Plis du tissu */
.sack::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 4px;
    width: 16px;
    height: 15px;
    background: repeating-linear-gradient(
        90deg,
        transparent 0px,
        transparent 3px,
        rgba(0, 0, 0, 0.1) 3px,
        rgba(0, 0, 0, 0.1) 4px
    );
    border-radius: 40% 40% 50% 50%;
}

/* Cadeaux dans la hotte */
.gift-in-sack {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 1px;
    box-shadow: inset -1px -1px 2px rgba(0, 0, 0, 0.3);
}

.gift-in-sack:nth-child(1) {
    top: 0;
    left: 6px;
    background: linear-gradient(135deg, #d32f2f, #ff5252);
    transform: rotate(-15deg);
}

.gift-in-sack:nth-child(2) {
    top: 2px;
    right: 6px;
    background: linear-gradient(135deg, #1976d2, #42a5f5);
    transform: rotate(20deg);
}

.gift-in-sack:nth-child(3) {
    top: 6px;
    left: 4px;
    background: linear-gradient(135deg, #388e3c, #66bb6a);
    width: 5px;
    height: 5px;
    transform: rotate(10deg);
}

.gift-in-sack:nth-child(4) {
    top: 7px;
    right: 4px;
    background: linear-gradient(135deg, #ffa726, #ffb74d);
    width: 5px;
    height: 5px;
    transform: rotate(-8deg);
}

/* Ruban doré sur les petits cadeaux */
.gift-in-sack::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
}

.gift-in-sack::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #ffd700, transparent);
}

/* PÈRE NOËL - Sur le traîneau */
.santa {
    position: absolute;
    bottom: 18px;
    left: 8px;
    width: 18px;
    height: 22px;
    background: var(--santa-red);
    border-radius: 4px;
    z-index: 3;
}

/* Tête du Père Noël */
.santa::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 2px;
    width: 14px;
    height: 14px;
    background: #fce4c4;
    border-radius: 50%;
    box-shadow: -2px 3px 0 var(--santa-white);
}

/* Bonnet du Père Noël */
.santa::after {
    content: '';
    position: absolute;
    top: -18px;
    left: 4px;
    width: 10px;
    height: 12px;
    background: var(--santa-red);
    border-radius: 50% 50% 0 0;
}

/* RENNES - À droite (devant le traîneau) */
.reindeer {
    position: absolute;
    bottom: 12px;
    right: -40px;
    width: 32px;
    height: 20px;
    background: #5d3a1a;
    border-radius: 10px;
    z-index: 4;
    /* Autres rennes en box-shadow (vers la gauche = derrière le chef) */
    box-shadow:
        -36px 3px 0 #5d3a1a,
        -72px 1px 0 #5d3a1a,
        -106px 4px 0 #5d3a1a;
}

/* Têtes et bois des rennes */
.reindeer::before {
    content: '';
    position: absolute;
    top: -16px;
    right: 0;
    width: 16px;
    height: 16px;
    background: #4a2c1a;
    border-radius: 50%;
    /* Têtes des autres rennes */
    box-shadow:
        -36px 3px 0 #4a2c1a,
        -72px 1px 0 #4a2c1a,
        -106px 4px 0 #4a2c1a;
}

/* Bois du renne de tête */
.reindeer::after {
    content: '';
    position: absolute;
    top: -28px;
    right: 3px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 16px solid #3e2723;
    /* Bois des autres rennes */
    box-shadow:
        -36px 3px 0 #3e2723,
        -72px 1px 0 #3e2723,
        -106px 4px 0 #3e2723;
}

/* RÊNES (cordes reliant traîneau aux rennes) */
.reins {
    position: absolute;
    bottom: 16px;
    left: 35px;
    width: 70px;
    height: 1px;
    background: rgba(90, 60, 30, 0.6);
    z-index: 1;
    transform: rotate(-2deg);
}

.reins::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    width: 70px;
    height: 1px;
    background: rgba(90, 60, 30, 0.5);
    transform: rotate(2deg);
}

.reins::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    width: 70px;
    height: 1px;
    background: rgba(90, 60, 30, 0.5);
    transform: rotate(-1deg);
}

@keyframes santa-fly {
    0% {
        left: -180px;
        transform: translateY(0) scale(0.8) rotate(3deg);
    }
    25% {
        transform: translateY(-12px) scale(0.8) rotate(-2deg);
    }
    50% {
        transform: translateY(0) scale(0.8) rotate(0deg);
    }
    75% {
        transform: translateY(-8px) scale(0.8) rotate(-3deg);
    }
    100% {
        left: 600px;
        transform: translateY(-15px) scale(0.8) rotate(-5deg);
    }
}

/* CADEAUX QUI TOMBENT DU TRAÎNEAU - Masqués */
.falling-gift {
    display: none;
}

/* Ruban horizontal sur cadeau tombant */
.falling-gift::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
}

/* Ruban vertical sur cadeau tombant */
.falling-gift::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #ffd700, transparent);
}

/* Cadeau 1 - Rouge - Tombe au début du trajet */
.falling-gift:nth-child(5) {
    background: linear-gradient(135deg, #d32f2f, #ff5252);
    animation: gift-drop-1 var(--santa-fly) linear infinite;
}

/* Cadeau 2 - Vert - Tombe au milieu */
.falling-gift:nth-child(6) {
    background: linear-gradient(135deg, #388e3c, #66bb6a);
    animation: gift-drop-2 var(--santa-fly) linear infinite;
}

/* Cadeau 3 - Bleu - Tombe vers la fin */
.falling-gift:nth-child(7) {
    background: linear-gradient(135deg, #1976d2, #42a5f5);
    animation: gift-drop-3 var(--santa-fly) linear infinite;
}

/* Cadeau 4 - Orange - Tombe à mi-parcours */
.falling-gift:nth-child(8) {
    background: linear-gradient(135deg, #ffa726, #ffb74d);
    animation: gift-drop-4 var(--santa-fly) linear infinite;
}

/* Animation cadeau 1 - Tombe au pied du sapin */
@keyframes gift-drop-1 {
    0%, 18% {
        opacity: 0;
        left: 0;
        top: -10px;
        transform: translateY(0) rotate(0deg) scale(0);
    }
    20% {
        opacity: 1;
        left: 380px;
        top: -10px;
        transform: translateY(0) rotate(0deg) scale(1);
    }
    35% {
        opacity: 1;
        left: 380px;
        top: 200px;
        transform: translateY(0) rotate(720deg) scale(1);
    }
    40%, 100% {
        opacity: 1;
        left: 380px;
        top: 200px;
        transform: translateY(0) rotate(720deg) scale(1);
    }
}

/* Animation cadeau 2 - Tombe au pied du sapin */
@keyframes gift-drop-2 {
    0%, 33% {
        opacity: 0;
        left: 0;
        top: -10px;
        transform: translateY(0) rotate(0deg) scale(0);
    }
    35% {
        opacity: 1;
        left: 395px;
        top: -10px;
        transform: translateY(0) rotate(0deg) scale(1);
    }
    50% {
        opacity: 1;
        left: 395px;
        top: 205px;
        transform: translateY(0) rotate(540deg) scale(1);
    }
    55%, 100% {
        opacity: 1;
        left: 395px;
        top: 205px;
        transform: translateY(0) rotate(540deg) scale(1);
    }
}

/* Animation cadeau 3 - Tombe au pied du sapin */
@keyframes gift-drop-3 {
    0%, 48% {
        opacity: 0;
        left: 0;
        top: -10px;
        transform: translateY(0) rotate(0deg) scale(0);
    }
    50% {
        opacity: 1;
        left: 408px;
        top: -10px;
        transform: translateY(0) rotate(0deg) scale(1);
    }
    65% {
        opacity: 1;
        left: 408px;
        top: 198px;
        transform: translateY(0) rotate(680deg) scale(1);
    }
    70%, 100% {
        opacity: 1;
        left: 408px;
        top: 198px;
        transform: translateY(0) rotate(680deg) scale(1);
    }
}

/* Animation cadeau 4 - Tombe au pied du sapin */
@keyframes gift-drop-4 {
    0%, 26% {
        opacity: 0;
        left: 0;
        top: -10px;
        transform: translateY(0) rotate(0deg) scale(0);
    }
    28% {
        opacity: 1;
        left: 388px;
        top: -10px;
        transform: translateY(0) rotate(0deg) scale(1);
    }
    43% {
        opacity: 1;
        left: 388px;
        top: 210px;
        transform: translateY(0) rotate(600deg) scale(1);
    }
    48%, 100% {
        opacity: 1;
        left: 388px;
        top: 210px;
        transform: translateY(0) rotate(600deg) scale(1);
    }
}

/* PARTICULES BOKEH MAGIQUES - Effet de lumière flottante */
.bokeh-lights {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 45;
    pointer-events: none;
    opacity: 0.7;
}

.bokeh {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 200, 100, 0.4) 40%,
        transparent 70%);
    filter: blur(3px);
    animation: bokeh-float var(--bokeh-float) ease-in-out infinite;
    mix-blend-mode: screen;
}

.bokeh:nth-child(1) {
    width: 20px;
    height: 20px;
    top: 30%;
    left: 15%;
    animation-delay: 0s;
    animation-duration: 10s;
}

.bokeh:nth-child(2) {
    width: 15px;
    height: 15px;
    top: 50%;
    right: 20%;
    animation-delay: 2s;
    animation-duration: 13s;
    background: radial-gradient(circle,
        rgba(100, 200, 255, 0.8) 0%,
        rgba(150, 220, 255, 0.4) 40%,
        transparent 70%);
}

.bokeh:nth-child(3) {
    width: 18px;
    height: 18px;
    top: 70%;
    left: 25%;
    animation-delay: 4s;
    animation-duration: 11s;
    background: radial-gradient(circle,
        rgba(255, 150, 200, 0.8) 0%,
        rgba(255, 180, 220, 0.4) 40%,
        transparent 70%);
}

.bokeh:nth-child(4) {
    width: 12px;
    height: 12px;
    top: 20%;
    right: 30%;
    animation-delay: 1s;
    animation-duration: 14s;
}

.bokeh:nth-child(5) {
    width: 16px;
    height: 16px;
    top: 60%;
    left: 60%;
    animation-delay: 3s;
    animation-duration: 12s;
    background: radial-gradient(circle,
        rgba(200, 255, 150, 0.8) 0%,
        rgba(220, 255, 180, 0.4) 40%,
        transparent 70%);
}

.bokeh:nth-child(6) {
    width: 14px;
    height: 14px;
    top: 40%;
    left: 40%;
    animation-delay: 5s;
    animation-duration: 15s;
}

@keyframes bokeh-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(-15px, -20px) scale(1.2);
        opacity: 0.9;
    }
    50% {
        transform: translate(10px, -10px) scale(0.8);
        opacity: 0.5;
    }
    75% {
        transform: translate(-8px, 15px) scale(1.1);
        opacity: 0.8;
    }
}

/* SYSTÈME DE NEIGE - BOX-SHADOW HACK */
.snow-layer {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    z-index: 50;
    pointer-events: none;
}

/* Calque 1 - Neige proche (rapide) */
.snow-layer-1 {
    top: -100%;
    animation: snow-fall-1 var(--snow-fall) linear infinite;
    box-shadow:
        50px 50px 0 0px rgba(255, 255, 255, 0.9),
        150px 20px 0 1px rgba(255, 255, 255, 0.9),
        250px 80px 0 0px rgba(255, 255, 255, 0.9),
        80px 150px 0 1px rgba(255, 255, 255, 0.9),
        300px 120px 0 0px rgba(255, 255, 255, 0.9),
        120px 250px 0 1px rgba(255, 255, 255, 0.9),
        200px 180px 0 0px rgba(255, 255, 255, 0.9),
        340px 200px 0 1px rgba(255, 255, 255, 0.9),
        60px 300px 0 0px rgba(255, 255, 255, 0.9),
        280px 280px 0 1px rgba(255, 255, 255, 0.9),
        170px 350px 0 0px rgba(255, 255, 255, 0.9),
        320px 50px 0 1px rgba(255, 255, 255, 0.9),
        90px 100px 0 0px rgba(255, 255, 255, 0.9),
        220px 320px 0 1px rgba(255, 255, 255, 0.9),
        360px 150px 0 0px rgba(255, 255, 255, 0.9),
        140px 200px 0 1px rgba(255, 255, 255, 0.9),
        270px 240px 0 0px rgba(255, 255, 255, 0.9),
        190px 90px 0 1px rgba(255, 255, 255, 0.9),
        330px 330px 0 0px rgba(255, 255, 255, 0.9),
        100px 370px 0 1px rgba(255, 255, 255, 0.9);
}

/* Calque 2 - Neige moyenne */
.snow-layer-2 {
    top: -100%;
    animation: snow-fall-2 calc(var(--snow-fall) * 1.5) linear infinite;
    opacity: 0.7;
    box-shadow:
        70px 70px 0 0px rgba(255, 255, 255, 0.7),
        180px 40px 0 0px rgba(255, 255, 255, 0.7),
        260px 110px 0 0px rgba(255, 255, 255, 0.7),
        110px 180px 0 0px rgba(255, 255, 255, 0.7),
        310px 140px 0 0px rgba(255, 255, 255, 0.7),
        150px 270px 0 0px rgba(255, 255, 255, 0.7),
        230px 200px 0 0px rgba(255, 255, 255, 0.7),
        350px 230px 0 0px rgba(255, 255, 255, 0.7),
        90px 320px 0 0px rgba(255, 255, 255, 0.7),
        290px 300px 0 0px rgba(255, 255, 255, 0.7),
        200px 360px 0 0px rgba(255, 255, 255, 0.7),
        340px 80px 0 0px rgba(255, 255, 255, 0.7),
        120px 130px 0 0px rgba(255, 255, 255, 0.7),
        250px 340px 0 0px rgba(255, 255, 255, 0.7),
        380px 170px 0 0px rgba(255, 255, 255, 0.7),
        160px 220px 0 0px rgba(255, 255, 255, 0.7),
        290px 260px 0 0px rgba(255, 255, 255, 0.7),
        210px 110px 0 0px rgba(255, 255, 255, 0.7),
        350px 350px 0 0px rgba(255, 255, 255, 0.7),
        130px 380px 0 0px rgba(255, 255, 255, 0.7);
}

/* Calque 3 - Neige lointaine (lente) */
.snow-layer-3 {
    top: -100%;
    animation: snow-fall-3 calc(var(--snow-fall) * 2) linear infinite;
    opacity: 0.4;
    filter: blur(1px);
    box-shadow:
        60px 90px 0 0px rgba(255, 255, 255, 0.5),
        170px 60px 0 0px rgba(255, 255, 255, 0.5),
        240px 130px 0 0px rgba(255, 255, 255, 0.5),
        100px 200px 0 0px rgba(255, 255, 255, 0.5),
        290px 160px 0 0px rgba(255, 255, 255, 0.5),
        140px 290px 0 0px rgba(255, 255, 255, 0.5),
        210px 220px 0 0px rgba(255, 255, 255, 0.5),
        330px 250px 0 0px rgba(255, 255, 255, 0.5),
        80px 340px 0 0px rgba(255, 255, 255, 0.5),
        270px 320px 0 0px rgba(255, 255, 255, 0.5),
        190px 380px 0 0px rgba(255, 255, 255, 0.5),
        320px 100px 0 0px rgba(255, 255, 255, 0.5),
        110px 150px 0 0px rgba(255, 255, 255, 0.5),
        240px 360px 0 0px rgba(255, 255, 255, 0.5),
        370px 190px 0 0px rgba(255, 255, 255, 0.5),
        150px 240px 0 0px rgba(255, 255, 255, 0.5),
        280px 280px 0 0px rgba(255, 255, 255, 0.5),
        200px 130px 0 0px rgba(255, 255, 255, 0.5),
        340px 370px 0 0px rgba(255, 255, 255, 0.5),
        120px 390px 0 0px rgba(255, 255, 255, 0.5);
}

@keyframes snow-fall-1 {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(625px);
    }
}

@keyframes snow-fall-2 {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(625px);
    }
}

@keyframes snow-fall-3 {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(625px);
    }
}

/* ACCÉLÉRATION AU CLIC - Secouer la boule ! */
.snow-globe-container:active .snow-layer-1 {
    animation-duration: 0.8s !important;
}

.snow-globe-container:active .snow-layer-2 {
    animation-duration: 1s !important;
}

.snow-globe-container:active .snow-layer-3 {
    animation-duration: 1.2s !important;
}

/* Effet de secousse intensifié sur la boule au clic */
.snow-globe-container:active {
    animation: shake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    10% {
        transform: translateX(-8px) translateY(3px) rotate(-2deg);
    }
    20% {
        transform: translateX(8px) translateY(-3px) rotate(2deg);
    }
    30% {
        transform: translateX(-6px) translateY(2px) rotate(-1.5deg);
    }
    40% {
        transform: translateX(6px) translateY(-2px) rotate(1.5deg);
    }
    50% {
        transform: translateX(-4px) translateY(1px) rotate(-1deg);
    }
    60% {
        transform: translateX(4px) translateY(-1px) rotate(1deg);
    }
    70% {
        transform: translateX(-2px) translateY(0.5px) rotate(-0.5deg);
    }
    80% {
        transform: translateX(2px) translateY(-0.5px) rotate(0.5deg);
    }
    90% {
        transform: translateX(-1px) translateY(0) rotate(-0.2deg);
    }
}

/* Effet de lueur magique au clic */
.snow-globe-container:active .globe {
    box-shadow:
        inset 20px -10px 60px rgba(255, 255, 255, 0.25),
        inset -25px 15px 50px rgba(100, 200, 255, 0.15),
        inset -35px -35px 80px rgba(0, 0, 0, 0.4),
        inset 40px 40px 90px rgba(255, 255, 255, 0.3),
        0 0 60px rgba(255, 255, 255, 0.3),
        0 40px 120px rgba(0, 0, 0, 0.6),
        0 20px 80px rgba(100, 200, 255, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Animation de pulsation des lumières au clic */
.snow-globe-container:active .tree-lights,
.snow-globe-container:active .window {
    animation: flash-bright 0.3s ease-out;
}

@keyframes flash-bright {
    0%, 100% { opacity: 1; }
    50% { opacity: 1; transform: scale(1.3); }
}

/* LE SOCLE EN BOIS - Version améliorée - AGRANDI */
.base {
    position: absolute;
    bottom: 0;
    width: 520px;
    height: 120px;
    background:
        repeating-linear-gradient(
            90deg,
            var(--wood-dark) 0px,
            var(--wood-dark) 2px,
            var(--wood-light) 2px,
            var(--wood-light) 8px,
            #6b4423 8px,
            #6b4423 10px
        ),
        linear-gradient(to bottom, #3d2415, var(--wood-dark), var(--wood-light));
    border-radius: 0 0 20px 20px;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.6),
        0 5px 15px rgba(0, 0, 0, 0.4),
        inset 0 -8px 15px rgba(0, 0, 0, 0.4),
        inset 0 2px 5px rgba(139, 90, 60, 0.3);
    transition: transform 0.3s ease;
}

.base:hover {
    transform: translateY(2px);
}

/* Rainure décorative supérieure */
.base::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 8px;
    background: linear-gradient(90deg,
        transparent 0%,
        #4a2c1b 10%,
        #8b5a3c 50%,
        #4a2c1b 90%,
        transparent 100%);
    border-radius: 4px;
    box-shadow:
        inset 0 2px 4px rgba(0, 0, 0, 0.5),
        0 1px 2px rgba(139, 90, 60, 0.3);
}

/* Texture du bois avec reflets */
.base::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(139, 90, 60, 0.2), transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(139, 90, 60, 0.15), transparent 40%);
    border-radius: 0 0 20px 20px;
    pointer-events: none;
}

/* PLAQUE DORÉE - Version premium */
.plaque {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    height: 55px;
    background:
        linear-gradient(135deg,
            #c9a961 0%,
            #f4e5b8 20%,
            #d4af37 40%,
            #f9f6e8 50%,
            #d4af37 60%,
            #f4e5b8 80%,
            #c9a961 100%);
    border: 3px solid #b8962a;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow:
        0 6px 12px rgba(0, 0, 0, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.2),
        inset 0 3px 6px rgba(255, 255, 255, 0.6),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    font-size: 26px;
    font-weight: bold;
    color: #3d2415;
    text-shadow:
        1px 1px 3px rgba(255, 255, 255, 0.8),
        -1px -1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    animation: plaque-shine 5s ease-in-out infinite;
    z-index: 10;
}

@keyframes plaque-shine {
    0%, 100% {
        box-shadow:
            0 6px 12px rgba(0, 0, 0, 0.4),
            0 2px 4px rgba(0, 0, 0, 0.2),
            inset 0 3px 6px rgba(255, 255, 255, 0.6),
            inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow:
            0 6px 12px rgba(0, 0, 0, 0.4),
            0 2px 4px rgba(0, 0, 0, 0.2),
            inset 0 3px 8px rgba(255, 255, 255, 0.8),
            inset 0 -2px 4px rgba(0, 0, 0, 0.2),
            0 0 20px rgba(212, 175, 55, 0.4);
    }
}

/* Reflet métallique sur la plaque */
.plaque::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 10%;
    width: 40%;
    height: 50%;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.5),
        transparent);
    border-radius: 8px 0 50% 0;
    pointer-events: none;
}

/* ========================================
   RESPONSIVE - MEDIA QUERIES
   ======================================== */

/* Tablettes et petits écrans (< 565px) */
@media screen and (max-width: 565px) {
    .snow-globe-container {
        width: 400px;
        height: 496px;
        transform: scale(0.95);
    }

    .globe {
        width: 400px;
        height: 400px;
    }

    .base {
        width: 416px;
        height: 96px;
    }

    .base::before {
        top: 8px;
        width: 240px;
        height: 6px;
    }

    .plaque {
        bottom: 16px;
        width: 208px;
        height: 44px;
        font-size: 21px;
    }

    @keyframes snow-fall-1,
    @keyframes snow-fall-2,
    @keyframes snow-fall-3 {
        100% { transform: translateY(500px); }
    }

    @keyframes cloud-drift {
        100% { transform: translateX(480px); }
    }

    @keyframes santa-fly {
        100% { left: 480px; }
    }
}

/* Mobiles moyens (< 425px) */
@media screen and (max-width: 425px) {
    .snow-globe-container {
        width: 320px;
        height: 396px;
        transform: scale(0.9);
    }

    .globe {
        width: 320px;
        height: 320px;
    }

    .base {
        width: 332px;
        height: 77px;
    }

    .base::before {
        top: 6px;
        width: 192px;
        height: 5px;
    }

    .plaque {
        bottom: 13px;
        width: 166px;
        height: 35px;
        font-size: 17px;
        border: 2px solid #b8962a;
    }

    /* Ajustements des éléments internes */
    .moon {
        width: 48px;
        height: 48px;
        top: 40px;
        right: 64px;
    }

    .house {
        width: 80px;
        height: 64px;
        bottom: 96px;
        left: 40px;
    }

    .house::before {
        top: -34px;
        left: -12px;
        width: 104px;
        height: 40px;
    }

    .house::after {
        top: -32px;
        left: -10px;
        width: 100px;
        height: 30px;
    }

    .chimney {
        top: -40px;
        right: 12px;
        width: 16px;
        height: 44px;
    }

    .window {
        width: 16px;
        height: 20px;
    }

    .window:nth-child(1) {
        top: 16px;
        left: 12px;
    }

    .window:nth-child(2) {
        top: 16px;
        right: 12px;
    }

    .tree {
        bottom: 96px;
        right: 64px;
    }

    .tree-layer:nth-child(1) {
        bottom: 58px;
        left: -24px;
        border-left-width: 24px;
        border-right-width: 24px;
        border-bottom-width: 38px;
    }

    .tree-layer:nth-child(2) {
        bottom: 38px;
        left: -29px;
        border-left-width: 29px;
        border-right-width: 29px;
        border-bottom-width: 43px;
    }

    .tree-layer:nth-child(3) {
        bottom: 19px;
        left: -34px;
        border-left-width: 34px;
        border-right-width: 34px;
        border-bottom-width: 48px;
    }

    .tree-star {
        bottom: 96px;
        width: 16px;
        height: 16px;
    }

    .snowman {
        bottom: 96px;
        left: 144px;
        width: 40px;
        height: 64px;
    }

    .snowman-bottom {
        width: 32px;
        height: 32px;
    }

    .snowman-middle {
        bottom: 24px;
        width: 26px;
        height: 26px;
    }

    .snowman-head {
        bottom: 44px;
        width: 19px;
        height: 19px;
    }

    .snowman-hat {
        bottom: 61px;
        width: 16px;
        height: 8px;
    }

    .snowman-hat::before {
        width: 21px;
        height: 2px;
    }

    .snowman-scarf {
        bottom: 42px;
        width: 22px;
        height: 5px;
    }

    .gifts {
        bottom: 96px;
        right: 52px;
        transform: scale(1.1);
    }

    .santa-scene {
        top: 56px;
        transform: scale(0.7);
    }

    .mountains {
        bottom: 96px;
        height: 120px;
    }

    .ground {
        height: 96px;
    }

    .snow-sparkles {
        height: 96px;
    }

    @keyframes snow-fall-1,
    @keyframes snow-fall-2,
    @keyframes snow-fall-3 {
        100% { transform: translateY(400px); }
    }

    @keyframes cloud-drift {
        100% { transform: translateX(384px); }
    }

    @keyframes santa-fly {
        100% { left: 384px; }
    }
}

/* Mobiles petits (< 375px) */
@media screen and (max-width: 375px) {
    .snow-globe-container {
        width: 280px;
        height: 346px;
        transform: scale(0.85);
    }

    .globe {
        width: 280px;
        height: 280px;
    }

    .base {
        width: 291px;
        height: 67px;
    }

    .base::before {
        top: 5px;
        width: 168px;
        height: 4px;
    }

    .plaque {
        bottom: 11px;
        width: 145px;
        height: 31px;
        font-size: 15px;
        border: 2px solid #b8962a;
    }

    .moon {
        width: 42px;
        height: 42px;
        top: 35px;
        right: 56px;
    }

    .house {
        width: 70px;
        height: 56px;
        bottom: 84px;
        left: 35px;
    }

    .house::before {
        top: -30px;
        left: -11px;
        width: 91px;
        height: 35px;
    }

    .house::after {
        top: -28px;
        left: -9px;
        width: 87px;
        height: 27px;
    }

    .chimney {
        top: -35px;
        right: 11px;
        width: 14px;
        height: 38px;
    }

    .window {
        width: 14px;
        height: 18px;
    }

    .window:nth-child(1) {
        top: 14px;
        left: 11px;
    }

    .window:nth-child(2) {
        top: 14px;
        right: 11px;
    }

    .tree {
        bottom: 84px;
        right: 56px;
    }

    .tree-layer:nth-child(1) {
        bottom: 50px;
        left: -21px;
        border-left-width: 21px;
        border-right-width: 21px;
        border-bottom-width: 34px;
    }

    .tree-layer:nth-child(2) {
        bottom: 34px;
        left: -25px;
        border-left-width: 25px;
        border-right-width: 25px;
        border-bottom-width: 38px;
    }

    .tree-layer:nth-child(3) {
        bottom: 17px;
        left: -29px;
        border-left-width: 29px;
        border-right-width: 29px;
        border-bottom-width: 42px;
    }

    .tree-trunk {
        left: -7px;
        width: 14px;
        height: 17px;
    }

    .tree-star {
        bottom: 84px;
        left: -9px;
        width: 14px;
        height: 14px;
    }

    .tree-lights {
        width: 4px;
        height: 4px;
    }

    .snowman {
        bottom: 84px;
        left: 126px;
        width: 35px;
        height: 56px;
    }

    .snowman-bottom {
        width: 28px;
        height: 28px;
    }

    .snowman-middle {
        bottom: 21px;
        width: 22px;
        height: 22px;
    }

    .snowman-head {
        bottom: 38px;
        width: 17px;
        height: 17px;
    }

    .snowman-hat {
        bottom: 53px;
        width: 14px;
        height: 7px;
    }

    .snowman-hat::before {
        width: 18px;
    }

    .snowman-scarf {
        bottom: 37px;
        width: 20px;
        height: 4px;
    }

    .gifts {
        bottom: 84px;
        right: 45px;
        transform: scale(0.95);
    }

    .santa-scene {
        top: 49px;
        transform: scale(0.6);
    }

    .mountains {
        bottom: 84px;
        height: 105px;
    }

    .mountain {
        border-left-width: 70px;
        border-right-width: 70px;
        border-bottom-width: 105px;
    }

    .mountain:nth-child(2) {
        border-left-width: 88px;
        border-right-width: 88px;
        border-bottom-width: 123px;
    }

    .mountain:nth-child(3) {
        border-left-width: 61px;
        border-right-width: 61px;
        border-bottom-width: 88px;
    }

    .ground {
        height: 84px;
    }

    .snow-sparkles {
        height: 84px;
    }

    @keyframes snow-fall-1,
    @keyframes snow-fall-2,
    @keyframes snow-fall-3 {
        100% { transform: translateY(350px); }
    }

    @keyframes cloud-drift {
        100% { transform: translateX(336px); }
    }

    @keyframes santa-fly {
        100% { left: 336px; }
    }
}

/* Très petits mobiles (< 320px) */
@media screen and (max-width: 320px) {
    .snow-globe-container {
        width: 240px;
        height: 296px;
        transform: scale(0.8);
    }

    .globe {
        width: 240px;
        height: 240px;
    }

    .base {
        width: 250px;
        height: 58px;
    }

    .base::before {
        top: 4px;
        width: 144px;
        height: 3px;
    }

    .plaque {
        bottom: 9px;
        width: 125px;
        height: 26px;
        font-size: 13px;
        border: 2px solid #b8962a;
    }

    .moon {
        width: 36px;
        height: 36px;
        top: 30px;
        right: 48px;
    }

    .house {
        width: 60px;
        height: 48px;
        bottom: 72px;
        left: 30px;
    }

    .house::before {
        top: -25px;
        left: -9px;
        width: 78px;
        height: 30px;
    }

    .house::after {
        top: -24px;
        left: -7px;
        width: 74px;
        height: 23px;
    }

    .chimney {
        top: -30px;
        right: 9px;
        width: 12px;
        height: 33px;
    }

    .window {
        width: 12px;
        height: 15px;
    }

    .window:nth-child(1) {
        top: 12px;
        left: 9px;
    }

    .window:nth-child(2) {
        top: 12px;
        right: 9px;
    }

    .tree {
        bottom: 72px;
        right: 48px;
    }

    .tree-layer:nth-child(1) {
        bottom: 43px;
        left: -18px;
        border-left-width: 18px;
        border-right-width: 18px;
        border-bottom-width: 29px;
    }

    .tree-layer:nth-child(2) {
        bottom: 29px;
        left: -22px;
        border-left-width: 22px;
        border-right-width: 22px;
        border-bottom-width: 32px;
    }

    .tree-layer:nth-child(3) {
        bottom: 14px;
        left: -25px;
        border-left-width: 25px;
        border-right-width: 25px;
        border-bottom-width: 36px;
    }

    .tree-trunk {
        left: -6px;
        width: 12px;
        height: 14px;
    }

    .tree-star {
        bottom: 72px;
        left: -8px;
        width: 12px;
        height: 12px;
    }

    .tree-lights {
        width: 3px;
        height: 3px;
    }

    .tree-lights:nth-child(6) { bottom: 51px; left: -11px; }
    .tree-lights:nth-child(7) { bottom: 47px; left: 3px; }
    .tree-lights:nth-child(8) { bottom: 38px; left: -12px; }
    .tree-lights:nth-child(9) { bottom: 34px; left: 7px; }
    .tree-lights:nth-child(10) { bottom: 27px; left: -5px; }
    .tree-lights:nth-child(11) { bottom: 23px; left: -15px; }
    .tree-lights:nth-child(12) { bottom: 18px; left: 9px; }
    .tree-lights:nth-child(13) { bottom: 13px; left: -3px; }

    .snowman {
        bottom: 72px;
        left: 108px;
        width: 30px;
        height: 48px;
    }

    .snowman-bottom {
        width: 24px;
        height: 24px;
    }

    .snowman-middle {
        bottom: 18px;
        width: 19px;
        height: 19px;
    }

    .snowman-middle::before {
        top: 6px;
        width: 3px;
        height: 3px;
        box-shadow: 0 6px 0 0 #333, 0 12px 0 0 #333;
    }

    .snowman-head {
        bottom: 33px;
        width: 14px;
        height: 14px;
    }

    .snowman-head::before {
        top: 5px;
        left: 4px;
        width: 2px;
        height: 2px;
        box-shadow: 6px 0 0 0 #333;
    }

    .snowman-head::after {
        top: 7px;
        left: 7px;
        border-left: 6px solid #ff6b35;
    }

    .snowman-hat {
        bottom: 45px;
        width: 12px;
        height: 6px;
    }

    .snowman-hat::before {
        width: 16px;
        height: 2px;
    }

    .snowman-scarf {
        bottom: 32px;
        width: 17px;
        height: 4px;
    }

    .snowman-scarf::after {
        bottom: -6px;
        right: -3px;
        width: 3px;
        height: 9px;
    }

    .gifts {
        bottom: 72px;
        right: 39px;
        transform: scale(0.8);
    }

    .gift {
        width: 18px;
        height: 16px;
    }

    .gift:nth-child(2) {
        width: 14px;
        height: 13px;
        left: 21px;
    }

    .gift:nth-child(3) {
        width: 16px;
        height: 14px;
    }

    .santa-scene {
        top: 42px;
        transform: scale(0.5);
    }

    .mountains {
        bottom: 72px;
        height: 90px;
    }

    .mountain {
        border-left-width: 60px;
        border-right-width: 60px;
        border-bottom-width: 90px;
    }

    .mountain:nth-child(2) {
        border-left-width: 75px;
        border-right-width: 75px;
        border-bottom-width: 105px;
    }

    .mountain:nth-child(3) {
        border-left-width: 53px;
        border-right-width: 53px;
        border-bottom-width: 75px;
    }

    .mountain::before {
        border-left-width: 15px;
        border-right-width: 15px;
        border-bottom-width: 14px;
    }

    .mountain:nth-child(2)::before {
        border-left-width: 19px;
        border-right-width: 19px;
        border-bottom-width: 23px;
    }

    .mountain:nth-child(3)::before {
        border-left-width: 14px;
        border-right-width: 14px;
        border-bottom-width: 15px;
    }

    .ground {
        height: 72px;
    }

    .snow-sparkles {
        height: 72px;
    }

    .bokeh {
        display: none;
    }

    .cloud {
        transform: scale(0.8);
    }

    @keyframes snow-fall-1,
    @keyframes snow-fall-2,
    @keyframes snow-fall-3 {
        100% { transform: translateY(300px); }
    }

    @keyframes cloud-drift {
        100% { transform: translateX(288px); }
    }

    @keyframes santa-fly {
        100% { left: 288px; }
    }
}
