/* ============================================
   WORK IN PROGRESS PAGE — PVDE EDITION
============================================= */

.wip-wrapper {
    max-width: 900px;
    margin: 120px auto;
    text-align: center;
    padding: 40px;
}

.wip-box {
    padding: 50px 40px;
    border-radius: 18px;
    border: 1px solid rgba(140,75,255,0.25);
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(14px);
    box-shadow: 0 0 30px rgba(63,140,255,0.20);
}

/* ICONA WIP INGRANDITA E ANIMATA */
.wip-icon-glow {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.wip-icon {
    width: 160px;              /* ERA più piccola → ora è grande */
    height: auto;
    opacity: .9;
    animation: wipPulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(140,75,255,0.45));
}

/* ANIMAZIONE PULSE MORBIDA */
@keyframes wipPulse {
    0% {
        transform: scale(1);
        opacity: 0.9;
        filter: drop-shadow(0 0 10px rgba(140,75,255,0.30));
    }
    50% {
        transform: scale(1.12);  /* leggero ingrandimento */
        opacity: 1;
        filter: drop-shadow(0 0 25px rgba(140,75,255,0.55));
    }
    100% {
        transform: scale(1);
        opacity: 0.9;
        filter: drop-shadow(0 0 10px rgba(140,75,255,0.30));
    }
}




.wip-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.wip-subtitle {
    font-size: 18px;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 35px;
}

.wip-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 10px;
    background: linear-gradient(90deg, #3F8CFF, #8C4BFF);
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: 0.3s;
}

.wip-btn:hover {
    opacity: 0.85;
}

/* MOBILE */
@media (max-width: 900px) {
    .wip-wrapper {
        margin: 80px auto;
        padding: 20px;
    }

    .wip-title {
        font-size: 28px;
    }

    .wip-subtitle {
        font-size: 16px;
    }

    .wip-box {
        padding: 40px 20px;
    }
}
