/* ============================================================
   audience-gift.css · 观众端礼物选择浮层
   ============================================================ */

/* 高级礼物使用透明方形 SVGA 覆盖直播画面；层级低于观众端抽屉蒙层。 */
.advanced-gift-animation-layer {
    position: absolute;
    inset: 0;
    z-index: 25;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    pointer-events: none;
}

.advanced-gift-animation-layer[hidden] {
    display: none;
}

.advanced-gift-animation-layer canvas {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
}

/* 自己送出高级礼物后，连击入口从抽屉网格转移到第一浮动麦位附近。 */
.audience-gift-floating-combo {
    position: absolute;
    right: 10px;
    bottom: 80px;
    z-index: 26;
    width: 92px;
    height: 104px;
    pointer-events: none;
}

.audience-gift-floating-combo[hidden] {
    display: none;
}

.audience-gift-floating-combo .audience-gift-combo {
    pointer-events: auto;
    transform: none;
}

.audience-gift-sheet {
    height: 440px;
    padding: 10px 10px 22px;
    display: flex;
    flex-direction: column;
    user-select: none;
}

/* 送礼入场条独立于礼物抽屉：连击时只更新数字，抽屉收起后继续展示并重新锚定。 */
.audience-gift-entry-layer {
    --gift-entry-bottom: 244px;
    position: absolute;
    z-index: 24;
    left: 12px;
    bottom: var(--gift-entry-bottom);
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 4px;
    width: calc(100% - 24px);
    min-height: 44px;
    color: #fff;
    pointer-events: none;
    transition: bottom 120ms linear;
}

/* 只有礼物选择抽屉允许送礼胶囊浮在面板之上；其他蒙层与抽屉均遮住胶囊。 */
.audience-viewer.is-gift-sheet-open .audience-gift-entry-layer {
    z-index: 30;
}

.audience-gift-entry-layer.is-positioning {
    transition: none;
}

.audience-gift-entry-layer.is-split-layout {
    transition: none;
}

.audience-gift-entry-layer[hidden] {
    display: none;
}

.audience-gift-entry-item {
    display: flex;
    align-items: center;
    width: 100%;
    height: 44px;
    flex: 0 0 44px;
    opacity: 0;
    transform: translateX(calc(-100% - 12px));
    transform-origin: left center;
    transition:
        opacity 260ms ease,
        transform 520ms cubic-bezier(0.16, 0.82, 0.22, 1);
}

.audience-gift-entry-item.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.audience-gift-entry-item.is-leaving {
    opacity: 0;
    transform: translateX(-24px);
    transition-duration: 320ms;
}

.audience-gift-entry-capsule {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 41px;
    align-items: center;
    width: min(178px, calc(100% - 56px));
    height: 44px;
    padding: 3px;
    border: 0;
    border-radius: 22px;
    background: rgba(8, 10, 15, 0.28);
    box-shadow: none;
}

.audience-gift-entry-avatar {
    width: 38px;
    height: 38px;
    overflow: hidden;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(var(--brand-2-rgb), 0.36);
    font-size: 12px;
    font-weight: 700;
}

.audience-gift-entry-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.audience-gift-entry-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    padding: 0 2px 0 7px;
    line-height: 1.15;
}

