/* Christmas Background Theme */
body {
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 25%, #1a472a 50%, #0f2818 75%, #1a472a 100%);
    background-size: 400% 400%;
    animation: christmasGradient 15s ease infinite;
    position: relative;
    min-height: 100vh;
}

@keyframes christmasGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Snowflakes */
.snowflake {
    position: fixed;
    top: -10px;
    z-index: 1;
    color: white;
    font-size: 1em;
    animation: fall linear infinite;
    pointer-events: none;
}

@keyframes fall {
    to {
        transform: translateY(100vh);
    }
}

/* Christmas decorations overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(234, 179, 8, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.content-wrapper {
    position: relative;
    z-index: 10;
}

