/* Live2D 看板娘悬浮层：固定停靠在页面角落，不参与页面布局，避免影响星空、鼠标光效、水波纹和游戏展示页。 */
.home-title {
    font-size: clamp(32px, 4.5vw, 68px) !important;
}

@media (max-width: 760px) {
    .home-title {
        font-size: clamp(28px, 8.5vw, 42px) !important;
    }
}

.live2d-widget {
    position: fixed;
    right: 18px;
    bottom: 14px;
    width: 260px;
    height: 360px;
    z-index: 42;
    pointer-events: auto;
    filter: drop-shadow(0 0 18px rgba(0, 210, 255, 0.28));
}

.live2d-widget.is-left {
    right: auto;
    left: 18px;
    bottom: 118px;
}

.live2d-widget::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 14px;
    width: 72%;
    height: 32px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 220, 255, 0.24), transparent 68%);
    opacity: 0.9;
}

.live2d-message {
    display: none !important;
    position: absolute;
    right: -194px;
    top: 104px;
    width: 180px;
    max-width: 180px;
    box-sizing: border-box;
    padding: 7px 9px;
    border: 1px solid rgba(108, 229, 255, 0.42);
    border-radius: 14px 14px 14px 4px;
    background: rgba(7, 17, 31, 0.72);
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    line-height: 1.38;
    white-space: normal;
    overflow-wrap: anywhere;
    box-shadow: 0 0 18px rgba(0, 180, 255, 0.18);
    backdrop-filter: blur(8px);
    pointer-events: none;
}

.live2d-widget.is-left .live2d-message {
    right: auto;
    left: calc(100% + 12px);
    top: 116px;
    border-radius: 14px 14px 14px 4px;
}

.live2d-widget.is-loaded .live2d-message {
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.live2d-widget.is-loaded:hover .live2d-message,
.live2d-widget.is-talking .live2d-message {
    opacity: 1;
    transform: translateY(0);
}

#oml2d-main,
.oml2d-main,
.oml2d-stage,
.oml2d-canvas,
[id^="oml2d"],
[class*="oml2d"] {
    z-index: 42 !important;
    pointer-events: auto !important;
}

#oml2d-tips {
    display: none !important;
}

#oml2d-stage.is-ganyu-drag-startled,
.oml2d-stage.is-ganyu-drag-startled {
    animation: ganyu-drag-startled 520ms ease-in-out;
    transform-origin: 50% 84%;
}

#oml2d-stage.is-ganyu-drag-bounce,
.oml2d-stage.is-ganyu-drag-bounce {
    animation: ganyu-drag-bounce 640ms ease-out;
    transform-origin: 50% 88%;
}

#oml2d-stage.ganyu-dragging,
.oml2d-stage.ganyu-dragging {
    animation: ganyu-direct-drag 520ms ease-in-out infinite;
    transform-origin: 50% 84%;
}

#oml2d-stage.ganyu-drag-end,
.oml2d-stage.ganyu-drag-end {
    animation: ganyu-direct-drag-end 620ms ease-out;
    transform-origin: 50% 88%;
}

