body {
    margin: 0;
    overflow: hidden;
    font-family: 'Dancing Script', cursive; /* Geschwungene Schriftart */
    color: #F0E68C; /* Heller Goldton als Standardtextfarbe */
    text-align: center;
    background: url('weihnachtslandschaft.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.content {
    position: relative;
    z-index: 2;
    padding: 20px;
    max-width: 800px;
    box-sizing: border-box;
    /* Optional: Hintergrund für den Textkasten etwas weniger opak machen, wenn der Text dunkler ist */
    background: rgba(0, 0, 0, 0.3); /* Etwas transparenter */
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.text-box {
    padding: 30px 40px;
}

h1 {
    font-family: 'Dancing Script', cursive; /* Auch für den Titel die geschwungene Schrift */
    font-size: 3.5em; /* Etwas größer für bessere Lesbarkeit */
    margin-bottom: 20px;
    line-height: 1.3;
    color: #FFD700; /* Reiner Goldton für den Titel */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9); /* Starker Schatten für Sichtbarkeit */
}

p {
    font-family: 'Dancing Script', cursive; /* Auch für den Paragraphen */
    font-size: 1.8em; /* Etwas größer */
    margin-bottom: 30px;
    line-height: 1.5;
    color: #e1ba36; /* Goldgelb für den Text */
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
}

.enter-button {
    display: inline-block;
    background: linear-gradient(to bottom, #FFD700 0%, #DAA520 100%); /* Goldener Farbverlauf */
    color: #5C4033; /* Dunkelbraune Schrift für Kontrast zu Gold */
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    letter-spacing: 1px;
    font-weight: bold; /* Macht den Text im Button kräftiger */
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6); /* Stärkerer Schatten */
    border: 1px solid #B8860B; /* Kleiner Goldrand */
}

.enter-button:hover {
    background: linear-gradient(to bottom, #FFEC8B 0%, #CD853F 100%); /* Hellerer Goldton beim Hover */
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7); /* Noch stärkerer Schatten beim Hover */
}

/* Schneefall Container (unverändert) */
.snow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.snowflake {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    opacity: 0.8;
    animation: fall linear infinite;
}

@keyframes fall {
    to {
        transform: translateY(100vh);
    }
}