/**
 * Welcome Popup Styles
 */

.ads-welcome-popup {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.ads-welcome-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 38, 62, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.ads-welcome-modal {
    position: relative;
    background: #fff;
    max-width: 480px;
    width: 100%;
    border-radius: 16px;
    padding: 40px 32px 32px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 38, 62, 0.3);
    animation: ads-welcome-in 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

@keyframes ads-welcome-in {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.ads-welcome-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: #6b7280;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: all 0.2s ease;
    padding: 0;
}
.ads-welcome-close:hover {
    background: #f3f4f6;
    color: #00263E;
}

.ads-welcome-icon {
    font-size: 48px;
    margin-bottom: 12px;
    line-height: 1;
}

.ads-welcome-title {
    font-size: 24px;
    font-weight: 800;
    color: #00263E;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.ads-welcome-message {
    font-size: 15px;
    color: #4b5563;
    margin: 0 0 24px;
    line-height: 1.6;
}

.ads-welcome-cta {
    background: #F57E36;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    font-family: inherit;
}
.ads-welcome-cta:hover {
    background: #d96920;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(245, 126, 54, 0.35);
}

.ads-welcome-fineprint {
    margin: 16px 0 0;
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

@media (max-width: 480px) {
    .ads-welcome-modal {
        padding: 32px 24px 24px;
    }
    .ads-welcome-title {
        font-size: 20px;
    }
    .ads-welcome-message {
        font-size: 14px;
    }
}