@keyframes ganyu-drag-startled {
    0% {
        transform: translateX(0) scale(1);
    }

    24% {
        transform: translateX(-5px) scale(1.015);
    }

    48% {
        transform: translateX(5px) scale(1.025);
    }

    72% {
        transform: translateX(-3px) scale(1.01);
    }

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

@keyframes ganyu-drag-bounce {
    0% {
        transform: translateY(0) scale(1);
    }

    28% {
        transform: translateY(-8px) scale(1.025);
    }

    54% {
        transform: translateY(4px) scale(0.99);
    }

    78% {
        transform: translateY(-3px) scale(1.01);
    }

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

@keyframes ganyu-direct-drag {
    0% {
        transform: translateX(0) scale(1);
    }

    50% {
        transform: translateX(4px) scale(1.012);
    }

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

@keyframes ganyu-direct-drag-end {
    0% {
        transform: translateY(0) scale(1);
    }

    34% {
        transform: translateY(-8px) scale(1.025);
    }

    68% {
        transform: translateY(3px) scale(0.995);
    }

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

html.performance-low #oml2d-stage.is-ganyu-drag-startled,
html.performance-low .oml2d-stage.is-ganyu-drag-startled,
html.performance-low #oml2d-stage.is-ganyu-drag-bounce,
html.performance-low .oml2d-stage.is-ganyu-drag-bounce,
html.performance-low #oml2d-stage.ganyu-dragging,
html.performance-low .oml2d-stage.ganyu-dragging,
html.performance-low #oml2d-stage.ganyu-drag-end,
html.performance-low .oml2d-stage.ganyu-drag-end {
    animation: none;
}

@media (prefers-reduced-motion: reduce) {
    #oml2d-stage.is-ganyu-drag-startled,
    .oml2d-stage.is-ganyu-drag-startled,
    #oml2d-stage.is-ganyu-drag-bounce,
    .oml2d-stage.is-ganyu-drag-bounce,
    #oml2d-stage.ganyu-dragging,
    .oml2d-stage.ganyu-dragging,
    #oml2d-stage.ganyu-drag-end,
    .oml2d-stage.ganyu-drag-end {
        animation: none;
    }
}

#oml2d-main,
.oml2d-main {
    bottom: 112px !important;
}

.live2d-hit-area {
    position: fixed;
    left: 10px;
    bottom: 96px;
    width: 300px;
    height: 390px;
    z-index: 44;
    padding: 0;
    border: 0;
    appearance: none;
    cursor: grab;
    background: transparent;
    color: transparent;
    pointer-events: auto;
    touch-action: none;
}

.live2d-drag-button {
    display: none !important;
}

body.is-live2d-external-dragging #oml2d-stage,
body.is-live2d-external-dragging #oml2d-canvas,
body.is-live2d-external-dragging .live2d-hit-area {
    cursor: grabbing !important;
}

.live2d-quiz {
    position: fixed;
    left: 260px;
    bottom: 190px;
    width: min(400px, calc(100vw - 32px));
    max-width: min(440px, calc(100vw - 32px));
    z-index: 80;
    padding: 12px;
    border: 1px solid rgba(108, 229, 255, 0.54);
    border-radius: 16px;
    background:
        radial-gradient(circle at 18% 12%, rgba(116, 229, 255, 0.2), transparent 34%),
        linear-gradient(145deg, rgba(7, 17, 31, 0.92), rgba(12, 31, 58, 0.88));
    color: rgba(255, 255, 255, 0.94);
    box-shadow: 0 0 26px rgba(0, 190, 255, 0.28), inset 0 0 18px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    transform: translateY(12px) scale(0.96);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.live2d-quiz.is-open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.live2d-quiz.is-opening {
    animation: live2dQuizPop 0.28s ease both;
}

@keyframes live2dQuizPop {
    0% {
        transform: translateY(14px) scale(0.94);
        opacity: 0;
    }

    70% {
        transform: translateY(-2px) scale(1.01);
        opacity: 1;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.live2d-quiz__close {
    position: absolute;
    top: 9px;
    right: 9px;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
}

.live2d-quiz__close:hover {
    border-color: rgba(108, 229, 255, 0.72);
    box-shadow: 0 0 14px rgba(0, 190, 255, 0.32);
}

.live2d-quiz__meta {
    min-height: 18px;
    margin: 0 34px 5px 0;
    color: rgba(159, 245, 255, 0.84);
    font-size: 12px;
    line-height: 1.4;
}

.live2d-quiz__question {
    margin: 2px 34px 9px 0;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.45;
    text-shadow: 0 0 12px rgba(108, 229, 255, 0.42);
}

.live2d-quiz__options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.live2d-quiz__options.live2d-quiz__menu {
    grid-template-columns: 1fr;
}

.live2d-quiz__option {
    min-height: 44px;
    border: 1px solid rgba(108, 229, 255, 0.36);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.94);
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.live2d-quiz__option:hover:not(:disabled) {
    transform: translateY(-1px);
    border-color: rgba(255, 221, 114, 0.72);
    box-shadow: 0 0 16px rgba(255, 221, 114, 0.22);
}

.live2d-quiz__option:disabled {
    cursor: default;
    opacity: 0.9;
}

.live2d-quiz__option.is-correct {
    border-color: rgba(117, 255, 201, 0.72);
    background: rgba(61, 255, 190, 0.14);
    box-shadow: 0 0 16px rgba(61, 255, 190, 0.22);
}

.live2d-quiz__option.is-wrong {
    border-color: rgba(255, 116, 160, 0.72);
    background: rgba(255, 116, 160, 0.14);
    box-shadow: 0 0 16px rgba(255, 116, 160, 0.18);
}

.live2d-quiz__result {
    min-height: 22px;
    margin-top: 8px;
    color: #9ff5ff;
    font-size: 14px;
    line-height: 1.45;
}

.live2d-quiz__result.is-good {
    color: #9ff5ff;
    text-shadow: 0 0 12px rgba(108, 229, 255, 0.38);
}

.live2d-quiz__result.is-neutral {
    color: #ffe8a3;
    text-shadow: 0 0 12px rgba(255, 221, 114, 0.32);
}

.live2d-quiz__result.is-warning {
    color: #ffb3c0;
    text-shadow: 0 0 12px rgba(255, 116, 160, 0.28);
}

.live2d-consult-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.live2d-consult-card {
    min-height: 64px;
    padding: 10px;
    border: 1px solid rgba(108, 229, 255, 0.36);
    border-radius: 14px;
    background:
        radial-gradient(circle at 12% 18%, rgba(159, 245, 255, 0.15), transparent 38%),
        rgba(255, 255, 255, 0.075);
    color: rgba(255, 255, 255, 0.94);
    cursor: pointer;
    text-align: left;
    transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.live2d-consult-card:hover:not(:disabled) {
    transform: translateY(-1px);
    border-color: rgba(159, 245, 255, 0.8);
    box-shadow: 0 0 18px rgba(0, 190, 255, 0.24);
    background: rgba(73, 214, 255, 0.14);
}

.live2d-consult-card:disabled {
    cursor: default;
    opacity: 0.52;
}

.live2d-consult-card__title,
.live2d-consult-card__desc {
    display: block;
}

.live2d-consult-card__title {
    margin-bottom: 4px;
    color: #eafcff;
    font-size: 15px;
    font-weight: bold;
    text-shadow: 0 0 12px rgba(108, 229, 255, 0.38);
}

.live2d-consult-card__desc {
    color: rgba(214, 246, 255, 0.72);
    font-size: 12px;
    line-height: 1.4;
}

.live2d-quiz.is-weather {
    width: 374px;
}

.live2d-quiz.is-music {
    width: 360px;
}

.live2d-quiz.is-fortune {
    width: min(440px, calc(100vw - 44px));
}

.live2d-quiz.is-memory {
    width: min(440px, calc(100vw - 44px));
}

.live2d-quiz__result.is-fortune-hidden {
    display: none;
}

.live2d-memory-panel {
    display: block;
}

.live2d-memory-card {
    display: grid;
    gap: 8px;
    max-height: 48vh;
    overflow: auto;
    padding: 2px;
}

.live2d-memory-row {
    display: grid;
    grid-template-columns: minmax(92px, 0.42fr) minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
    border: 1px solid rgba(108, 229, 255, 0.34);
    border-radius: 12px;
    background:
        radial-gradient(circle at 14% 18%, rgba(159, 245, 255, 0.16), transparent 38%),
        rgba(255, 255, 255, 0.07);
    box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.05);
}

.live2d-memory-row span {
    color: rgba(214, 246, 255, 0.72);
    font-size: 12px;
}

.live2d-memory-row strong {
    min-width: 0;
    color: #eafcff;
    font-size: 13px;
    line-height: 1.45;
    overflow-wrap: anywhere;
    text-shadow: 0 0 10px rgba(108, 229, 255, 0.28);
}

.live2d-memory-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 10px;
}

.live2d-music-title,
.live2d-music-subtitle {
    display: block;
}

.live2d-music-title {
    color: #eafcff;
}

.live2d-music-subtitle {
    margin-top: 4px;
    color: rgba(202, 236, 255, 0.72);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.35;
    text-shadow: 0 0 10px rgba(255, 180, 220, 0.22), 0 0 12px rgba(108, 229, 255, 0.18);
}

.live2d-music-panel {
    display: block;
}

.live2d-music-player {
    display: grid;
    gap: 12px;
}

.live2d-music-current {
    padding: 12px 14px;
    border: 1px solid rgba(108, 229, 255, 0.42);
    border-radius: 14px;
    background:
        radial-gradient(circle at 14% 18%, rgba(159, 245, 255, 0.18), transparent 38%),
        rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 16px rgba(0, 190, 255, 0.16), inset 0 0 14px rgba(255, 255, 255, 0.05);
    color: rgba(214, 246, 255, 0.82);
    font-size: 13px;
    line-height: 1.4;
}

.live2d-music-current span {
    color: #eafcff;
    font-weight: bold;
    text-shadow: 0 0 12px rgba(108, 229, 255, 0.4);
}

.live2d-music-list {
    display: grid;
    gap: 8px;
    max-height: 128px;
    padding: 2px;
    overflow: auto;
}

.live2d-music-track {
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid rgba(108, 229, 255, 0.34);
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(14, 45, 78, 0.62), rgba(9, 24, 48, 0.58));
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    text-align: left;
    cursor: pointer;
    transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.live2d-music-track:hover {
    transform: translateY(-1px);
    border-color: rgba(159, 245, 255, 0.76);
    box-shadow: 0 0 14px rgba(0, 190, 255, 0.22);
}

.live2d-music-track.is-current {
    border-color: rgba(255, 221, 114, 0.68);
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 221, 114, 0.18), transparent 42%),
        rgba(255, 221, 114, 0.1);
    color: #fff3c2;
    box-shadow: 0 0 16px rgba(255, 221, 114, 0.18);
}

.live2d-music-controls,
.live2d-music-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.live2d-music-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.live2d-weather-panel {
    display: block;
}

.live2d-weather-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 74px;
    gap: 8px;
}

.live2d-weather-input {
    min-width: 0;
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid rgba(108, 229, 255, 0.38);
    border-radius: 12px;
    outline: none;
    background: rgba(3, 9, 20, 0.62);
    color: rgba(255, 255, 255, 0.94);
    box-shadow: inset 0 0 12px rgba(108, 229, 255, 0.08);
}

.live2d-weather-input::placeholder {
    color: rgba(214, 246, 255, 0.48);
}

.live2d-weather-input:focus {
    border-color: rgba(159, 245, 255, 0.86);
    box-shadow: 0 0 14px rgba(0, 190, 255, 0.22), inset 0 0 12px rgba(108, 229, 255, 0.1);
}

.live2d-weather-submit {
    min-height: 38px;
    border: 1px solid rgba(108, 229, 255, 0.48);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(73, 214, 255, 0.24), rgba(255, 255, 255, 0.1));
    color: rgba(255, 255, 255, 0.94);
    cursor: pointer;
    font-weight: bold;
}

.live2d-weather-submit:hover {
    border-color: rgba(255, 221, 114, 0.72);
    box-shadow: 0 0 16px rgba(255, 221, 114, 0.2);
}

.live2d-weather-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 10px;
}

.live2d-quiz.is-boss-auth {
    width: min(680px, 92vw);
    max-width: min(680px, 92vw);
    padding: 32px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 16% 10%, rgba(142, 230, 255, 0.2), transparent 34%),
        linear-gradient(145deg, rgba(6, 18, 38, 0.94), rgba(12, 34, 66, 0.9));
    box-shadow: 0 0 30px rgba(0, 190, 255, 0.28), inset 0 0 22px rgba(255, 255, 255, 0.06);
}

