.dq-live {
    margin: 2rem 0;
    padding: clamp(1.1rem, 2.8vw, 1.8rem);
    overflow: hidden;
    background: linear-gradient(135deg, #211126 0%, #3d1639 52%, #611d48 100%);
    border: 1px solid rgba(255, 102, 151, .38);
    border-radius: 20px;
    box-shadow: 0 18px 46px rgba(48, 13, 44, .23);
}

.dq-live__heading {
    max-width: 760px;
    margin: 0 auto 1rem;
    text-align: center;
}

.dq-live__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-bottom: .55rem;
    color: #ffd9e7;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.dq-live__dot {
    width: .58rem;
    height: .58rem;
    background: #ff4764;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(255, 71, 100, .14);
}

.dq-live__title {
    margin: 0 0 .55rem;
    color: #fff !important;
    font-size: clamp(1.35rem, 3vw, 1.9rem);
    line-height: 1.2;
}

.dq-live__text {
    margin: 0;
    color: #f3ddea;
    font-size: .98rem;
    line-height: 1.55;
}

.dq-live__stage {
    display: grid;
    isolation: isolate;
    min-width: 0;
    aspect-ratio: 3.25 / 1;
    border-radius: 15px;
}

.dq-live__widget,
.dq-live__fallback-shell {
    grid-area: 1 / 1;
}

.dq-live__widget {
    position: relative;
    z-index: 2;
    min-width: 0;
    overflow: hidden;
    pointer-events: none;
}

.dq-live__widget > * {
    pointer-events: auto;
}

.dq-live__widget iframe {
    display: block;
    width: 100% !important;
    max-width: none !important;
    border: 0;
    border-radius: 13px;
}

.dq-live__fallback-shell {
    position: relative;
    z-index: 1;
    min-width: 0;
    min-height: 220px;
}

.dq-live__fallback {
    position: relative;
    display: grid !important;
    grid-template-columns: minmax(150px, 250px) 1fr;
    gap: clamp(.9rem, 2.5vw, 1.5rem);
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 220px;
    box-sizing: border-box;
    padding: 1rem;
    color: #34223d !important;
    text-decoration: none !important;
    background: linear-gradient(135deg, #fff5f8 0%, #f6f1ff 100%);
    border-radius: 14px;
    transition: transform .18s ease, box-shadow .18s ease, opacity .16s ease;
}

.dq-live__fallback:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(16, 4, 20, .28);
}

.dq-live__fallback::before,
.dq-live__fallback::after,
.dq-live__fallback-button::before,
.dq-live__fallback-button::after {
    display: none !important;
    content: none !important;
}

.dq-live__fallback-image {
    display: block;
    width: 100%;
    max-width: 250px;
    height: auto;
    margin: auto;
    border-radius: 11px;
}

.dq-live__fallback-title {
    display: block;
    margin: 0 0 .45rem;
    color: #34223d;
    font-size: clamp(1.15rem, 2.4vw, 1.5rem);
    font-weight: 850;
    line-height: 1.2;
}

.dq-live__fallback-text {
    display: block;
    margin: 0 0 .8rem;
    color: #594c61;
    line-height: 1.5;
}

.dq-live__fallback-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: .72rem 1rem;
    color: #fff !important;
    font-weight: 800;
    text-align: center;
    background: linear-gradient(135deg, #e83e74, #8a3fc2);
    border-radius: 11px;
    box-shadow: 0 8px 20px rgba(170, 50, 125, .24);
}

.dq-live__note {
    display: block;
    margin: .75rem auto 0;
    color: #e6c9dc;
    font-size: .76rem;
    line-height: 1.45;
    text-align: center;
}

.dq-live--loaded .dq-live__fallback-shell,
.dq-live__stage:has(.dq-live__widget iframe, .dq-live__widget a, .dq-live__widget img, .dq-live__widget video) .dq-live__fallback-shell {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 640px) {
    .dq-live {
        margin: 1.5rem 0;
        padding: .85rem;
        border-radius: 16px;
    }

    .dq-live__stage {
        aspect-ratio: .75 / 1;
    }

    .dq-live__fallback {
        grid-template-columns: 112px 1fr;
        gap: .75rem;
        min-height: 165px;
        padding: .75rem;
    }

    .dq-live__fallback-button {
        width: 100%;
        box-sizing: border-box;
    }

    .dq-live__widget {
        overflow-x: auto;
        overscroll-behavior-inline: contain;
    }

    .dq-live__widget iframe {
        min-width: 100% !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dq-live__fallback {
        transition: none;
    }
}

