:root {
    color-scheme: light;
    --page-bg: #eef0f3;
    --card-border: rgba(255, 255, 255, 0.30);
    --text-primary: rgba(255, 255, 255, 0.98);
    --text-secondary: rgba(255, 255, 255, 0.78);
    --text-soft: rgba(255, 255, 255, 0.62);
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
    --accent: rgba(255, 255, 255, 0.82);
    --accent-strong: #ffffff;
    --glass: blur(22px);
    --bg-blur: 0px;
    --sheet-blur: 12px;
    --sheet-dim: 0.04;
    --sheet-progress: 0;
    --sheet-peek: 150px;
}

* {
    box-sizing: border-box;
}

html,
body,
body * {
    -webkit-user-select: none;
    user-select: none;
    -ms-user-select: none;
}

html {
    min-height: 100%;
    overflow: hidden;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    background: var(--page-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    overflow-y: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(16, 18, 24, 0.08) 0%, rgba(16, 18, 24, 0.14) 58%, rgba(16, 18, 24, 0.24) 100%),
        url("background.jpg") center center / cover no-repeat;
    transform: scale(1.02);
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.18), transparent 38%),
        linear-gradient(180deg, rgba(12, 16, 22, 0.04), rgba(12, 16, 22, 0.12));
    backdrop-filter: blur(var(--bg-blur)) saturate(1.08);
    -webkit-backdrop-filter: blur(var(--bg-blur)) saturate(1.08);
    z-index: -1;
}

.stage {
    min-height: 100vh;
    padding:
        max(18px, env(safe-area-inset-top))
        max(18px, env(safe-area-inset-right))
        max(18px, env(safe-area-inset-bottom))
        max(18px, env(safe-area-inset-left));
}

.guest-banner {
    position: fixed;
    top: max(18px, env(safe-area-inset-top));
    left: 50%;
    transform: translateX(-50%) translateY(calc(var(--sheet-progress) * -18px)) scale(calc(1 - var(--sheet-progress) * 0.02));
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 18px 13px 17px;
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(34, 36, 44, 0.34), rgba(34, 36, 44, 0.18)),
        rgba(28, 30, 36, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(24px) saturate(1.08);
    -webkit-backdrop-filter: blur(24px) saturate(1.08);
    box-shadow:
        0 16px 38px rgba(18, 18, 20, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.10);
    z-index: 3;
    opacity: calc(1 - var(--sheet-progress));
    pointer-events: none;
    transition: opacity 180ms ease, transform 260ms cubic-bezier(0.22, 0.8, 0.18, 1);
    max-width: calc(100vw - 28px);
    overflow: hidden;
}

.guest-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 30%),
        radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 36%);
    pointer-events: none;
}

.guest-banner__prefix,
.guest-banner__name,
.guest-banner__title,
.guest-banner__divider {
    position: relative;
    z-index: 1;
}

.guest-banner__prefix {
    flex: 0 0 auto;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.24em;
    color: rgba(255, 255, 255, 0.88);
    text-transform: uppercase;
    white-space: nowrap;
}

.guest-banner__divider {
    width: 1px;
    height: 24px;
    border-radius: 999px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.42), transparent);
    opacity: 0.9;
}

.guest-banner__body {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    min-width: 0;
}

.guest-banner__name {
    font-size: clamp(18px, 4.8vw, 28px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.99);
    white-space: nowrap;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.10), 0 2px 10px rgba(0, 0, 0, 0.16);
}

.guest-banner__title {
    font-size: clamp(12px, 2.6vw, 15px);
    line-height: 1.2;
    letter-spacing: 0.20em;
    color: rgba(255, 255, 255, 0.86);
    white-space: nowrap;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.06), 0 2px 8px rgba(0, 0, 0, 0.12);
}

.invite-sheet {
    position: relative;
    width: min(100%, 760px);
    height: min(80svh, 860px);
    margin: 0 auto;
    margin-top: calc(100svh - min(80svh, 860px) - max(14px, env(safe-area-inset-bottom)));
    padding: 12px 18px 14px;
    border-radius: 34px 34px 0 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow);
    backdrop-filter: blur(var(--sheet-blur));
    -webkit-backdrop-filter: blur(var(--sheet-blur));
    overflow: hidden;
    transform: translateY(calc((1 - var(--sheet-progress)) * (100% - var(--sheet-peek))));
    transition: transform 260ms cubic-bezier(0.22, 0.8, 0.18, 1), backdrop-filter 260ms ease, background 260ms ease;
    will-change: transform, backdrop-filter;
}