.live2d-quiz.is-boss-auth .live2d-quiz__close {
    top: 14px;
    right: 14px;
}

.live2d-quiz.is-boss-auth .live2d-quiz__meta {
    min-height: 0;
    margin: 0 48px 6px 0;
    color: rgba(238, 252, 255, 0.96);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
}

.live2d-quiz.is-boss-auth .live2d-quiz__question {
    margin: 0 48px 22px 0;
    color: rgba(211, 244, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.55;
    text-shadow: none;
}

.live2d-quiz.is-boss-auth .live2d-quiz__options {
    display: block;
}

.live2d-boss-auth-card {
    display: grid;
    gap: 18px;
    padding: 20px;
    border: 1px solid rgba(126, 224, 255, 0.3);
    border-radius: 18px;
    background: rgba(5, 18, 38, 0.46);
    box-shadow: inset 0 0 18px rgba(126, 224, 255, 0.06);
}

.live2d-boss-auth-heading {
    color: rgba(245, 252, 255, 0.94);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
}

.live2d-boss-auth-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.live2d-boss-auth-input {
    min-height: 50px;
    border-radius: 15px;
    font-size: 14px;
}

.live2d-boss-auth-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.live2d-boss-auth-actions .live2d-quiz__option {
    flex: 1 1 120px;
    min-width: 120px;
    min-height: 46px;
    padding: 0 18px;
    white-space: nowrap;
    border-radius: 14px;
}

.live2d-boss-auth-primary {
    border-color: rgba(132, 234, 255, 0.72);
    background: linear-gradient(135deg, rgba(52, 205, 255, 0.36), rgba(174, 236, 255, 0.16));
    box-shadow: 0 0 18px rgba(0, 190, 255, 0.2), inset 0 0 12px rgba(255, 255, 255, 0.08);
    font-weight: 800;
}

.live2d-boss-auth-actions .live2d-quiz__option:hover:not(:disabled) {
    border-color: rgba(159, 245, 255, 0.86);
    box-shadow: 0 0 18px rgba(0, 190, 255, 0.24), inset 0 0 12px rgba(255, 255, 255, 0.08);
}

.live2d-boss-auth-hint {
    margin: -2px 0 0;
    color: rgba(205, 241, 255, 0.72);
    font-size: 12px;
    line-height: 1.55;
}

.live2d-boss-auth-note {
    margin-top: 18px;
    min-height: 0;
    padding: 11px 13px;
    border: 1px solid rgba(255, 221, 114, 0.24);
    border-radius: 14px;
    background: rgba(255, 221, 114, 0.08);
    color: rgba(255, 241, 182, 0.88);
    font-size: 12px;
    line-height: 1.55;
}

.live2d-quiz.is-boss-review {
    width: min(760px, 92vw);
    max-width: min(760px, 92vw);
    padding: 32px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 14% 10%, rgba(148, 232, 255, 0.18), transparent 34%),
        linear-gradient(145deg, rgba(6, 18, 38, 0.94), rgba(13, 34, 64, 0.9));
    box-shadow: 0 0 30px rgba(0, 190, 255, 0.28), inset 0 0 22px rgba(255, 255, 255, 0.06);
}

