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

/* Body */
html, body {
    height: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    color: #fff;
    display: flex;
    flex-direction: column;
    text-align: center;
}

/* Container */
.container {
    flex: 1; /* nimmt den verfügbaren Platz ein */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1.5s ease-in-out forwards;
}

/* Logo */
.logo {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    animation: slideDown 1.2s ease-out forwards;
}

/* Subtitle */
.subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1.5s ease forwards;
    animation-delay: 0.5s;
}

/* Coming Soon Text */
.coming-soon {
    font-size: 1.5rem;
    font-weight: 600;
    color: #cdaa7d;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeInUp 1.5s ease forwards;
    animation-delay: 1s;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.countdown div {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 12px;
    min-width: 70px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.countdown div:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.7);
}

.countdown span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #cdaa7d;
    text-align: center;
}

.countdown small {
    display: block;
    font-size: 0.8rem;
    color: #aaa;
    text-align: center;
}

/* Footer */
footer {
    text-align: center;
    padding: 15px 0;
    font-size: 0.9em;
    color: #999;
    font-family: 'Montserrat', sans-serif;
    border-top: 1px solid #e0e0e0;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);  /* Diese Zeile entfernen oder auskommentieren */
}

/* Animations */
@keyframes fadeIn {
    0% { opacity: 0; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes slideDown {
    0% { opacity: 0; transform: translateY(-50px); }
    100% { opacity: 1; transform: translateY(0); }
}

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

/* Responsive */
@media (max-width: 600px) {
    .logo {
        font-size: 2rem;
    }
    .subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    .coming-soon {
        font-size: 1.2rem;
    }
    .countdown div {
        min-width: 60px;
        padding: 12px 15px;
    }
    .countdown span {
        font-size: 1.5rem;
    }
    .countdown small {
        font-size: 0.7rem;
    }
}
