html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: "Helvetica Neue", Arial, sans-serif;
    background: #000;
    color: #fff;
    position: relative;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    font-smooth: antialiased;
}

/* Hintergrundvideo */
.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0; 
    filter: brightness(1.0);
}

/* Overlay */
.overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 100vh;
    background: rgba(50,0,0,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    box-sizing: border-box;
}

.overlay h1 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: normal;
    color: #ff4444;
}

.overlay .highlight {
    color: #ff8888;
    font-weight: bold;
}

.intro-text, .call-to-action {
    max-width: 600px;
    line-height: 1.6;
    font-size: 1.2em;
    margin-top: 20px;
    color: #ffe6e6;
}

/* Countdown */
.countdown {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 1s forwards 0.5s;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    background: rgba(50,0,0,0.3);
    border: 1px solid #ff4444;
    border-radius: 10px;
    padding: 20px;
    min-width: 100px;
    box-sizing: border-box;
}

.countdown-item span {
    font-size: 4em;
    font-weight: bold;
    line-height: 1.2;
    color: #ff4444;
    animation: pulse 2s infinite;
}

.countdown-item p {
    margin-top: 10px;
    font-size: 1em;
    color: #ff9999;
}

/* Links */
a {
    color: #ff4444;
    text-decoration: none;
}

a:hover {
    color: #ff8888;
}

a:visited {
    color: #cc3333;
}

/* Kontaktseite */
.contact-body {
    background: #000;
    background: linear-gradient(180deg, #200000 0%, #000000 100%);
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    font-size: 1.1em;
}

.contact-container {
    background: rgba(50,0,0,0.7);
    padding: 30px;
    border-radius: 10px;
    max-width: 400px;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    border: 1px solid #ff4444;
}

.contact-container h1 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #ff4444;
    font-weight: normal;
}

.contact-container p {
    line-height: 1.5em;
    margin-bottom: 20px;
    color: #ffe6e6;
}

.contact-container form {
    display: flex;
    flex-direction: column;
}

.contact-container label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #ff9999;
}

.contact-container input, 
.contact-container textarea {
    padding: 10px;
    border: 1px solid #ff4444;
    border-radius: 5px;
    margin-bottom: 20px;
    width: 100%;
    box-sizing: border-box;
    background: #200000;
    color: #fff;
    font-size: 1em;
}

.contact-container button {
    background: #ff4444;
    color: #fff;
    font-weight: bold;
    padding: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    text-transform: uppercase;
}

.contact-container button:hover {
    background: #cc3636;
}

.success-message {
    background: #4caf50;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 0.9em;
}

.error-message {
    background: #f44336;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 0.9em;
}

/* Animationen */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Anpassungen */
@media (max-width: 600px) {
    .overlay h1 {
        font-size: 2em; /* Kleinere Schrift für kleinere Bildschirme */
    }

    .intro-text, .call-to-action {
        font-size: 1em;
    }

    .countdown {
        gap: 20px; /* Weniger Abstand, da weniger Platz */
        margin-top: 40px;
    }

    .countdown-item {
        min-width: 80px;
        padding: 15px;
    }

    .countdown-item span {
        font-size: 3em; /* Etwas kleinere Zahlen, um auf kleinen Bildschirmen zu passen */
    }

    .contact-body {
        font-size: 1em; /* Etwas kleinere Schrift auf Mobilgeräten */
    }

    .contact-container {
        padding: 20px;
    }

    .contact-container input, 
    .contact-container textarea {
        font-size: 0.9em;
    }
}
