.mbq-widget {
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    max-width: 680px;
    margin: 40px auto;
    font-family: 'Instrument Sans', sans-serif;
    overflow: hidden;
}

.mbq-header {
    background: #c94e1c;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .02em;
}

.mbq-messages {
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 440px;
    overflow-y: auto;
    scroll-behavior: smooth;
}

.mbq-bubble {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 15px;
    line-height: 1.5;
    animation: mbqFadeIn .25s ease;
}

.mbq-bubble--guide {
    background: #2a2a2a;
    color: #f0ece4;
    border-bottom-left-radius: 4px;
    align-self: flex-start;
}

.mbq-bubble--user {
    background: #c94e1c;
    color: #fff;
    border-bottom-right-radius: 4px;
    align-self: flex-end;
}

.mbq-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    animation: mbqFadeIn .25s ease;
}

.mbq-btn {
    background: transparent;
    border: 1.5px solid rgba(201,78,28,.6);
    color: #f0ece4;
    border-radius: 20px;
    padding: 8px 18px;
    font-size: 14px;
    font-family: 'Instrument Sans', sans-serif;
    cursor: pointer;
    transition: background .15s, border-color .15s, color .15s;
}

.mbq-btn:hover {
    background: #c94e1c;
    border-color: #c94e1c;
    color: #fff;
}

.mbq-btn:disabled {
    opacity: .5;
    cursor: default;
}

.mbq-results {
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: mbqFadeIn .3s ease;
    width: 100%;
}

.mbq-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #242424;
    border: 1px solid rgba(255,255,255,.1);
    border-left: 3px solid #c94e1c;
    border-radius: 8px;
    padding: 14px 16px;
    text-decoration: none;
    transition: background .15s;
}

.mbq-card:hover {
    background: #2c2c2c;
}

.mbq-card-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.mbq-card-tagline {
    font-size: 13px;
    color: rgba(255,255,255,.6);
}

.mbq-card-cta {
    font-size: 13px;
    font-weight: 600;
    color: #c94e1c;
    margin-top: 4px;
}

.mbq-footer {
    padding: 12px 16px;
    border-top: 1px solid rgba(255,255,255,.06);
    text-align: center;
}

.mbq-restart {
    display: none;
    background: transparent;
    border: none;
    color: rgba(255,255,255,.4);
    font-size: 13px;
    font-family: 'Instrument Sans', sans-serif;
    cursor: pointer;
    text-decoration: underline;
    padding: 4px 0;
}

.mbq-restart:hover {
    color: rgba(255,255,255,.7);
}

@keyframes mbqFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
    .mbq-options { flex-direction: column; }
    .mbq-btn { width: 100%; text-align: center; }
}