.live2d-quiz.is-boss-review::before {
    content: "";
    position: absolute;
    left: 26px;
    right: 58px;
    top: 18px;
    height: 1px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(150, 236, 255, 0.72), transparent);
    pointer-events: none;
}

.live2d-quiz.is-boss-review .live2d-quiz__close {
    top: 14px;
    right: 14px;
}

.live2d-quiz.is-boss-review .live2d-quiz__meta {
    min-height: 0;
    margin: 0 48px 6px 0;
    color: rgba(238, 252, 255, 0.96);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
}

.live2d-quiz.is-boss-review .live2d-quiz__question {
    margin: 0 48px 22px 0;
    color: rgba(211, 244, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.55;
    text-shadow: none;
}

.live2d-quiz.is-boss-review .live2d-quiz__options {
    display: block;
}

.boss-modal-panel {
    position: relative;
    display: grid;
    gap: 18px;
    padding: 20px;
    border: 1px solid rgba(126, 224, 255, 0.3);
    border-radius: 18px;
    background: rgba(7, 18, 36, 0.55);
    box-shadow: inset 0 0 18px rgba(126, 224, 255, 0.07), 0 0 18px rgba(0, 190, 255, 0.08);
    overflow: hidden;
}

.boss-modal-panel::after {
    content: "✦";
    position: absolute;
    right: 18px;
    top: 14px;
    color: rgba(190, 244, 255, 0.42);
    font-size: 16px;
    pointer-events: none;
}

.boss-form-heading {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: rgba(245, 252, 255, 0.92);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}

.boss-form-badge {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 10px;
    border: 1px solid rgba(255, 221, 114, 0.34);
    border-radius: 999px;
    background: rgba(255, 221, 114, 0.09);
    color: rgba(255, 231, 160, 0.94);
    font-size: 12px;
    white-space: nowrap;
}

.boss-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.boss-form-control {
    width: 100%;
    min-height: 52px;
    border-radius: 15px;
    font-size: 14px;
    box-sizing: border-box;
}

.boss-form-stars {
    min-height: 52px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border: 1px solid rgba(255, 221, 114, 0.22);
    border-radius: 15px;
    background: rgba(255, 221, 114, 0.07);
    color: rgba(255, 221, 114, 0.9);
    letter-spacing: 0.14em;
    text-shadow: 0 0 12px rgba(255, 221, 114, 0.28);
}

.boss-form-textarea {
    grid-column: 1 / -1;
    min-height: 132px;
    padding-top: 13px;
    padding-bottom: 13px;
    line-height: 1.55;
    resize: vertical;
}

.boss-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.boss-modal-actions .live2d-quiz__option {
    flex: 1 1 140px;
    min-width: 140px;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 14px;
    white-space: nowrap;
}

.boss-modal-primary {
    border-color: rgba(132, 234, 255, 0.72);
    background: linear-gradient(135deg, rgba(52, 205, 255, 0.38), rgba(174, 236, 255, 0.16));
    box-shadow: 0 0 18px rgba(0, 190, 255, 0.22), inset 0 0 12px rgba(255, 255, 255, 0.08);
    font-weight: 800;
}

.boss-modal-actions .live2d-quiz__option:hover:not(:disabled) {
    border-color: rgba(159, 245, 255, 0.86);
    box-shadow: 0 0 18px rgba(0, 190, 255, 0.24), inset 0 0 12px rgba(255, 255, 255, 0.08);
}

.boss-info-strip {
    margin-top: 18px;
    min-height: 0;
    padding: 11px 13px;
    border: 1px solid rgba(255, 221, 114, 0.24);
    border-radius: 14px;
    background: rgba(255, 221, 114, 0.08);
    color: rgba(255, 241, 182, 0.88);
    font-size: 12px;
    line-height: 1.55;
}

.live2d-weather-page {
    position: relative;
    display: grid;
    gap: 8px;
}

.live2d-weather-flip {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 82;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(108, 229, 255, 0.42);
    border-radius: 50%;
    background: rgba(7, 17, 31, 0.72);
    color: rgba(234, 252, 255, 0.94);
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 0 12px rgba(0, 190, 255, 0.14), inset 0 0 10px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(6px);
    transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.live2d-weather-flip:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 232, 163, 0.72);
    box-shadow: 0 0 14px rgba(255, 232, 163, 0.18), 0 0 12px rgba(0, 190, 255, 0.16);
}

