
#kw-limit-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); z-index: 999999;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 1.5s ease;
}
#kw-limit-overlay.active { opacity: 1; pointer-events: auto; }
#kw-limit-overlay.active { display: flex; }
#kw-limit-box {
    background: #2F2F34; border: 1px solid #B19B0B;
    padding: 40px 36px; max-width: 380px; width: 90%;
    text-align: center; border-radius: 8px;
    font-family: 'Manrope', sans-serif; box-shadow: 0 0 40px rgba(177,155,11,0.2);
}
#kw-limit-box .kw-icon { font-size: 40px; margin-bottom: 14px; }
#kw-limit-box h2 { color: #B19B0B; margin: 0 0 12px; font-size: 18px; }
#kw-limit-box p { color: #bbb; margin: 0 0 24px; line-height: 1.6; font-size: 14px; }
#kw-limit-box .kw-buy-btn {
    display: inline-block; background: #B19B0B; color: #000;
    padding: 12px 30px; border-radius: 4px; text-decoration: none;
    font-weight: 700; font-size: 15px; transition: background 0.2s;
}
#kw-limit-box .kw-buy-btn:hover { background: #d4b910; }
#kw-limit-box .kw-close-btn {
    display: block; margin: 16px auto 0; background: none; border: none;
    color: #666; cursor: pointer; font-size: 13px; font-family: inherit;
}
#kw-limit-box .kw-close-btn:hover { color: #999; }

