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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1E293B;
    background-image: url('Zapfe_01.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Dark overlay like in the original zapfe design */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 41, 59, 0.9);
    z-index: 0;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.content {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    text-align: center;
    animation: slideUp 0.8s ease-out;
    border: 2px solid rgba(242, 201, 76, 0.5);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: bold;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.8);
}

.subtitle {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6), 0 1px 2px rgba(0, 0, 0, 0.8);
}

.new-domain {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(242, 201, 76, 0.95);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(242, 201, 76, 0.5), 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(30, 41, 59, 0.2);
}

.new-domain a {
    color: #1E293B;
    text-decoration: none;
    font-size: 2rem;
    font-weight: bold;
    display: block;
    transition: transform 0.3s ease;
}

.new-domain a:hover {
    transform: scale(1.05);
}

.description {
    font-size: 1.1rem;
    color: #1E293B;
    margin: 2rem 0;
    line-height: 1.8;
    opacity: 0.9;
}

.redirect-notice {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    border-left: 4px solid #F2C94C;
    border: 1px solid rgba(242, 201, 76, 0.3);
}

.redirect-notice p {
    margin-bottom: 1rem;
    color: white;
    opacity: 0.95;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

#countdown {
    font-weight: bold;
    color: #F2C94C;
    background: #1E293B;
    padding: 2px 8px;
    border-radius: 4px;
}

.redirect-button {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(242, 201, 76, 0.95);
    backdrop-filter: blur(2px);
    color: #1E293B;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 201, 76, 0.3);
    border: 2px solid rgba(30, 41, 59, 0.1);
}

.redirect-button:hover {
    background: rgba(241, 197, 73, 0.98);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 201, 76, 0.4);
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .content {
        padding: 2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .new-domain a {
        font-size: 1.5rem;
    }
}