.live2d-weather-card {
    display: grid;
    gap: 8px;
    padding-top: 2px;
}

.live2d-weather-day {
    padding: 10px 12px;
    border: 1px solid rgba(108, 229, 255, 0.32);
    border-radius: 14px;
    background:
        radial-gradient(circle at 8% 16%, rgba(108, 229, 255, 0.14), transparent 38%),
        rgba(255, 255, 255, 0.07);
    box-shadow: inset 0 0 14px rgba(108, 229, 255, 0.06);
}

.live2d-weather-day__label {
    color: #eafcff;
    font-size: 14px;
    font-weight: bold;
}

.live2d-weather-day__date,
.live2d-weather-day__rain {
    color: rgba(214, 246, 255, 0.68);
    font-size: 12px;
    line-height: 1.45;
}

.live2d-weather-day__status {
    margin-top: 4px;
    color: #9ff5ff;
    font-size: 13px;
    text-shadow: 0 0 10px rgba(108, 229, 255, 0.32);
}

.live2d-weather-day__temp {
    margin-top: 2px;
    color: #ffe8a3;
    font-size: 13px;
}

.live2d-calendar-card {
    display: grid;
    gap: 9px;
    padding: 13px 44px 13px 13px;
    border: 1px solid rgba(108, 229, 255, 0.34);
    border-radius: 14px;
    background:
        radial-gradient(circle at 12% 18%, rgba(108, 229, 255, 0.14), transparent 38%),
        rgba(255, 255, 255, 0.07);
    box-shadow: inset 0 0 14px rgba(108, 229, 255, 0.06);
}

.live2d-calendar-card h3 {
    margin: 0 0 2px;
    color: #eafcff;
    font-size: 15px;
    line-height: 1.35;
    text-shadow: 0 0 12px rgba(108, 229, 255, 0.38);
}

.live2d-calendar-row {
    display: flex;
    align-items: baseline;
    gap: 7px;
    min-width: 0;
    color: rgba(214, 246, 255, 0.74);
    font-size: 13px;
    line-height: 1.45;
}

.live2d-calendar-row strong {
    min-width: 0;
    color: #eafcff;
    font-weight: bold;
    overflow-wrap: anywhere;
    text-shadow: 0 0 10px rgba(108, 229, 255, 0.26);
}

.live2d-calendar-tip {
    margin-top: 2px;
    padding: 10px 11px;
    border: 1px solid rgba(255, 232, 163, 0.24);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.055);
}

.live2d-calendar-tip span {
    display: block;
    margin-bottom: 4px;
    color: #ffe8a3;
    font-size: 12px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 221, 114, 0.28);
}

.live2d-calendar-tip p {
    margin: 0;
    color: rgba(234, 252, 255, 0.86);
    font-size: 13px;
    line-height: 1.55;
}

.live2d-fortune-panel {
    display: grid;
    gap: 10px;
}

.live2d-fortune-body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: stretch;
}

.live2d-fortune-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.live2d-fortune-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    min-height: 34px;
    padding: 8px 10px;
    border: 1px solid rgba(108, 229, 255, 0.28);
    border-radius: 12px;
    background:
        radial-gradient(circle at 8% 16%, rgba(108, 229, 255, 0.12), transparent 38%),
        rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 0 12px rgba(108, 229, 255, 0.05);
    line-height: 1.25;
}

.live2d-fortune-label {
    flex: 0 0 auto;
    color: #eafcff;
    font-size: 12px;
    font-weight: bold;
}

.live2d-fortune-value {
    min-width: 0;
    color: #9ff5ff;
    font-size: 12px;
    text-shadow: 0 0 10px rgba(108, 229, 255, 0.32);
    overflow-wrap: anywhere;
}

.live2d-fortune-value--great {
    color: #ffe8a3;
    text-shadow: 0 0 12px rgba(255, 221, 114, 0.42);
}

.live2d-fortune-value--good {
    color: #9ff5ff;
    text-shadow: 0 0 12px rgba(108, 229, 255, 0.42);
}

