/* Extreme AI Launcher v1.1.0 */

typebot-bubble::part(button),
typebot-bubble::part(preview-message) {
    display: none !important;
}

.extreme-ai-launcher {
    --extreme-navy: #0d3b66;
    --extreme-navy-dark: #062746;
    --extreme-gold: #d4af37;
    --extreme-white: #ffffff;
    --extreme-green: #20bf6b;
    --extreme-red: #ef3434;
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 2147482000;
    direction: rtl;
    font-family: Cairo, Tahoma, Arial, sans-serif;
    -webkit-tap-highlight-color: transparent;
}

.extreme-ai-message {
    position: absolute;
    right: 2px;
    bottom: 88px;
    width: 260px;
    box-sizing: border-box;
    padding: 17px 18px 16px;
    color: var(--extreme-white);
    background:
        radial-gradient(circle at 85% 10%, rgba(255,255,255,.08), transparent 34%),
        linear-gradient(145deg, var(--extreme-navy), var(--extreme-navy-dark));
    border: 1px solid rgba(212,175,55,.9);
    border-radius: 17px 17px 5px 17px;
    box-shadow: 0 15px 38px rgba(0,25,55,.30), 0 0 0 1px rgba(255,255,255,.04) inset;
    text-align: right;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(16px) scale(.96);
    transition: opacity .38s ease, transform .38s ease, visibility .38s ease;
}

.extreme-ai-message.extreme-ai-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.extreme-ai-message::after {
    content: "";
    position: absolute;
    right: 27px;
    bottom: -9px;
    width: 18px;
    height: 18px;
    background: var(--extreme-navy-dark);
    border-right: 1px solid rgba(212,175,55,.9);
    border-bottom: 1px solid rgba(212,175,55,.9);
    transform: rotate(45deg);
}

.extreme-ai-close {
    position: absolute;
    top: 8px;
    left: 9px;
    width: 27px;
    height: 27px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--extreme-gold);
    font-size: 21px;
    line-height: 27px;
    text-align: center;
    cursor: pointer;
    z-index: 3;
}

.extreme-ai-close:hover { background: rgba(255,255,255,.10); }

.extreme-ai-message-logo {
    position: absolute;
    top: 14px;
    right: 15px;
    width: 25px;
    height: 25px;
}