.invite-sheet::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.30), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 32%);
    pointer-events: none;
    z-index: 0;
}

.invite-sheet::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(180deg, rgba(255, 255, 255, calc(0.14 + var(--sheet-progress) * 0.10)), transparent 18%),
        linear-gradient(180deg, transparent 0%, rgba(16, 18, 24, calc(var(--sheet-dim))) 100%);
    pointer-events: none;
    z-index: 0;
}

.sheet-handle,
.sheet-content {
    position: relative;
    z-index: 1;
}

.sheet-handle {
    width: 100%;
    display: grid;
    place-items: center;
    gap: 6px;
    padding: 8px 14px 12px;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: grab;
    touch-action: none;
}

.sheet-handle:active {
    cursor: grabbing;
}

.sheet-handle__bar {
    width: 48px;
    height: 14px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    transform:
        translateY(calc(var(--sheet-progress) * -3px))
        scaleX(calc(1 + var(--sheet-progress) * 0.55))
        scaleY(calc(1 - var(--sheet-progress) * 0.12));
    opacity: calc(0.72 + var(--sheet-progress) * 0.28);
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
    transition:
        transform 220ms cubic-bezier(0.22, 0.8, 0.18, 1),
        opacity 220ms ease,
        background 220ms ease,
        box-shadow 220ms ease;
}

.sheet-handle__bar-core {
    width: 44px;
    height: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.50);
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
    transform-origin: center;
}

.invite-sheet[data-sheet-state="closed"] .sheet-handle__bar-core {
    animation: handleHintFloat 1.65s cubic-bezier(0.45, 0, 0.25, 1) infinite;
}

.invite-sheet[data-sheet-state="open"] .sheet-handle__bar-core,
.invite-sheet[data-sheet-state="dragging"] .sheet-handle__bar-core {
    animation: none;
}

.sheet-handle__copy {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.90);
    text-transform: uppercase;
}

.sheet-handle__hint {
    font-size: 12px;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.68);
    opacity: calc(1 - var(--sheet-progress) * 1.05);
    transform: translateY(calc(var(--sheet-progress) * -4px));
    transition:
        opacity 180ms ease,
        transform 220ms cubic-bezier(0.22, 0.8, 0.18, 1);
}

@keyframes handleHintFloat {
    0%,
    100% {
        transform: translateY(0);
        opacity: 0.58;
    }

    50% {
        transform: translateY(-4px);
        opacity: 0.95;
    }
}

.sheet-content {
    height: calc(100% - 68px);
    overflow: hidden;
    min-height: 0;
    touch-action: none;
}

.sheet-content__track {
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 4px 8px 10px;
    min-height: 100%;
    transform: translate3d(0, var(--content-offset, 0px), 0);
    will-change: transform;
}

.celebration-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 4;
}

.confetti-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 3;
}

.balloon {
    position: absolute;
    bottom: -18vh;
    left: var(--x, 50%);
    width: var(--size, 54px);
    height: calc(var(--size, 54px) * 1.28);
    border-radius: 50% 50% 47% 47%;
    background:
        radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.84), transparent 18%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 18%),
        var(--balloon-color, #ff8fb1);
    box-shadow:
        inset -8px -14px 22px rgba(0, 0, 0, 0.10),
        inset 10px 10px 18px rgba(255, 255, 255, 0.20),
        0 14px 28px rgba(18, 18, 20, 0.14);
    transform: translate3d(0, 0, 0);
    animation: balloonRise var(--duration, 2600ms) cubic-bezier(0.18, 0.82, 0.24, 1) forwards;
}

.balloon::before {
    content: "";
    position: absolute;
    inset: 7% 8% auto auto;
    width: 22%;
    height: 22%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0));
    filter: blur(0.5px);
    opacity: 0.85;
}

.balloon::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -7px;
    width: 11px;
    height: 11px;
    margin-left: -5.5px;
    transform: rotate(45deg);
    border-radius: 0 0 4px 0;
    background: inherit;
    box-shadow: inset -2px -2px 3px rgba(0, 0, 0, 0.12);
}