.live2d-fortune-value--small-good {
    color: #ffbfdc;
    text-shadow: 0 0 12px rgba(255, 142, 196, 0.36);
}

.live2d-fortune-value--plain {
    color: #f8fdff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.live2d-fortune-value--caution {
    color: #d9c2ff;
    text-shadow: 0 0 12px rgba(185, 146, 255, 0.34);
}

.live2d-fortune-item--quote {
    align-items: flex-start;
}

.live2d-fortune-message {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 58px;
    padding: 11px 12px;
    border: 1px solid rgba(255, 232, 163, 0.28);
    border-radius: 14px;
    background:
        radial-gradient(circle at 88% 12%, rgba(255, 232, 163, 0.12), transparent 42%),
        rgba(255, 255, 255, 0.065);
    box-shadow:
        inset 0 0 14px rgba(255, 232, 163, 0.06),
        0 0 16px rgba(108, 229, 255, 0.08);
}

.live2d-fortune-message__title {
    margin-bottom: 5px;
    color: #ffe8a3;
    font-size: 12px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 221, 114, 0.28);
}

.live2d-fortune-message__quote {
    color: rgba(234, 252, 255, 0.86);
    font-size: 12px;
    line-height: 1.5;
}

.live2d-fortune-message__quote {
    color: rgba(159, 245, 255, 0.92);
    text-shadow: 0 0 10px rgba(108, 229, 255, 0.24);
}

.live2d-fortune-message--center {
    text-align: center;
}

.live2d-fortune-process {
    display: grid;
    gap: 8px;
    justify-items: center;
    padding: 24px 16px;
    border: 1px solid rgba(108, 229, 255, 0.32);
    border-radius: 16px;
    background:
        radial-gradient(circle at 50% 18%, rgba(255, 232, 163, 0.13), transparent 42%),
        rgba(255, 255, 255, 0.065);
    color: #eafcff;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    box-shadow: inset 0 0 14px rgba(108, 229, 255, 0.06), 0 0 18px rgba(108, 229, 255, 0.08);
    text-shadow: 0 0 12px rgba(108, 229, 255, 0.32);
}

.live2d-fortune-process__moon {
    color: #ffe8a3;
    font-size: 24px;
    line-height: 1;
    text-shadow: 0 0 14px rgba(255, 221, 114, 0.42);
}

/* 英雄池转盘样式：只服务 Live2D 弹窗里的第三个互动功能，保持星空毛玻璃和蓝白发光风格。 */
.live2d-quiz.is-wheel {
    width: 390px;
    max-height: calc(100vh - 130px);
    overflow-y: auto;
}

.live2d-quiz__wheel-panel {
    display: block;
}

.live2d-wheel__lanes {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 12px;
}

.live2d-wheel__lane,
.live2d-wheel__draw,
.live2d-wheel__small {
    border: 1px solid rgba(108, 229, 255, 0.38);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.94);
    cursor: pointer;
    transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.live2d-wheel__lane {
    min-height: 34px;
    padding: 0 6px;
    font-size: 12px;
}

.live2d-wheel__lane.is-active {
    border-color: rgba(159, 245, 255, 0.86);
    background: rgba(62, 203, 255, 0.18);
    box-shadow: 0 0 16px rgba(0, 190, 255, 0.26);
}

.live2d-wheel__lane:hover:not(:disabled),
.live2d-wheel__draw:hover:not(:disabled),
.live2d-wheel__small:hover:not(:disabled) {
    transform: translateY(-1px);
    border-color: rgba(255, 221, 114, 0.72);
    box-shadow: 0 0 16px rgba(255, 221, 114, 0.2);
}

.live2d-wheel__lane:disabled,
.live2d-wheel__draw:disabled,
.live2d-wheel__small:disabled {
    cursor: default;
    opacity: 0.72;
}

.live2d-wheel {
    position: relative;
    width: 186px;
    height: 186px;
    margin: 4px auto 12px;
}

.live2d-wheel__pointer {
    position: absolute;
    top: -5px;
    left: 50%;
    z-index: 4;
    width: 0;
    height: 0;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 18px solid #ffe8a3;
    filter: drop-shadow(0 0 8px rgba(255, 221, 114, 0.55));
}

.live2d-wheel__disc {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 1px solid rgba(159, 245, 255, 0.68);
    border-radius: 50%;
    background:
        radial-gradient(circle at center, rgba(7, 17, 31, 0.95) 0 37%, transparent 38%),
        conic-gradient(from 16deg,
            rgba(73, 214, 255, 0.86),
            rgba(255, 232, 163, 0.88),
            rgba(132, 164, 255, 0.82),
            rgba(117, 255, 201, 0.78),
            rgba(73, 214, 255, 0.86));
    box-shadow: 0 0 28px rgba(0, 190, 255, 0.32), inset 0 0 24px rgba(255, 255, 255, 0.1);
    transition: transform 1.85s cubic-bezier(0.14, 0.72, 0.13, 1);
}

.live2d-wheel__disc.is-spinning {
    box-shadow: 0 0 34px rgba(0, 220, 255, 0.46), inset 0 0 28px rgba(255, 255, 255, 0.16);
}

.live2d-wheel__ring {
    position: absolute;
    inset: 12px;
    border: 1px dashed rgba(255, 255, 255, 0.42);
    border-radius: 50%;
}

