.wip-body .background {
    filter: blur(25px);
    -webkit-filter: blur(25px);
    opacity: 0.35;
    transition: opacity 2s ease;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, rgba(245, 245, 247, 0.4) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.message {
    background: rgba(255, 255, 255, 0.8);
    padding: 5rem 6rem; /* Standardized padding for a cohesive "frame" look */
    border-radius: 50px;
    box-shadow: 0 60px 120px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: auto; /* Wraps text closely */
    max-width: 900px;
    margin: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    animation: bounceIn 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.message h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 4rem);
    margin: 0 0 1.5rem 0;
    color: var(--text-color);
    line-height: 1.1;
    letter-spacing: -2px;
}

.message p {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    margin-bottom: 4rem;
    color: var(--text-color);
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.4;
    opacity: 0.7;
}

.message .cta-button {
    width: 160px;
    height: 160px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .message {
        padding: 4rem 3rem;
        border-radius: 35px;
    }
}

@media (max-width: 480px) {
    .message {
        padding: 3rem 2rem;
    }
    
    .message h2 {
        font-size: 1.8rem;
    }

    .message p {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

    .message .cta-button {
        width: 130px;
        height: 130px;
    }
}
