* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    color: #333;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.container {
    text-align: center;
    padding: 3rem 2rem;
    max-width: 700px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(220, 20, 60, 0.15);
    position: relative;
    z-index: 10;
}

.logo-container {
    margin-bottom: 1.5rem;
}

.logo {
    max-width: 200px;
    height: auto;
}

h1 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c2c2c;
    line-height: 1.3;
    font-weight: 600;
}

.maintenance-box {
    background: linear-gradient(to bottom, #fff, #fafafa);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    margin: 2rem 0;
}

h2 {
    font-size: 1.6rem;
    color: #dc143c;
    margin-bottom: 1rem;
    font-weight: 600;
}

p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    color: #555;
}

.subtitle {
    color: #dc143c;
    font-weight: 500;
    margin-top: 1rem;
}

.christmas-message {
    margin: 2rem 0;
    padding: 1.2rem;
    background: linear-gradient(135deg, #dc143c 0%, #b81034 100%);
    border-radius: 10px;
    color: white;
}

.christmas-message p {
    font-size: 1.1rem;
    color: white;
    font-weight: 500;
    margin: 0;
}

.contact-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f8f8;
    border-radius: 10px;
    border: 1px solid #e8e8e8;
}

.contact-info p {
    font-size: 1rem;
    margin: 0.4rem 0;
    color: #555;
}

/* Schneeflocken Animation */
.snowflakes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.snowflake {
    position: absolute;
    top: -10%;
    color: #dc143c;
    font-size: 1.2rem;
    opacity: 0.6;
    animation: fall linear infinite;
}

@keyframes fall {
    to {
        transform: translateY(105vh) rotate(360deg);
    }
}

.snowflake:nth-child(1) {
    left: 10%;
    animation-duration: 10s;
    animation-delay: 0s;
}

.snowflake:nth-child(2) {
    left: 20%;
    animation-duration: 12s;
    animation-delay: 2s;
}

.snowflake:nth-child(3) {
    left: 30%;
    animation-duration: 9s;
    animation-delay: 4s;
}

.snowflake:nth-child(4) {
    left: 40%;
    animation-duration: 11s;
    animation-delay: 1s;
}

.snowflake:nth-child(5) {
    left: 50%;
    animation-duration: 13s;
    animation-delay: 3s;
}

.snowflake:nth-child(6) {
    left: 60%;
    animation-duration: 10s;
    animation-delay: 5s;
}

.snowflake:nth-child(7) {
    left: 70%;
    animation-duration: 11s;
    animation-delay: 2s;
}

.snowflake:nth-child(8) {
    left: 80%;
    animation-duration: 12s;
    animation-delay: 4s;
}

.snowflake:nth-child(9) {
    left: 90%;
    animation-duration: 9s;
    animation-delay: 1s;
}

.snowflake:nth-child(10) {
    left: 15%;
    animation-duration: 10s;
    animation-delay: 3s;
}

.snowflake:nth-child(11) {
    left: 55%;
    animation-duration: 11s;
    animation-delay: 0s;
}

.snowflake:nth-child(12) {
    left: 75%;
    animation-duration: 12s;
    animation-delay: 2s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    .logo {
        max-width: 140px;
    }

    .maintenance-box {
        padding: 1rem;
    }
}