.live2d-wheel__hero {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    width: 100px;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border: 1px solid rgba(108, 229, 255, 0.52);
    border-radius: 18px;
    background: rgba(7, 17, 31, 0.9);
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.35;
    text-align: center;
    text-shadow: 0 0 12px rgba(108, 229, 255, 0.5);
    box-shadow: inset 0 0 14px rgba(108, 229, 255, 0.12), 0 0 18px rgba(0, 190, 255, 0.22);
    transform: translate(-50%, -50%);
    white-space: normal;
    word-break: keep-all;
}

.live2d-wheel__draw {
    width: 100%;
    min-height: 40px;
    margin-top: 2px;
    background: linear-gradient(135deg, rgba(73, 214, 255, 0.22), rgba(255, 255, 255, 0.09));
    font-size: 14px;
    font-weight: bold;
}

.live2d-wheel__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 8px;
}

.live2d-wheel__small {
    min-height: 36px;
    font-size: 13px;
}

@media (max-width: 720px) {
    .live2d-widget {
        right: 8px;
        bottom: 8px;
        width: 148px;
        height: 210px;
    }

    .live2d-widget.is-left {
        right: auto;
        left: 8px;
        bottom: 102px;
    }

    .live2d-message {
        right: -168px;
        top: 84px;
        width: 160px;
        max-width: 160px;
        font-size: 12px;
        padding: 6px 8px;
    }

    .live2d-widget.is-left .live2d-message {
        right: auto;
        left: calc(100% + 8px);
        top: 92px;
    }

    #oml2d-main,
    .oml2d-main {
        bottom: 96px !important;
    }

    .live2d-hit-area {
        left: 8px;
        bottom: 88px;
        width: 184px;
        height: 246px;
    }

    .live2d-quiz {
        left: 8px;
        bottom: 348px;
        width: 282px;
        padding: 14px;
    }

    .live2d-quiz__options,
    .live2d-consult-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .live2d-quiz.is-weather {
        width: min(304px, calc(100vw - 44px));
    }

    .live2d-quiz.is-fortune,
    .live2d-quiz.is-memory {
        width: min(320px, calc(100vw - 44px));
    }

    .live2d-fortune-body {
        grid-template-columns: 1fr;
    }

    .live2d-fortune-list {
        grid-template-columns: 1fr;
    }

    .live2d-weather-form,
    .live2d-weather-actions,
    .live2d-memory-actions {
        grid-template-columns: 1fr;
    }

    .live2d-memory-card {
        max-height: 52vh;
    }

    .live2d-memory-row {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 9px 10px;
    }

    .live2d-quiz.is-wheel {
        width: min(320px, calc(100vw - 44px));
        max-height: calc(100vh - 120px);
    }

    .live2d-wheel__lanes {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .live2d-wheel {
        width: 156px;
        height: 156px;
    }

    .live2d-wheel__hero {
        width: 86px;
        min-height: 48px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .live2d-widget {
        left: auto;
        right: 8px;
        bottom: 78px;
        width: 136px;
        height: 198px;
        filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.18));
    }

    #oml2d-main,
    .oml2d-main,
    #oml2d-stage,
    .oml2d-stage {
        position: fixed !important;
        left: 8px;
        bottom: max(92px, calc(env(safe-area-inset-bottom) + 82px));
        width: min(56vw, 216px) !important;
        height: min(65vh, 360px) !important;
        max-width: calc(100vw - 16px) !important;
        max-height: calc(100vh - 116px) !important;
        overflow: visible !important;
        z-index: 55 !important;
        pointer-events: auto !important;
    }

    #oml2d-canvas,
    .oml2d-canvas,
    #oml2d-stage canvas,
    .oml2d-stage canvas {
        width: 100% !important;
        height: 100% !important;
        min-width: 120px;
        min-height: 180px;
        max-width: 100% !important;
        max-height: 100% !important;
        overflow: visible !important;
        pointer-events: auto !important;
    }

    .live2d-widget.is-left {
        left: 8px;
        right: auto;
        bottom: 112px;
    }

    .live2d-widget::before {
        height: 22px;
        opacity: 0.55;
    }

    .live2d-message {
        width: min(80vw, 220px);
        max-width: min(80vw, 220px);
        right: auto;
        left: auto;
        top: -4px;
        font-size: 12px;
        line-height: 1.42;
        padding: 7px 9px;
        backdrop-filter: blur(5px);
    }

    .live2d-widget.is-left .live2d-message {
        left: calc(100% + 8px);
        top: 12px;
    }

    .live2d-hit-area {
        left: 8px;
        bottom: 82px;
        width: 160px;
        height: 218px;
    }

    .live2d-quiz,
    .live2d-quiz.is-weather,
    .live2d-quiz.is-boss-auth,
    .live2d-quiz.is-boss-review,
    .live2d-quiz.is-music,
    .live2d-quiz.is-fortune,
    .live2d-quiz.is-wheel {
        left: 50%;
        right: auto;
        top: auto !important;
        bottom: max(92px, calc(env(safe-area-inset-bottom) + 86px));
        width: min(92vw, 420px);
        max-width: calc(100vw - 24px);
        max-height: 70vh;
        padding: 12px;
        overflow-x: hidden;
        overflow-y: auto;
        font-size: 13px;
        box-sizing: border-box;
        backdrop-filter: blur(6px);
        z-index: 80;
        transform: translateX(-50%) translateY(12px) scale(0.98);
    }

    .live2d-quiz.is-open {
        transform: translateX(-50%) translateY(0) scale(1);
    }

    .live2d-quiz.is-opening {
        animation: live2dQuizPopMobile 0.24s ease both;
    }

    @keyframes live2dQuizPopMobile {
        0% {
            transform: translateX(-50%) translateY(12px) scale(0.98);
            opacity: 0;
        }

        100% {
            transform: translateX(-50%) translateY(0) scale(1);
            opacity: 1;
        }
    }

    .live2d-quiz.is-boss-auth {
        padding: 14px;
        border-radius: 18px;
    }

    .live2d-quiz.is-boss-review {
        padding: 14px;
        border-radius: 18px;
    }

    .live2d-quiz.is-boss-auth .live2d-quiz__meta {
        margin-right: 38px;
        font-size: 18px;
    }

    .live2d-quiz.is-boss-review .live2d-quiz__meta {
        margin-right: 38px;
        font-size: 18px;
    }

    .live2d-quiz.is-boss-auth .live2d-quiz__question {
        margin-right: 38px;
        margin-bottom: 16px;
        font-size: 13px;
    }

    .live2d-quiz.is-boss-review .live2d-quiz__question {
        margin-right: 38px;
        margin-bottom: 16px;
        font-size: 13px;
    }

    .live2d-boss-auth-card {
        gap: 14px;
        padding: 12px;
    }

    .boss-modal-panel {
        gap: 14px;
        padding: 12px;
    }

    .live2d-boss-auth-fields {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .boss-form-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .live2d-boss-auth-input {
        min-height: 48px;
    }

    .boss-form-control,
    .boss-form-stars {
        min-height: 48px;
    }

    .boss-form-textarea {
        min-height: 128px;
    }

    .live2d-boss-auth-actions {
        gap: 10px;
    }

    .boss-modal-actions {
        gap: 10px;
    }

    .live2d-boss-auth-actions .live2d-quiz__option {
        flex: 1 1 calc(50% - 10px);
        min-width: 126px;
        min-height: 42px;
        padding: 0 12px;
        font-size: 13px;
        white-space: nowrap;
    }

    .boss-modal-actions .live2d-quiz__option {
        flex: 1 1 100%;
        min-width: 0;
        min-height: 44px;
        padding: 0 12px;
        font-size: 13px;
        white-space: nowrap;
    }

    .live2d-quiz__meta {
        margin-right: 32px;
        font-size: 11px;
    }

    .live2d-quiz__question {
        margin-right: 32px;
        font-size: 14px;
        line-height: 1.45;
    }

    .live2d-quiz__options,
    .live2d-consult-grid,
    .live2d-weather-form,
    .live2d-weather-actions,
    .live2d-music-controls,
    .live2d-music-actions,
    .live2d-wheel__actions {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .live2d-quiz__option,
    .live2d-consult-card,
    .live2d-weather-submit,
    .live2d-wheel__draw,
    .live2d-wheel__small,
    .live2d-music-track {
        min-height: 38px;
        font-size: 13px;
    }

    .live2d-consult-card {
        min-height: 66px;
        padding: 10px;
    }

    .live2d-weather-input {
        width: 100%;
        min-height: 40px;
        box-sizing: border-box;
    }

    .live2d-weather-card,
    .live2d-weather-page,
    .live2d-calendar-card,
    .live2d-music-list,
    .live2d-fortune-panel,
    .live2d-fortune-body,
    .live2d-fortune-list {
        max-width: 100%;
        overflow-x: hidden;
    }

    .live2d-weather-flip {
        width: 26px;
        height: 26px;
        top: 7px;
        right: 7px;
        font-size: 13px;
        backdrop-filter: blur(4px);
    }

    .live2d-calendar-card {
        padding: 12px 40px 12px 12px;
    }

    .live2d-calendar-row {
        flex-wrap: wrap;
        gap: 4px 7px;
        font-size: 12px;
    }

    .live2d-calendar-tip p {
        font-size: 12px;
    }

    .live2d-music-list {
        max-height: min(32vh, 180px);
    }

    .live2d-wheel__lanes {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .live2d-wheel {
        width: min(52vw, 156px);
        height: min(52vw, 156px);
    }

    .live2d-wheel__hero {
        width: min(30vw, 86px);
        min-height: 46px;
        font-size: 13px;
    }

    .live2d-fortune-item {
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 5px 8px;
    }

    .live2d-fortune-label,
    .live2d-fortune-value,
    .live2d-fortune-message__quote {
        font-size: 12px;
    }
}

html.performance-low .live2d-widget {
    filter: none;
}

html.performance-low .live2d-widget::before {
    opacity: 0.42;
}

html.performance-low .live2d-message,
html.performance-low .live2d-quiz,
html.performance-low .live2d-quiz__option,
html.performance-low .live2d-weather-card,
html.performance-low .live2d-weather-flip,
html.performance-low .live2d-calendar-card,
html.performance-low .live2d-wheel,
html.performance-low .live2d-wheel__small,
html.performance-low .live2d-music-list,
html.performance-low .live2d-fortune-card,
html.performance-low .live2d-fortune-quote,
html.performance-low .live2d-opening-bubble,
html.performance-low .live2d-quiz-exit-bubble,
html.performance-low .live2d-idle-bubble {
    box-shadow: 0 0 10px rgba(0, 190, 255, 0.12);
    backdrop-filter: none;
}

html.performance-low .live2d-quiz.is-opening {
    animation: none;
}

html.performance-low .boss-modal-panel,
html.performance-low .boss-form-stars,
html.performance-low .boss-info-strip {
    box-shadow: none;
}

html.performance-low #oml2d-stage,
html.performance-low #oml2d-canvas,
html.performance-low [id^="oml2d"],
html.performance-low [class*="oml2d"] {
    filter: none !important;
}
