/* Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: linear-gradient(45deg, rgba(26, 26, 26, 0.85), rgba(45, 13, 13, 0.85), rgba(26, 26, 26, 0.85)), url("img/bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    align-items: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
}

.hero {
    text-align: center;
    padding: 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: heartbeat 1s infinite;
}

h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    text-shadow: 0 0 15px rgba(204, 0, 0, 0.5);
    font-family: 'Times New Roman', serif;
}

h2 {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
    font-family: 'Times New Roman', serif;
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    min-width: 120px;
    box-shadow: 0 0 15px rgba(204, 0, 0, 0.2);
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    animation: heartbeat 1s infinite;
}

.countdown-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.newsletter {
    margin-top: 4rem;
    text-align: center;
}

.newsletter input[type="email"] {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 30px;
    color: #fff;
    width: 350px;
    max-width: 100%;
    margin: 1rem 0;
}

.newsletter button {
    background: #c00;
    color: #fff;
    border: none;
    padding: 1rem 3rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-left: 1rem;
    width: 350px;
    max-width: 100%;
}

.newsletter button:hover {
    animation: heartbeat 1s infinite;
}

.confirmation-message {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.8);
    display: none;
}

/* Animationen */
@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    15% {
        transform: scale(1.1);
    }
    30% {
        transform: scale(1);
    }
    45% {
        transform: scale(1.05);
    }
    60% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    /* Entferne äußere Abstände */
    .container {
        padding: 0;
    }

    /* Reduziere horizontales Padding im Hero-Bereich */
    .hero {
        padding: 3rem 1.5rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    /* Passe die Breite der Newsletter-Felder an */
    .newsletter input[type="email"],
    .newsletter button {
        width: 90%;
        margin: 1rem auto;
        display: block;
    }

    /* Kleinere Abstände im Countdown */
    .countdown {
        gap: 1rem;
        margin: 2rem 0;
    }
}
