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

:root {
    --christmas-red: #c41e3a;
    --christmas-green: #228B22;
    --christmas-gold: #d4af37;
    --christmas-gold-dark: #b8941f;
    --focus-outline-color: #0066cc;
    --focus-outline-width: 3px;
}

/* Skip to content link for keyboard users */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    font-weight: bold;
    z-index: 1000;
    border-radius: 0 0 4px 0;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--focus-outline-color);
    outline-offset: 2px;
}

body {
    font-family: 'Georgia', serif;
    /* Fallback for browsers that don't support gradients */
    background: #1a4d2e;
    background: -webkit-linear-gradient(135deg, #0f4d3a 0%, #165a3e 25%, #1a4d2e 50%, #0f3d2a 75%, #0a2f1f 100%);
    background: -moz-linear-gradient(135deg, #0f4d3a 0%, #165a3e 25%, #1a4d2e 50%, #0f3d2a 75%, #0a2f1f 100%);
    background: -o-linear-gradient(135deg, #0f4d3a 0%, #165a3e 25%, #1a4d2e 50%, #0f3d2a 75%, #0a2f1f 100%);
    background: linear-gradient(135deg, #0f4d3a 0%, #165a3e 25%, #1a4d2e 50%, #0f3d2a 75%, #0a2f1f 100%);
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.container {
    max-width: 800px;
    width: 90%;
    padding: 20px;
    z-index: 10;
}

.greeting-card {
    background: rgba(255, 255, 255, 0.95);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    padding: 60px 40px;
    -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    -webkit-animation: fadeIn 1s ease-in;
    -moz-animation: fadeIn 1s ease-in;
    -o-animation: fadeIn 1s ease-in;
    animation: fadeIn 1s ease-in;
    border: 3px solid transparent;
    background-image: 
        -webkit-linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
        -webkit-linear-gradient(135deg, var(--christmas-red) 0%, var(--christmas-gold) 25%, var(--christmas-green) 50%, var(--christmas-red) 75%, var(--christmas-gold) 100%);
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
        linear-gradient(135deg, var(--christmas-red) 0%, var(--christmas-gold) 25%, var(--christmas-green) 50%, var(--christmas-red) 75%, var(--christmas-gold) 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    -webkit-background-clip: padding-box, border-box;
    position: relative;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-moz-keyframes fadeIn {
    from {
        opacity: 0;
        -moz-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -moz-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -o-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

/* Language selector styles */
.language-selector {
    position: absolute;
    top: 20px;
    right: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    z-index: 100;
}

.language-selector label {
    font-size: 0.9em;
    color: #2c5f2d;
    font-weight: 600;
}

.language-dropdown {
    padding: 8px 12px;
    border: 2px solid var(--christmas-green);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    background: white;
    color: #2c5f2d;
    font-size: 0.95em;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-weight: 500;
}

.language-dropdown:hover {
    border-color: var(--christmas-red);
    -webkit-box-shadow: 0 2px 8px rgba(196, 30, 58, 0.2);
    -moz-box-shadow: 0 2px 8px rgba(196, 30, 58, 0.2);
    box-shadow: 0 2px 8px rgba(196, 30, 58, 0.2);
}

.language-dropdown:focus {
    outline: var(--focus-outline-width) solid var(--focus-outline-color);
    outline-offset: 2px;
    border-color: var(--christmas-gold);
    -webkit-box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
    -moz-box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}


.title {
    color: #c41e3a;
    font-size: 3em;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    -webkit-animation: glow 2s ease-in-out infinite alternate;
    -moz-animation: glow 2s ease-in-out infinite alternate;
    -o-animation: glow 2s ease-in-out infinite alternate;
    animation: glow 2s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
    from {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    }
    to {
        text-shadow: 2px 2px 20px rgba(196, 30, 58, 0.6);
    }
}

@-moz-keyframes glow {
    from {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    }
    to {
        text-shadow: 2px 2px 20px rgba(196, 30, 58, 0.6);
    }
}

@keyframes glow {
    from {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    }
    to {
        text-shadow: 2px 2px 20px rgba(196, 30, 58, 0.6);
    }
}

.greeting-text {
    font-size: 1.5em;
    color: #2c5f2d;
    line-height: 1.8;
    margin: 30px 0;
    min-height: 120px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-animation: greetingAppear 0.8s ease-out;
    -moz-animation: greetingAppear 0.8s ease-out;
    -o-animation: greetingAppear 0.8s ease-out;
    animation: greetingAppear 0.8s ease-out;
}

@-webkit-keyframes greetingAppear {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px) scale(0.95);
        transform: translateY(20px) scale(0.95);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(-5px) scale(1.02);
        transform: translateY(-5px) scale(1.02);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0) scale(1);
        transform: translateY(0) scale(1);
    }
}

@-moz-keyframes greetingAppear {
    0% {
        opacity: 0;
        -moz-transform: translateY(20px) scale(0.95);
        transform: translateY(20px) scale(0.95);
    }
    60% {
        opacity: 1;
        -moz-transform: translateY(-5px) scale(1.02);
        transform: translateY(-5px) scale(1.02);
    }
    100% {
        opacity: 1;
        -moz-transform: translateY(0) scale(1);
        transform: translateY(0) scale(1);
    }
}

@keyframes greetingAppear {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px) scale(0.95);
        -moz-transform: translateY(20px) scale(0.95);
        -ms-transform: translateY(20px) scale(0.95);
        -o-transform: translateY(20px) scale(0.95);
        transform: translateY(20px) scale(0.95);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(-5px) scale(1.02);
        -moz-transform: translateY(-5px) scale(1.02);
        -ms-transform: translateY(-5px) scale(1.02);
        -o-transform: translateY(-5px) scale(1.02);
        transform: translateY(-5px) scale(1.02);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0) scale(1);
        -moz-transform: translateY(0) scale(1);
        -ms-transform: translateY(0) scale(1);
        -o-transform: translateY(0) scale(1);
        transform: translateY(0) scale(1);
    }
}

.controls {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 40px;
}

/* Share buttons container */
.share-buttons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 30px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.share-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    background: white;
    color: #333;
    border: 2px solid #e0e0e0;
    padding: 12px 20px;
    font-size: 1em;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

.share-btn:hover {
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.share-btn:focus {
    outline: var(--focus-outline-width) solid var(--focus-outline-color);
    outline-offset: 2px;
}

.share-btn:active {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.share-btn.whatsapp {
    border-color: #25D366;
}

.share-btn.whatsapp:hover {
    background: #25D366;
    color: white;
}

.share-btn.twitter {
    border-color: #000000;
}

.share-btn.twitter:hover {
    background: #000000;
    color: white;
}

.share-btn.facebook {
    border-color: #1877F2;
}

.share-btn.facebook:hover {
    background: #1877F2;
    color: white;
}

.share-btn.email {
    border-color: #EA4335;
}

.share-btn.email:hover {
    background: #EA4335;
    color: white;
}

.share-btn svg {
    width: 20px;
    height: 20px;
}

.btn {
    /* Fallback for browsers that don't support gradients */
    background: #c41e3a;
    background: -webkit-linear-gradient(135deg, #c41e3a 0%, #a01729 100%);
    background: -moz-linear-gradient(135deg, #c41e3a 0%, #a01729 100%);
    background: -o-linear-gradient(135deg, #c41e3a 0%, #a01729 100%);
    background: linear-gradient(135deg, #c41e3a 0%, #a01729 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1em;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
    -moz-box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
    font-weight: 600;
}

.btn:hover {
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 6px 20px rgba(196, 30, 58, 0.6);
    -moz-box-shadow: 0 6px 20px rgba(196, 30, 58, 0.6);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.6);
    background: -webkit-linear-gradient(135deg, var(--christmas-gold) 0%, var(--christmas-gold-dark) 100%);
    background: -moz-linear-gradient(135deg, var(--christmas-gold) 0%, var(--christmas-gold-dark) 100%);
    background: -o-linear-gradient(135deg, var(--christmas-gold) 0%, var(--christmas-gold-dark) 100%);
    background: linear-gradient(135deg, var(--christmas-gold) 0%, var(--christmas-gold-dark) 100%);
}

.btn:focus {
    outline: var(--focus-outline-width) solid var(--focus-outline-color);
    outline-offset: 2px;
}

.btn:active {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

/* Snowflakes animation */
.snowflakes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.snowflake {
    position: absolute;
    top: -10%;
    color: white;
    font-size: 1.5em;
    opacity: 0.8;
    -webkit-animation: fall linear infinite;
    -moz-animation: fall linear infinite;
    -o-animation: fall linear infinite;
    animation: fall linear infinite;
}

@-webkit-keyframes fall {
    to {
        -webkit-transform: translateY(100vh) rotate(360deg);
        transform: translateY(100vh) rotate(360deg);
    }
}

@-moz-keyframes fall {
    to {
        -moz-transform: translateY(100vh) rotate(360deg);
        transform: translateY(100vh) rotate(360deg);
    }
}

@keyframes fall {
    to {
        -webkit-transform: translateY(100vh) rotate(360deg);
        -moz-transform: translateY(100vh) rotate(360deg);
        -ms-transform: translateY(100vh) rotate(360deg);
        -o-transform: translateY(100vh) rotate(360deg);
        transform: translateY(100vh) rotate(360deg);
    }
}

.snowflake:nth-child(1) {
    left: 10%;
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.snowflake:nth-child(2) {
    left: 20%;
    -webkit-animation-duration: 12s;
    animation-duration: 12s;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.snowflake:nth-child(3) {
    left: 30%;
    -webkit-animation-duration: 8s;
    animation-duration: 8s;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.snowflake:nth-child(4) {
    left: 40%;
    -webkit-animation-duration: 14s;
    animation-duration: 14s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.snowflake:nth-child(5) {
    left: 50%;
    -webkit-animation-duration: 11s;
    animation-duration: 11s;
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
}

.snowflake:nth-child(6) {
    left: 60%;
    -webkit-animation-duration: 9s;
    animation-duration: 9s;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.snowflake:nth-child(7) {
    left: 70%;
    -webkit-animation-duration: 13s;
    animation-duration: 13s;
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s;
}

.snowflake:nth-child(8) {
    left: 80%;
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.snowflake:nth-child(9) {
    left: 90%;
    -webkit-animation-duration: 12s;
    animation-duration: 12s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.snowflake:nth-child(10) {
    left: 95%;
    -webkit-animation-duration: 11s;
    animation-duration: 11s;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

/* Responsive design */
@media (max-width: 768px) {
    .title {
        font-size: 2em;
    }
    
    .greeting-text {
        font-size: 1.2em;
        min-height: 100px;
    }
    
    .greeting-card {
        padding: 40px 20px;
    }
    
    .language-selector {
        position: static;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 20px;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    
    .share-buttons {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }
    
    .share-btn {
        width: 100%;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    
    .controls {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
}

/* Christmas Lights Decoration */
.christmas-lights {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.light-string {
    position: absolute;
    top: 0;
    width: 100%;
    height: 60px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.light {
    width: 10px;
    height: 10px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    position: relative;
    -webkit-animation: twinkle 1.5s ease-in-out infinite;
    -moz-animation: twinkle 1.5s ease-in-out infinite;
    -o-animation: twinkle 1.5s ease-in-out infinite;
    animation: twinkle 1.5s ease-in-out infinite;
}

.light::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 1px;
    height: 15px;
    background: rgba(255, 255, 255, 0.3);
}

.light:nth-child(1) { background: var(--christmas-red); -webkit-animation-delay: 0s; animation-delay: 0s; }
.light:nth-child(2) { background: var(--christmas-green); -webkit-animation-delay: 0.1s; animation-delay: 0.1s; }
.light:nth-child(3) { background: var(--christmas-gold); -webkit-animation-delay: 0.2s; animation-delay: 0.2s; }
.light:nth-child(4) { background: var(--christmas-red); -webkit-animation-delay: 0.3s; animation-delay: 0.3s; }
.light:nth-child(5) { background: var(--christmas-green); -webkit-animation-delay: 0.4s; animation-delay: 0.4s; }
.light:nth-child(6) { background: var(--christmas-gold); -webkit-animation-delay: 0.5s; animation-delay: 0.5s; }
.light:nth-child(7) { background: var(--christmas-red); -webkit-animation-delay: 0.6s; animation-delay: 0.6s; }
.light:nth-child(8) { background: var(--christmas-green); -webkit-animation-delay: 0.7s; animation-delay: 0.7s; }
.light:nth-child(9) { background: var(--christmas-gold); -webkit-animation-delay: 0.8s; animation-delay: 0.8s; }
.light:nth-child(10) { background: var(--christmas-red); -webkit-animation-delay: 0.9s; animation-delay: 0.9s; }

@-webkit-keyframes twinkle {
    0%, 100% {
        opacity: 1;
        -webkit-box-shadow: 0 0 10px currentColor;
        box-shadow: 0 0 10px currentColor;
    }
    50% {
        opacity: 0.4;
        -webkit-box-shadow: 0 0 5px currentColor;
        box-shadow: 0 0 5px currentColor;
    }
}

@-moz-keyframes twinkle {
    0%, 100% {
        opacity: 1;
        -moz-box-shadow: 0 0 10px currentColor;
        box-shadow: 0 0 10px currentColor;
    }
    50% {
        opacity: 0.4;
        -moz-box-shadow: 0 0 5px currentColor;
        box-shadow: 0 0 5px currentColor;
    }
}

@keyframes twinkle {
    0%, 100% {
        opacity: 1;
        -webkit-box-shadow: 0 0 10px currentColor;
        -moz-box-shadow: 0 0 10px currentColor;
        box-shadow: 0 0 10px currentColor;
    }
    50% {
        opacity: 0.4;
        -webkit-box-shadow: 0 0 5px currentColor;
        -moz-box-shadow: 0 0 5px currentColor;
        box-shadow: 0 0 5px currentColor;
    }
}

/* Additional festive decorations */
.holly-decoration {
    position: absolute;
    font-size: 2em;
    opacity: 0.6;
    -webkit-animation: float 3s ease-in-out infinite;
    -moz-animation: float 3s ease-in-out infinite;
    -o-animation: float 3s ease-in-out infinite;
    animation: float 3s ease-in-out infinite;
}

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

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

@keyframes float {
    0%, 100% {
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }
    50% {
        -webkit-transform: translateY(-10px);
        -moz-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        -o-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

.holly-decoration:nth-child(1) {
    top: 10%;
    left: 5%;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.holly-decoration:nth-child(2) {
    top: 15%;
    right: 5%;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.holly-decoration:nth-child(3) {
    bottom: 10%;
    left: 8%;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.holly-decoration:nth-child(4) {
    bottom: 15%;
    right: 8%;
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
}

/* Hide decorative elements on small screens */
@media (max-width: 768px) {
    .holly-decoration {
        display: none;
    }
    
    .light-string .light {
        width: 8px;
        height: 8px;
    }
}
