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

body {
    font-family: 'Mountains of Christmas', cursive;
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 50%, #165B33 100%);
    min-height: 100vh;
    color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.greeting {
    font-size: 3rem;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
}

#guest-name {
    color: #fff;
}

.subtitle {
    font-size: 1.5rem;
    color: #f0f0f0;
    margin-bottom: 20px;
    font-weight: 400;
}

.message {
    font-size: 1.3rem;
    color: #FFD700;
    margin-bottom: 40px;
    font-weight: 400;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.video-container {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border: 3px solid #c41e3a;
}

video {
    width: 100%;
    border-radius: 10px;
    display: block;
}

.video-wrapper {
    position: relative;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(196, 30, 58, 0.9);
    border: 3px solid #FFD700;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.play-overlay:hover {
    background: rgba(196, 30, 58, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-overlay.hidden {
    display: none;
}

.play-icon {
    color: #FFD700;
    font-size: 2rem;
    margin-left: 5px;
}

.decoration {
    margin-top: 40px;
    font-size: 3rem;
}

.decoration span {
    margin: 0 15px;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

.decoration span:nth-child(2) {
    animation-delay: 0.3s;
}

.decoration span:nth-child(3) {
    animation-delay: 0.6s;
}

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

/* Schneeflocken Animation */
.snowflakes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -20px;
    color: #fff;
    font-size: 1.5rem;
    opacity: 0.8;
    animation: fall linear infinite;
}

.snowflake:nth-child(1) { left: 5%; animation-duration: 10s; animation-delay: 0s; font-size: 1rem; }
.snowflake:nth-child(2) { left: 15%; animation-duration: 12s; animation-delay: 1s; font-size: 1.5rem; }
.snowflake:nth-child(3) { left: 25%; animation-duration: 8s; animation-delay: 2s; font-size: 1.2rem; }
.snowflake:nth-child(4) { left: 35%; animation-duration: 14s; animation-delay: 0.5s; font-size: 1.8rem; }
.snowflake:nth-child(5) { left: 45%; animation-duration: 9s; animation-delay: 3s; font-size: 1rem; }
.snowflake:nth-child(6) { left: 55%; animation-duration: 11s; animation-delay: 1.5s; font-size: 1.4rem; }
.snowflake:nth-child(7) { left: 65%; animation-duration: 13s; animation-delay: 2.5s; font-size: 1.6rem; }
.snowflake:nth-child(8) { left: 75%; animation-duration: 10s; animation-delay: 4s; font-size: 1.1rem; }
.snowflake:nth-child(9) { left: 85%; animation-duration: 15s; animation-delay: 0.8s; font-size: 1.3rem; }
.snowflake:nth-child(10) { left: 95%; animation-duration: 7s; animation-delay: 2s; font-size: 1.7rem; }

@keyframes fall {
    0% {
        transform: translateY(-20px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 600px) {
    .greeting {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.3rem;
        line-height: 1.4;
    }

    .message {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    .decoration {
        font-size: 2rem;
    }

    .play-overlay {
        width: 60px;
        height: 60px;
    }

    .play-icon {
        font-size: 1.5rem;
    }
}
