#chatWrapper {
    position: relative;
}

#guestVipChatHinweis {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 6;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 16px;
    text-align: center;
    overflow: auto;
    background:
        radial-gradient(circle at 50% 18%, rgba(168, 85, 247, 0.28), transparent 46%),
        linear-gradient(165deg, #16051d 0%, #1a0b24 42%, #0d0d0f 100%);
}

#guestVipChatHinweis::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 215, 0, 0.05) 1px, transparent 1px);
    background-size: 100% 28px;
    opacity: 0.35;
}

body.guest-vip-chat-locked #chatWrapper {
    overflow: hidden !important;
}

body.guest-vip-chat-locked #guestVipChatHinweis {
    display: flex;
}

body.guest-vip-chat-locked #chatinhalt,
body.guest-vip-chat-locked #chatAnchor,
body.guest-vip-chat-locked #chatLockToggle,
body.guest-vip-chat-locked #chatSpecialWrapper {
    visibility: hidden;
}

body.guest-vip-chat-locked #chatEingabezeile {
    display: none;
}

.guest-vip-chat-emote {
    position: relative;
    width: 118px;
    height: 118px;
    margin-bottom: 12px;
    flex-shrink: 0;
}

.guest-vip-chat-emote img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.55));
    animation: guest-vip-chat-wobble 3.2s ease-in-out infinite;
}

.guest-vip-chat-emote::after {
    content: "VIP";
    position: absolute;
    right: -6px;
    bottom: 8px;
    padding: 2px 7px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #1a0a00;
    background: linear-gradient(180deg, #ffe27a 0%, #f5b942 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.guest-vip-chat-kicker {
    position: relative;
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #f5c84a;
}

.guest-vip-chat-titel {
    position: relative;
    margin: 0 0 10px;
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.25;
    color: #fff;
}

.guest-vip-chat-text {
    position: relative;
    margin: 0 0 14px;
    max-width: 22rem;
    font-size: 0.92rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.86);
}

.guest-vip-chat-actions {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.guest-vip-chat-actions .btn {
    font-weight: 700;
    padding: 0.4rem 1.1rem;
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(40, 167, 69, 0.28);
}

.guest-vip-chat-register {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.72);
}

.guest-vip-chat-register:hover {
    color: #fff;
    text-decoration: underline;
}

@keyframes guest-vip-chat-wobble {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-6px) rotate(2deg); }
}

@media (max-width: 767px) {
    .guest-vip-chat-emote {
        width: 96px;
        height: 96px;
    }

    .guest-vip-chat-titel {
        font-size: 1.05rem;
    }
}
