.christmas-poster-wrapper-2349e99a {
    width: 100%;
    max-width: 210mm; /* A4 width */
    aspect-ratio: 210 / 297; /* A4 ratio */
    margin: 0 auto;
    background: linear-gradient(135deg, #0b3d1b, #8b0000); /* Christmas green to red */
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    text-align: center;
    padding: 40px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 10px solid #d4af37; /* Gold border */
    border-radius: 10px;
}

.christmas-poster-wrapper-2349e99a h1 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.christmas-poster-wrapper-2349e99a h2 {
    color: #d4af37; /* Gold */
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.christmas-poster-wrapper-2349e99a p.date {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 5px;
}

.christmas-poster-wrapper-2349e99a p.welcome {
    font-size: 1.5rem;
    font-style: italic;
}

.graphics-top, .graphics-bottom {
    font-size: 4rem;
    margin: 20px 0;
    display: flex;
    justify-content: space-around;
}

/* Snowflakes */
.snowflakes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}
.snowflake {
    position: absolute;
    top: -10%;
    color: #fff;
    font-size: 1.5em;
    animation: fall linear infinite;
}
.snowflake:nth-child(1) { left: 10%; animation-duration: 10s; }
.snowflake:nth-child(2) { left: 30%; animation-duration: 12s; animation-delay: -2s; }
.snowflake:nth-child(3) { left: 50%; animation-duration: 8s; animation-delay: -4s; }
.snowflake:nth-child(4) { left: 70%; animation-duration: 11s; animation-delay: -1s; }
.snowflake:nth-child(5) { left: 90%; animation-duration: 9s; animation-delay: -3s; }
.snowflake:nth-child(6) { left: 20%; animation-duration: 13s; animation-delay: -5s; }

@keyframes fall {
    0% { transform: translateY(-100px) rotate(0deg); opacity: 1; }
    100% { transform: translateY(1000px) rotate(360deg); opacity: 0; }
}

.poster-content {
    position: relative;
    z-index: 1;
}