.balloon__string {
    position: absolute;
    left: 50%;
    top: calc(100% - 1px);
    width: 1px;
    height: var(--string-height, 96px);
    margin-left: -0.5px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.04));
    transform-origin: top center;
    opacity: 0.55;
}

@keyframes balloonRise {
    0% {
        opacity: 0;
        transform: translate3d(0, 18vh, 0) scale(0.92);
    }

    8% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate3d(var(--drift-x, 0px), calc(-126vh - var(--extra-rise, 0px)), 0) scale(0.88);
    }
}

.invite-header {
    display: grid;
    gap: 6px;
    justify-items: center;
    margin-bottom: 2px;
}

.invite-mark {
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.invite-submark {
    font-size: 14px;
    letter-spacing: 0.18em;
    color: var(--text-soft);
}

.couple-block {
    text-align: center;
    margin-bottom: 0;
}

.couple-name {
    margin: 0;
    font-family: "Times New Roman", "Songti SC", "Noto Serif CJK SC", serif;
    font-size: clamp(36px, 8vw, 52px);
    line-height: 1.05;
    letter-spacing: 0.02em;
    font-weight: 700;
    color: var(--accent-strong);
    text-wrap: balance;
}

.couple-name span {
    display: inline-block;
    margin: 0 6px;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
    font-weight: 500;
    font-size: 0.82em;
    color: rgba(255, 255, 255, 0.78);
}

.couple-note {
    margin: 10px auto 0;
    max-width: 28ch;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.04em;
    color: var(--text-secondary);
}

.guest-block {
    display: grid;
    place-items: center;
    margin-bottom: 0;
}

.guest-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px 15px;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.20), rgba(255, 255, 255, 0.10)),
        rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 12px 28px rgba(18, 18, 20, 0.06);
    max-width: 100%;
    text-align: center;
    backdrop-filter: blur(10px);
}

.guest-chip__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.guest-chip__name {
    font-size: clamp(24px, 5vw, 34px);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--accent-strong);
    white-space: nowrap;
}

.guest-chip__title {
    font-size: clamp(12px, 2.8vw, 15px);
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.76);
    letter-spacing: 0.18em;
    white-space: nowrap;
}

.guest-chip.is-placeholder .guest-chip__name {
    opacity: 0.84;
}

.guest-chip.is-placeholder .guest-chip__title {
    display: none;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 0;
}

.detail-card {
    display: grid;
    gap: 8px;
    padding: 16px 14px 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    min-height: 120px;
}

.detail-card__label {
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.58);
    text-transform: uppercase;
}

.detail-card__value {
    font-size: clamp(18px, 4.3vw, 24px);
    line-height: 1.2;
    font-weight: 600;
    color: var(--text-primary);
    text-wrap: balance;
}

.detail-card__meta {
    font-size: 13px;
    line-height: 1.65;
    color: var(--text-secondary);
}

.invite-copy {
    margin: 0;
    text-align: center;
    padding: 0 8px;
}

.invite-copy p {
    margin: 0;
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-secondary);
    letter-spacing: 0.04em;
}

.trailer-block {
    display: grid;
    gap: 10px;
    padding: 16px 14px 14px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 34px rgba(18, 18, 20, 0.08);
    z-index: 1;
}

.trailer-block__head {
    display: grid;
    gap: 4px;
}

.trailer-block__label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.58);
    text-transform: uppercase;
}

.trailer-block__sub {
    font-size: 14px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.78);
}

.trailer-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.16);
    text-decoration: none;
    color: var(--text-primary);
}

.trailer-card__qr {
    width: 120px;
    height: 120px;
    border-radius: 18px;
    background: #fff;
    display: block;
}

.trailer-card__copy {
    display: grid;
    gap: 8px;
}

.trailer-card__copy strong {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
}

.trailer-card__copy span {
    font-size: 13px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.76);
}

.action-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 4px;
}

.action-row--bottom {
    justify-content: center;
    gap: 10px;
    padding-top: 2px;
    padding-bottom: 2px;
    margin-top: 2px;
}

.invite-response {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 2px 0 0;
}

.invite-response__accept,
.invite-response__revoke {
    min-height: 50px;
    padding: 0 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    cursor: pointer;
    border: 0;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, opacity 180ms ease;
}

