#max-widget-container {    position: fixed;    bottom: 24px;    right: 24px;    z-index: 1000;    display: flex;    flex-direction: column;    align-items: flex-end;    opacity: 0;    transform: translateY(32px);    pointer-events: none;    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);}#max-widget-container.widget-visible {    opacity: 1;    transform: translateY(0);    pointer-events: auto;}/* Glassmorphism Card Base */.glass-card {    background: rgba(255, 255, 255, 0.95);    backdrop-filter: blur(12px);    -webkit-backdrop-filter: blur(12px);    border: 1px solid rgba(226, 232, 240, 0.9);    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.03);}/* Prompt Card (FIXED WIDTH: 300px) */#max-prompt-card {    width: 300px;    padding: 16px;    border-radius: 20px;    position: relative;    transition: all 0.3s ease;}.prompt-close-btn {    position: absolute;    top: -8px;    left: -8px;    width: 24px;    height: 24px;    background-color: #ffffff;    border: 1px solid #e2e8f0;    border-radius: 50%;    color: #94a3b8;    display: flex;    align-items: center;    justify-content: center;    font-size: 12px;    cursor: pointer;    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);    transition: all 0.2s ease;    opacity: 0;}#max-prompt-card:hover .prompt-close-btn {    opacity: 1;}.prompt-close-btn:hover {    color: #334155;    background-color: #f8fafc;}.typing-container {    min-height: 44px;    display: flex;    align-items: center;    margin-bottom: 12px;}.typing-text {    font-size: 13.5px;    font-weight: 500;    color: #334155;    line-height: 1.4;    letter-spacing: -0.01em;}/* Typewriter Cursor Animation */.typing-cursor::after {    content: '|';    animation: blink 0.8s infinite;    color: #2563eb;    font-weight: 600;    margin-left: 2px;}@keyframes blink {    0%, 100% { opacity: 1; }    50% { opacity: 0; }}/* MAX Action Button Link */.max-action-btn {    width: 100%;    background: linear-gradient(135deg, #2563eb, #4f46e5);    color: #ffffff;    border: none;    padding: 10px 16px;    border-radius: 14px;    font-weight: 600;    font-size: 13px;    cursor: pointer;    display: flex;    align-items: center;    justify-content: center;    gap: 10px;    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);    transition: all 0.2s ease;    text-decoration: none;}.max-action-btn:hover *{text-decoration: none;}.max-action-btn:hover {    background: linear-gradient(135deg, #1d4ed8, #4338ca);    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);    color: #ffffff;text-decoration: none;}.max-action-btn:active {    transform: scale(0.98);}.icon-wrapper {    position: relative;    display: flex;    align-items: center;    justify-content: center;}.online-dot {    position: absolute;    top: -2px;    right: -2px;    width: 8px;    height: 8px;    background-color: #34d399;    border-radius: 50%;    border: 2px solid #2563eb;}.pulse-ring {    position: absolute;    top: -2px;    right: -2px;    width: 8px;    height: 8px;    background-color: #34d399;    border-radius: 50%;    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;}@keyframes ping {    75%, 100% {        transform: scale(2.5);        opacity: 0;    }}.btn-badge {    background-color: rgba(255, 255, 255, 0.2);    padding: 2px 6px;    border-radius: 4px;    font-size: 10px;    font-weight: 800;    text-transform: uppercase;    letter-spacing: 0.05em;}/* Media Queries for Mobile Responsiveness */@media (max-width: 480px) {    #max-widget-container {        right: 16px;        bottom: 16px;    }}