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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #333;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    width: 100%;
    max-width: 850px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    overflow: hidden;
    animation: fadeIn 1s ease-in;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

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

.content {
    padding: 70px 50px;
    text-align: center;
}

.logo-container {
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 30px;
}

.logo-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #667eea, #764ba2, transparent);
    border-radius: 2px;
}

.church-name {
    font-size: 2.8rem;
    color: #667eea;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(102, 126, 234, 0.2);
    letter-spacing: -0.5px;
}

.church-location {
    font-size: 1.4rem;
    color: #764ba2;
    font-weight: 500;
    margin-top: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.construction-message {
    margin: 50px 0;
    padding: 40px 35px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08),
                0 0 0 1px rgba(102, 126, 234, 0.1) inset;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.construction-message::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.icon {
    font-size: 4.5rem;
    margin-bottom: 25px;
    animation: bounce 2s infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    position: relative;
    z-index: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.construction-message h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    letter-spacing: -0.3px;
}

.construction-message p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.location {
    font-weight: 600;
    color: #764ba2;
    font-size: 1.3rem;
    margin-top: 20px;
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 8px 20px;
    background: rgba(118, 75, 162, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(118, 75, 162, 0.2);
}

.contact-info {
    margin-top: 40px;
    padding: 25px;
    color: #666;
    font-size: 1.05rem;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 25px;
    text-align: center;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .content {
        padding: 50px 25px;
    }
    
    .logo-container {
        margin-bottom: 40px;
        padding-bottom: 25px;
    }
    
    .church-name {
        font-size: 2rem;
    }
    
    .church-location {
        font-size: 1.1rem;
    }
    
    .construction-message {
        margin: 35px 0;
        padding: 30px 25px;
    }
    
    .construction-message h2 {
        font-size: 1.6rem;
    }
    
    .construction-message p {
        font-size: 1.05rem;
    }
    
    .location {
        font-size: 1.1rem;
        padding: 6px 16px;
    }
    
    .icon {
        font-size: 3.5rem;
    }
    
    .contact-info {
        margin-top: 30px;
        padding: 20px;
    }
}