.audience-gift-entry-name,
.audience-gift-entry-detail {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.audience-gift-entry-name {
    font-size: 12px;
    font-weight: 600;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.audience-gift-entry-detail {
    color: rgba(255, 255, 255, 0.72);
    font-size: 9px;
}

.audience-gift-entry-image-wrap {
    width: 41px;
    height: 41px;
    display: grid;
    place-items: center;
}

.audience-gift-entry-image {
    width: 37px;
    height: 37px;
    object-fit: contain;
    filter: drop-shadow(0 4px 7px rgba(0, 0, 0, 0.22));
}

.audience-gift-entry-image-wrap.is-failed::before {
    content: "G";
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(145deg, var(--brand-2), var(--brand-3));
    font-size: 17px;
    font-weight: 800;
}

:lang(zh) .audience-gift-entry-image-wrap.is-failed::before {
    content: "礼";
}

.audience-gift-entry-count {
    display: flex;
    align-items: baseline;
    min-width: 52px;
    margin-left: 4px;
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
    transform-origin: left center;
}

.audience-gift-entry-count strong {
    margin-left: 2px;
    font-size: 26px;
    font-variant-numeric: tabular-nums;
    letter-spacing: -1.5px;
}

.audience-gift-entry-count.is-bumping {
    animation: audienceGiftEntryCount 220ms cubic-bezier(0.18, 0.8, 0.28, 1);
}

@keyframes audienceGiftEntryCount {
    0% { transform: scale(1); }
    45% { transform: scale(1.24); color: var(--brand-text, #78d8ff); }
    100% { transform: scale(1); }
}

.audience-gift-sheet .drawer-handle {
    flex: 0 0 auto;
    margin-bottom: 7px;
    touch-action: none;
}

.audience-gift-sheet .audience-co-mic-control.audience-gift-sheet-close {
    top: 14px;
}

.audience-gift-balance {
    position: absolute;
    top: 20px;
    right: 16px;
    z-index: 4;
    height: 24px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    line-height: 24px;
}

.audience-gift-balance .audience-gift-price-coin {
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
}

.audience-gift-title {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    margin: 0 6px 5px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    text-align: center;
}

.audience-gift-recipient-trigger {
    position: relative;
    z-index: 1;
    min-width: 0;
    max-width: 72%;
    height: 30px;
    margin: 0 auto 5px;
    padding: 0 5px;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 0;
    color: rgba(255, 255, 255, 0.84);
    background: transparent;
    font: inherit;
    cursor: pointer;
}

.audience-gift-recipient-trigger[hidden] {
    display: none;
}

.audience-gift-recipient-avatar,
.audience-gift-recipient-option-avatar {
    flex: 0 0 auto;
    overflow: hidden;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(145deg, rgba(var(--brand-2-rgb), 0.72), rgba(var(--brand-1-rgb), 0.78));
    font-weight: 700;
}

.audience-gift-recipient-avatar {
    width: 25px;
    height: 25px;
    font-size: 10px;
}

.audience-gift-recipient-avatar.is-anchor,
.audience-gift-recipient-option-avatar.is-anchor {
    background-image: var(--anchor-avatar);
    background-position: center;
    background-size: cover;
}

.audience-gift-recipient-avatar img,
.audience-gift-recipient-option-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.audience-gift-recipient-name {
    min-width: 0;
    overflow: hidden;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.audience-gift-recipient-chevron {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
}

.audience-gift-categories {
    position: relative;
    z-index: 4;
    height: 32px;
    padding: 0 7px;
    display: flex;
    flex: 0 0 auto;
    align-items: flex-start;
    gap: 24px;
}

.audience-gift-category {
    position: relative;
    height: 28px;
    padding: 0 1px;
    border: 0;
    color: rgba(255, 255, 255, 0.5);
    background: transparent;
    font: inherit;
    font-size: 14px;
    line-height: 28px;
    cursor: pointer;
}

.audience-gift-category.is-active {
    color: #fff;
    font-weight: 700;
}

.audience-gift-category.is-active::after {
    content: '';
    position: absolute;
    right: 6px;
    bottom: 0;
    left: 6px;
    height: 2px;
    border-radius: 1px;
    background: linear-gradient(90deg, var(--brand-2), var(--brand-1));
}

.audience-gift-scroll-shell {
    position: relative;
    z-index: 1;
    flex: 1 1 auto;
    min-height: 0;
    margin: 0 -10px;
    overflow: hidden;
    background: transparent;
}

.audience-gift-scroll {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    scrollbar-width: none;
    -webkit-mask-image: linear-gradient(to bottom, #000 0, #000 calc(100% - 58px), transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0, #000 calc(100% - 58px), transparent 100%);
}

.audience-gift-scroll-shell.is-at-bottom .audience-gift-scroll {
    -webkit-mask-image: none;
    mask-image: none;
}

.audience-gift-scroll::-webkit-scrollbar {
    display: none;
}

.audience-gift-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 104px;
    gap: 4px 2px;
    padding: 0 10px 14px;
}

/* 第一行进入连击时，为圆形和向上扩散的水波纹预留顶部安全区，避免被视口裁切。 */
.audience-gift-scroll-shell.is-combo-top-row {
    /* 上移可视窗口并同步补回内部高度，礼物内容的屏幕位置保持不变。 */
    margin-top: -24px;
}

.audience-gift-scroll-shell.is-combo-top-row .audience-gift-scroll {
    padding-top: 24px;
}

.audience-gift-item {
    position: relative;
    min-width: 0;
    height: 104px;
    border: 1px solid transparent;
    border-radius: 14px;
    transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.audience-gift-item.is-selected {
    border-color: color-mix(in srgb, var(--brand-2) 70%, rgba(255, 255, 255, 0.5));
    background: color-mix(in srgb, var(--brand-2) 15%, rgba(255, 255, 255, 0.04));
    box-shadow: inset 0 0 18px color-mix(in srgb, var(--brand-2) 14%, transparent);
}

.audience-gift-select {
    width: 100%;
    height: 100%;
    padding: 3px 2px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 0;
    color: #fff;
    background: transparent;
    font: inherit;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.audience-gift-select:active {
    transform: scale(0.98);
}

.audience-gift-image-wrap {
    position: relative;
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    display: grid;
    place-items: center;
}

.audience-gift-image {
    display: block;
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.22));
    transform-origin: center;
}

/* 跑车原图四周透明留白较多，在礼物面板内单独补偿视觉尺寸。 */
.audience-gift-item[data-gift-id="4"] .audience-gift-image {
    width: 49px;
    height: 49px;
}

.audience-gift-item.is-selected .audience-gift-image,
.audience-gift-item.is-selected .audience-gift-image-fallback {
    animation: audienceGiftSelectedPop 260ms cubic-bezier(0.22, 0.72, 0.3, 1) both;
}

.audience-gift-image-fallback {
    position: relative;
    display: none;
    width: 34px;
    height: 26px;
    margin-top: 8px;
    border-radius: 5px;
    background: linear-gradient(145deg, #ff75d3, #f30b82 68%, #b916cc);
    box-shadow: 0 5px 12px rgba(239, 18, 135, 0.3);
}

.audience-gift-image-fallback::before {
    content: '';
    position: absolute;
    top: -7px;
    left: -3px;
    width: 40px;
    height: 9px;
    border-radius: 4px;
    background: linear-gradient(90deg, #ff8cdb, #fa218d);
}

.audience-gift-image-fallback::after {
    content: '';
    position: absolute;
    top: -7px;
    bottom: 0;
    left: 14px;
    width: 6px;
    background: rgba(255, 210, 242, 0.78);
}

.audience-gift-image-wrap.is-failed .audience-gift-image-fallback {
    display: block;
}

.audience-gift-name {
    width: 100%;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.94);
    font-size: 12px;
    font-weight: 600;
    line-height: 17px;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.audience-gift-price {
    min-height: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 10px;
    font-variant-numeric: tabular-nums;
    line-height: 17px;
}

.audience-gift-price-coin {
    width: 8px;
    height: 8px;
    border: 1px solid rgba(255, 218, 86, 0.9);
    border-radius: 50%;
    background: linear-gradient(145deg, #fff1a0, #ffb929);
    box-shadow: 0 0 5px rgba(255, 188, 40, 0.35);
}

.audience-gift-item.is-selected .audience-gift-name {
    display: none;
}

.audience-gift-item.is-selected .audience-gift-price {
    position: absolute;
    right: 0;
    bottom: 26px;
    left: 0;
    color: rgba(255, 255, 255, 0.94);
    font-weight: 700;
}

.audience-gift-send {
    position: absolute;
    right: 8px;
    bottom: 3px;
    left: 8px;
    z-index: 2;
    height: 22px;
    padding: 0 7px;
    border: 0;
    border-radius: 11px;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-2), var(--brand-3));
    box-shadow: 0 4px 10px color-mix(in srgb, var(--brand-2) 30%, transparent);
    font-size: 10px;
    font-weight: 700;
    line-height: 22px;
    cursor: pointer;
}

.audience-gift-send:active {
    transform: scale(0.96);
}

.audience-gift-send[hidden] {
    display: none;
}

/* ============ 礼物连击：临时网格单元 + 2 秒倒计时环 ============ */
.audience-gift-combo {
    --combo-progress: 0;
    position: relative;
    width: 100%;
    height: 104px;
    padding: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    border: 0;
    color: #fff;
    background: transparent;
    appearance: none;
    cursor: pointer;
    touch-action: none;
    isolation: isolate;
    transform: translateY(4px);
}

.audience-gift-combo[hidden] {
    display: none;
}

.audience-gift-combo-ring {
    position: absolute;
    right: 50%;
    top: 0;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    /* 水平镜像保留顶部起点，同时把倒计时方向改为逆时针。 */
    transform: translateX(50%) scaleX(-1);
    pointer-events: none;
}

.audience-gift-combo-ring-track,
.audience-gift-combo-ring-progress {
    position: absolute;
    inset: 0;
    border-radius: 50%;
}

.audience-gift-combo-ring-track {
    z-index: 1;
    border: 3px solid rgba(5, 6, 12, 0.9);
    background: #050812;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.24);
}

.audience-gift-combo-ring-progress {
    /* 外侧黑圈只保留约 2px，内侧黑圈负责和中心圆拉开距离。 */
    inset: 2px;
    z-index: 2;
    background: repeating-conic-gradient(
        from 0deg,
        var(--brand-2) 0deg 8deg,
        transparent 8deg 12deg
    );
    -webkit-mask: conic-gradient(
        from 0deg,
        #000 0deg calc(var(--combo-progress) * 1turn),
        transparent calc(var(--combo-progress) * 1turn) 1turn
    );
    mask: conic-gradient(
        from 0deg,
        #000 0deg calc(var(--combo-progress) * 1turn),
        transparent calc(var(--combo-progress) * 1turn) 1turn
    );
    filter: drop-shadow(0 0 5px color-mix(in srgb, var(--brand-2) 72%, transparent));
    transition: filter 120ms ease;
}

.audience-gift-combo-core-ring {
    position: absolute;
    right: 50%;
    top: 5px;
    z-index: 3;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #050812;
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.9),
        inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    transform: translateX(50%);
    pointer-events: none;
}

.audience-gift-combo-face {
    position: absolute;
    right: 50%;
    top: 8px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--brand-2) 0%, var(--brand-2) 55%, var(--brand-1) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        inset 0 -7px 13px color-mix(in srgb, var(--brand-1) 28%, transparent),
        0 6px 16px color-mix(in srgb, var(--brand-2) 34%, transparent);
    transform: translateX(50%);
    transition: transform 120ms ease, filter 120ms ease;
    z-index: 4;
    pointer-events: none;
}

.audience-gift-combo-label {
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: 0.5px;
    text-align: center;
    text-shadow: 0 2px 4px color-mix(in srgb, var(--brand-1) 48%, transparent);
}

.audience-gift-combo-count {
    position: absolute;
    top: 70px;
    right: 50%;
    z-index: 5;
    min-width: 22px;
    height: 16px;
    padding: 0 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #fff;
    background: linear-gradient(180deg, var(--brand-2) 0%, var(--brand-1) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 4px 9px color-mix(in srgb, var(--brand-1) 30%, transparent);
    font-size: 11px;
    font-weight: 800;
    line-height: 16px;
    font-variant-numeric: tabular-nums;
    transform: translateX(50%);
    pointer-events: none;
}

.audience-gift-combo.is-active .audience-gift-combo-face {
    animation: audienceGiftComboEnter 230ms cubic-bezier(0.22, 0.72, 0.3, 1) both;
}

.audience-gift-combo.is-bumping .audience-gift-combo-count {
    animation: audienceGiftComboCount 180ms cubic-bezier(0.22, 0.72, 0.3, 1) both;
}

.audience-gift-combo.is-pressing .audience-gift-combo-face {
    filter: brightness(1.08);
    transform: translateX(50%) scale(0.95);
}

/* 每次成功发送只生成一条波纹；连续点击时，多条独立动画自然叠加。 */
.audience-gift-combo-ripple {
    position: absolute;
    right: 50%;
    top: 0;
    z-index: 0;
    width: 62px;
    height: 62px;
    border: 1px solid color-mix(in srgb, var(--brand-2) 48%, transparent);
    border-radius: 50%;
    background: color-mix(in srgb, var(--brand-2) 10%, transparent);
    box-shadow:
        inset 0 0 10px color-mix(in srgb, var(--brand-2) 16%, transparent),
        0 0 12px color-mix(in srgb, var(--brand-2) 18%, transparent);
    pointer-events: none;
    transform: translateX(50%) scale(0.96);
    animation: audienceGiftComboRipple 1200ms cubic-bezier(0.16, 0.58, 0.3, 1) both;
}

@keyframes audienceGiftComboEnter {
    from {
        opacity: 0;
        transform: translateX(50%) scale(0.82);
    }
    to {
        opacity: 1;
        transform: translateX(50%) scale(1);
    }
}

@keyframes audienceGiftComboCount {
    0% {
        transform: translateX(50%) scale(1);
    }
    45% {
        transform: translateX(50%) scale(1.18);
    }
    100% {
        transform: translateX(50%) scale(1);
    }
}

@keyframes audienceGiftComboRipple {
    0% {
        opacity: 0;
        transform: translateX(50%) scale(0.96);
    }
    16% {
        opacity: 0.36;
    }
    42% {
        opacity: 0.2;
    }
    100% {
        opacity: 0;
        border-color: transparent;
        box-shadow:
            inset 0 0 18px transparent,
            0 0 20px transparent;
        transform: translateX(50%) scale(1.52);
    }
}

@keyframes audienceGiftSelectedPop {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.2);
    }
}

/* 收礼对象选择是礼物面板上方的二级弹层，需同时遮住送礼胶囊。 */
.audience-gift-recipient-mask {
    position: absolute;
    inset: 0;
    z-index: 31;
    background: rgba(0, 0, 0, 0.62);
    opacity: 0;
    pointer-events: none;
    will-change: opacity;
    transition: opacity 320ms ease;
}

.audience-gift-recipient-mask.open {
    opacity: 1;
    pointer-events: auto;
}

.audience-gift-recipient-sheet {
    z-index: 32;
    max-height: min(78%, 510px);
    padding: 10px 0 0;
    overflow: hidden;
    background: rgba(16, 16, 20, 0.98);
}

.audience-gift-recipient-title {
    padding: 0 20px 13px;
    text-align: left;
}

.audience-gift-recipient-list {
    position: relative;
    z-index: 1;
    max-height: 350px;
    overflow-y: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    overscroll-behavior: contain;
}

.audience-gift-recipient-option {
    width: calc(100% - 28px);
    height: 68px;
    margin: 0 14px;
    padding: 0 6px;
    display: flex;
    align-items: center;
    gap: 13px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.9);
    background: transparent;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.audience-gift-recipient-option-avatar {
    width: 42px;
    height: 42px;
    font-size: 18px;
}

.audience-gift-recipient-option-name {
    min-width: 0;
    overflow: hidden;
    flex: 1 1 auto;
    font-size: 16px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.audience-gift-recipient-check {
    width: 18px;
    height: 10px;
    flex: 0 0 auto;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    opacity: 0;
    transform: translate(-2px, -2px) rotate(-45deg);
}

.audience-gift-recipient-option[aria-selected="true"] .audience-gift-recipient-check {
    opacity: 1;
}

.audience-gift-recipient-cancel {
    width: 100%;
    height: 56px;
    margin-top: 9px;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.9);
    background: rgba(24, 24, 28, 0.98);
    font: inherit;
    font-size: 16px;
    cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
    .audience-gift-entry-layer,
    .audience-gift-entry-item,
    .audience-gift-entry-count.is-bumping {
        animation-duration: 1ms;
        transition-duration: 1ms;
    }
    .audience-gift-item {
        transition-duration: 1ms;
    }

    .audience-gift-item.is-selected .audience-gift-image,
    .audience-gift-item.is-selected .audience-gift-image-fallback {
        animation-duration: 1ms;
    }

    .audience-gift-combo.is-active .audience-gift-combo-face,
    .audience-gift-combo.is-bumping .audience-gift-combo-count {
        animation-duration: 1ms;
    }

    .audience-gift-combo-ripple {
        animation-duration: 1ms;
    }

    .audience-gift-combo-face,
    .audience-gift-combo-ring-progress {
        transition-duration: 1ms;
    }
}
