html.ofar-guest-card-muted #ofarGuestCard {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

#ofarGuestCard {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 2147483647;
    width: min(380px, calc(100vw - 40px));
    transform: translate(-50%, -50%);
}

#ofarGuestCard .ofar-guest-card-inner {
    position: relative;
    overflow: hidden;
    padding: 14px 16px;
    border-radius: 18px;
    background: linear-gradient(135deg, #7f1d1d, #b91c1c, #ef4444);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.7), 0 12px 40px rgba(0, 0, 0, 0.4);
    color: #fff;
    cursor: default;
    font-family: ui-monospace, system-ui;
    font-weight: 900;
    text-align: center;
    animation: ofarGuestCardFirePulse 1.2s ease-in-out 4 alternate;
    will-change: transform;
}

#ofarGuestCard .ofar-guest-card-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 55%);
    pointer-events: none;
}

#ofarGuestCard .ofar-guest-card-inner::after {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 14px;
    pointer-events: none;
}

@keyframes ofarGuestCardFirePulse {
    from {
        transform: translateY(0) scale(1);
    }
    to {
        transform: translateY(-1px) scale(1.025);
    }
}

#ofarGuestCard .ofar-guest-card-badge {
    position: relative;
    z-index: 2;
    margin-bottom: 8px;
    font-size: 26px;
    line-height: 1;
}

#ofarGuestCard .ofar-guest-card-title {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 18px;
}

#ofarGuestCard .ofar-guest-card-title::before {
    content: "🔥";
    font-size: 18px;
}

#ofarGuestCard .ofar-guest-card-sub {
    position: relative;
    z-index: 2;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 900;
    opacity: 0.95;
    text-align: center;
}

#ofarGuestCard .ofar-guest-card-actions {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 10px;
}

#ofarGuestCard .ofar-guest-card-btn {
    flex: 1;
    padding: 10px 12px;
    border: 0;
    border-radius: 14px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 900;
    line-height: normal;
    text-align: center;
    text-decoration: none;
    transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.12s ease;
    white-space: nowrap;
}

#ofarGuestCard .ofar-guest-card-btn-solid {
    background: #fff;
    box-shadow: inset 0 0 8px rgba(239, 68, 68, 0.35), 0 10px 22px rgba(0, 0, 0, 0.18);
    color: #7f1d1d;
}

#ofarGuestCard .ofar-guest-card-btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

#ofarGuestCard .ofar-guest-card-btn:hover,
#ofarGuestCard .ofar-guest-card-btn:focus-visible {
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

#ofarGuestCard .ofar-guest-card-btn:active {
    opacity: 0.95;
    transform: translateY(0);
}

@media (max-width: 480px) {
    #ofarGuestCard {
        width: calc(100vw - 24px);
    }

    #ofarGuestCard .ofar-guest-card-actions {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    #ofarGuestCard .ofar-guest-card-inner {
        animation: none;
        will-change: auto;
    }

    #ofarGuestCard .ofar-guest-card-btn {
        transition: none;
    }
}