.extreme-ai-message-content { padding-top: 2px; padding-right: 34px; }
.extreme-ai-title,
.extreme-ai-subtitle,
.extreme-ai-description,
.extreme-ai-start { display: block; }
.extreme-ai-title { margin: 0 0 7px; padding-left: 27px; color: #fff; font-size: 16px; font-weight: 700; line-height: 1.55; }
.extreme-ai-subtitle { margin-bottom: 7px; color: #fff; font-size: 13px; font-weight: 700; line-height: 1.65; }
.extreme-ai-description { color: rgba(255,255,255,.94); font-size: 12.5px; line-height: 1.75; }
.extreme-ai-start {
    width: 100%; box-sizing: border-box; margin-top: 12px; padding: 8px 14px;
    border-radius: 20px; background: linear-gradient(135deg, #e4bd4b, var(--extreme-gold));
    color: #17324e; font-size: 13px; font-weight: 700; line-height: 1.3; text-align: center;
}

.extreme-ai-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    padding: 0;
    border: 2px solid rgba(255,255,255,.92);
    border-radius: 50%;
    background: radial-gradient(circle at 35% 28%, #174f82 0%, var(--extreme-navy) 43%, var(--extreme-navy-dark) 100%);
    box-shadow: 0 10px 30px rgba(0,37,78,.40), 0 0 0 0 rgba(212,175,55,.42);
    cursor: pointer;
    overflow: visible;
    animation: extremeAiPulse 12s ease-out infinite;
    transition: transform .24s ease, box-shadow .24s ease;
}
.extreme-ai-button:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 14px 34px rgba(0,37,78,.46), 0 0 0 5px rgba(212,175,55,.20); }
.extreme-ai-button:active { transform: scale(.97); }

.extreme-ai-icon-bubble {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 37px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 9px rgba(0,20,45,.20);
}
.extreme-ai-icon-bubble::after {
    content: "";
    position: absolute;
    left: 8px;
    bottom: -5px;
    width: 12px;
    height: 12px;
    background: #fff;
    transform: rotate(45deg);
    border-radius: 2px;
}
.extreme-ai-brand-mark { position: relative; z-index: 2; width: 29px; height: 29px; }
.extreme-ai-badge {
    position: absolute; top: -5px; left: -4px; display: flex; align-items: center; justify-content: center;
    width: 23px; height: 23px; border: 3px solid #fff; border-radius: 50%; background: var(--extreme-red);
    color: #fff; font-size: 12px; font-weight: 700; line-height: 1;
}
.extreme-ai-online {
    position: absolute; right: -1px; bottom: 2px; width: 16px; height: 16px;
    border: 3px solid #fff; border-radius: 50%; background: var(--extreme-green); box-shadow: 0 2px 7px rgba(0,0,0,.20);
}

@keyframes extremeAiPulse {
    0%, 76%, 100% { box-shadow: 0 10px 30px rgba(0,37,78,.40), 0 0 0 0 rgba(212,175,55,.38); }
    83% { box-shadow: 0 10px 30px rgba(0,37,78,.40), 0 0 0 13px rgba(212,175,55,0); }
}

.extreme-ai-button:focus-visible,
.extreme-ai-message:focus-visible,
.extreme-ai-close:focus-visible { outline: 3px solid var(--extreme-gold); outline-offset: 3px; }

@media (max-width: 600px) {
    .extreme-ai-launcher { right: 14px; bottom: 17px; }
    .extreme-ai-button { width: 62px; height: 62px; }
    .extreme-ai-icon-bubble { width: 39px; height: 34px; border-radius: 11px; }
    .extreme-ai-brand-mark { width: 26px; height: 26px; }
    .extreme-ai-badge { width: 21px; height: 21px; font-size: 11px; }
    .extreme-ai-online { width: 14px; height: 14px; }
    .extreme-ai-message {
        right: 0; bottom: 76px; width: 228px; max-width: calc(100vw - 34px);
        padding: 13px 14px 12px; border-radius: 15px 15px 5px 15px;
    }
    .extreme-ai-message-logo { top: 12px; right: 12px; width: 21px; height: 21px; }
    .extreme-ai-message-content { padding-right: 29px; }
    .extreme-ai-title { margin-bottom: 5px; padding-left: 25px; font-size: 14px; line-height: 1.45; }
    .extreme-ai-subtitle { margin-bottom: 4px; font-size: 11.5px; line-height: 1.55; }
    .extreme-ai-description { font-size: 11px; line-height: 1.60; }
    .extreme-ai-start { margin-top: 8px; padding: 7px 10px; font-size: 11.5px; }
    .extreme-ai-close { top: 6px; left: 6px; width: 25px; height: 25px; font-size: 19px; }
}

@media (prefers-reduced-motion: reduce) {
    .extreme-ai-button { animation: none; }
    .extreme-ai-message { transition: none; }
}


/* زر إغلاق نافذة Typebot — v1.1.0 */
.extreme-ai-chat-close {
    position: fixed;
    display: none;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid rgba(13,59,102,.14);
    border-radius: 50%;
    background: rgba(255,255,255,.96);
    color: #17324e;
    box-shadow: 0 5px 18px rgba(0,25,55,.18);
    font-family: Arial, sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
    z-index: 2147483600;
    -webkit-tap-highlight-color: transparent;
    transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
}
.extreme-ai-chat-close.extreme-ai-chat-close-visible { display: flex; }
.extreme-ai-chat-close:hover {
    background: #fff;
    transform: scale(1.06);
    box-shadow: 0 7px 22px rgba(0,25,55,.24);
}
.extreme-ai-chat-close:active { transform: scale(.96); }
.extreme-ai-chat-close:focus-visible {
    outline: 3px solid var(--extreme-gold);
    outline-offset: 3px;
}

@media (max-width: 600px) {
    .extreme-ai-chat-close {
        width: 42px;
        height: 42px;
        font-size: 30px;
    }
}
