<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.close-btn-with-svg {
    background: url('data:image/svg+xml;utf8,&lt;svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"&gt;&lt;path d="M18 6L6 18M6 6L18 18" stroke="currentColor" stroke-width="2" stroke-linecap="round"/&gt;&lt;/svg&gt;') no-repeat center;
    width: 24px;
    height: 24px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    float:right;
    right:-10px;
    top:-10px;
}
.language-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}

    .language-popup-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }
.language-popup {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    padding: 32px;
    position: relative;
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}

.language-popup-overlay.active .language-popup {
    transform: translateY(0);
    opacity: 1;
}
.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f5f7;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .close-btn:hover {
        background: #eaeaea;
        transform: rotate(90deg);
    }

    .close-btn svg {
        width: 16px;
        height: 16px;
        stroke: #666;
    }

.popup-icon {
    text-align: center;
    margin-bottom: 20px;
}

    .popup-icon svg {
        width: 60px;
        height: 60px;
        color: #4f46e5;
    }

.popup-title {
    font-size: 22px;
    font-weight: 600;
    color: #111;
    text-align: center;
    margin-bottom: 12px;
}

.popup-message {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
    text-align: center;
    margin-bottom: 28px;
}
.language-highlight {
    display: inline-flex;
    align-items: center;
    background: #f0f4ff;
    color: #4f46e5;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 600;
    margin: 0 4px;
}

    .language-highlight svg {
        width: 16px;
        height: 16px;
        margin-right: 6px;
    }
.popup-buttons {
    display: flex;
    gap: 12px;
}

.popup-btn {
    flex: 1;
    padding: 14px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-switch {
    background: #4f46e5;
    color: white;
    border: none;
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3);
}

    .btn-switch:hover {
        background: #4338ca;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(79, 70, 229, 0.4);
    }

    .btn-switch:active {
        transform: translateY(0);
    }

.btn-cancel {
    background: white;
    color: #555;
    border: 1px solid #e5e7eb;
}

    .btn-cancel:hover {
        background: #f9fafb;
        border-color: #d1d5db;
    }
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.language-highlight {
    animation: pulse 2s infinite;
}
</pre></body></html>