.invite-response__accept {
    min-width: min(100%, 320px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 244, 246, 0.94));
    color: #1d1d1f;
    box-shadow: 0 14px 34px rgba(18, 18, 20, 0.16);
}

.invite-response__accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 38px rgba(18, 18, 20, 0.18);
}

.invite-response__accept:active {
    transform: translateY(1px);
}

.invite-response__revoke {
    min-width: min(100%, 320px);
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.90);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: none;
    transition: none;
}

.invite-response__revoke:hover,
.invite-response__revoke:active {
    transform: none;
    box-shadow: none;
}

.invite-sheet.is-accepted .invite-response__accept {
    display: none;
}

.invite-sheet:not(.is-accepted) .invite-response__revoke {
    display: none;
}

.confetti-piece {
    position: absolute;
    left: 0;
    top: 0;
    width: 10px;
    height: 16px;
    border-radius: 2px;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation: confettiFly var(--duration, 900ms) cubic-bezier(0.16, 0.84, 0.24, 1) forwards;
}

@keyframes confettiFly {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) translate(0, 0) rotate(0deg) scale(0.9);
    }

    12% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) translate(var(--tx), var(--ty)) rotate(var(--rot)) scale(0.85);
    }
}

.music-toggle {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.90);
    color: #1d1d1f;
    box-shadow: 0 12px 30px rgba(18, 18, 20, 0.12);
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.music-toggle--compact {
    flex: 0 1 auto;
    min-height: 38px;
    padding: 0 14px;
    gap: 8px;
    font-size: 12px;
}

.music-toggle--compact .music-toggle__icon {
    width: 15px;
    height: 15px;
}

.music-toggle--compact .music-toggle__text {
    font-size: 12px;
    letter-spacing: 0.06em;
}

.music-toggle:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(18, 18, 20, 0.14);
}

.music-toggle:active {
    transform: translateY(1px);
}

.music-toggle__icon {
    width: 18px;
    height: 18px;
    display: inline-grid;
    place-items: center;
}

.music-toggle__icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.music-toggle__text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.share-hint {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: rgba(255, 255, 255, 0.10);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.share-hint--compact {
    min-height: 38px;
    padding: 0 14px;
    font-size: 12px;
}

.invite-sheet.is-playing .music-toggle {
    background: #ffffff;
}

.invite-sheet.is-playing .music-toggle__text {
    color: #1d1d1f;
}

.invite-sheet.is-playing .music-toggle__icon {
    color: #1d1d1f;
}

@media (max-width: 480px) {
    .stage {
        padding: 0;
    }

    .guest-banner {
        top: 12px;
        max-width: calc(100vw - 24px);
        padding: 10px 13px 10px 12px;
        gap: 8px;
    }

    .guest-banner__prefix {
        padding: 5px 8px;
        font-size: 10px;
        letter-spacing: 0.18em;
    }

    .guest-banner__divider {
        height: 20px;
    }

    .guest-banner__body {
        gap: 8px;
    }

    .guest-banner__name {
        font-size: 18px;
    }

    .guest-banner__title {
        font-size: 12px;
        letter-spacing: 0.12em;
    }

    .guest-chip {
        gap: 8px;
        padding: 12px 14px 13px;
        border-radius: 24px;
    }

    .guest-chip__label {
        min-width: 44px;
        padding: 6px 9px;
        font-size: 10px;
    }

    .guest-chip__name {
        font-size: clamp(20px, 6vw, 28px);
    }

    .invite-sheet {
        width: 100%;
        height: min(82svh, 1000px);
        margin-top: calc(100svh - min(82svh, 1000px));
        padding: 10px 14px 12px;
        border-radius: 30px 30px 0 0;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .detail-card {
        min-height: auto;
    }

    .action-row {
        flex-direction: column;
    }

    .music-toggle--compact,
    .share-hint--compact {
        width: 100%;
    }

    .action-row--bottom {
        flex-direction: row;
    }

    .action-row--bottom .music-toggle--compact,
    .action-row--bottom .share-hint--compact {
        width: auto;
        flex: 1;
        min-width: 0;
    }

    .invite-response {
        width: 100%;
    }

    .invite-response__accept,
    .invite-response__revoke {
        width: 100%;
        min-width: 0;
    }

    .trailer-card {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .trailer-card__qr {
        width: 148px;
        height: 148px;
    }

    .sheet-handle {
        padding-top: 4px;
    }

}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
