/* Christmas Lights container */
.lights-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    z-index: 1000;
    pointer-events: none;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.wire {
    position: absolute;
    top: -15px;
    left: -5%;
    width: 110%;
    height: 30px;
    border-bottom: 2px solid #222;
    border-radius: 50%;
}

.light {
    position: relative;
    top: 15px;
    width: 12px;
    height: 20px;
    border-radius: 50%;
    margin: 0 15px;
    background: #f00;
    animation: flash 1s infinite alternate;
    display: inline-block;
}

.light:nth-child(2n) {
    background: #0f0;
    animation-delay: 0.2s;
}

.light:nth-child(3n) {
    background: #00f;
    animation-delay: 0.4s;
}

.light:nth-child(4n) {
    background: #FFD700;
    animation-delay: 0.6s;
}

@keyframes flash {
    0% {
        opacity: 0.4;
        box-shadow: 0 0 0px currentColor;
    }

    100% {
        opacity: 1;
        box-shadow: 0 0 10px currentColor;
    }
}

/* Tree Decoration Styling */
.tree-decoration {
    position: absolute;
    width: 100px;
    height: auto;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    opacity: 0.9;
}

@media (max-width: 600px) {
    .tree-decoration {
        width: 60px;
        bottom: 10px;
        right: 10px;
    }
}