/* Under Construction Popup Stylesheet */
.uc-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.uc-popup-overlay.uc-active {
    opacity: 1;
    visibility: visible;
}

.uc-popup-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    max-width: 420px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.uc-popup-overlay.uc-active .uc-popup-card {
    transform: scale(1);
}

.uc-popup-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #94a3b8;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.uc-popup-close-btn:hover {
    color: #475569;
}

.uc-popup-illustration {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
}

/* Gear animations */
.uc-gear-big {
    transform-origin: 0px 0px;
    animation: rotateGear 12s linear infinite;
}

.uc-gear-small {
    transform-origin: 0px 0px;
    animation: rotateGearCounter 8s linear infinite;
}

@keyframes rotateGear {
    from { transform: translate(100px, 90px) rotate(0deg); }
    to { transform: translate(100px, 90px) rotate(360deg); }
}

@keyframes rotateGearCounter {
    from { transform: translate(132px, 122px) rotate(0deg); }
    to { transform: translate(132px, 122px) rotate(-360deg); }
}

.uc-popup-title {
    font-size: 24px;
    color: #1e293b;
    margin: 0 0 12px;
    font-weight: 700;
}

.uc-popup-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 25px;
}

.uc-popup-btn {
    background-color: #3b82f6;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    width: 100%;
}

.uc-popup-btn:hover {
    background-color: #2563eb;
}

.uc-popup-btn:active {
    transform: scale(0.98);
}
