#larpg-notify-root {
    position: fixed;
    top: 18px;
    right: 18px;
    width: min(92vw, 380px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 32000;
    pointer-events: none;
}

.larpg-toast {
    position: relative;
    pointer-events: auto;
    padding: 14px 44px 12px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 220, 150, 0.32);
    background:
        radial-gradient(circle at 88% 12%, rgba(255, 220, 150, 0.12), transparent 34%),
        linear-gradient(145deg, rgba(68, 50, 39, 0.98) 0%, rgba(38, 28, 22, 0.99) 100%);
    box-shadow:
        0 12px 24px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    color: #f6ead8;
    font-family: "Cormorant Garamond", serif;
    line-height: 1.35;
    letter-spacing: 0.2px;
    transform: translateX(14px);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.larpg-toast.is-visible {
    transform: translateX(0);
    opacity: 1;
}

.larpg-toast.is-hiding {
    transform: translateX(14px);
    opacity: 0;
}

.larpg-toast__title {
    margin: 0 0 4px;
    font-size: 20px;
    color: #ffe4a5;
}

.larpg-toast__message {
    margin: 0;
    font-size: 17px;
    color: #f3e5cf;
}

.larpg-toast__close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: 1px solid rgba(255, 220, 150, 0.26);
    background: rgba(20, 15, 10, 0.48);
    color: #f6ead8;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.larpg-toast__close:hover {
    background: rgba(255, 220, 150, 0.15);
    border-color: rgba(255, 220, 150, 0.46);
}

.larpg-toast--error {
    border-color: rgba(255, 155, 132, 0.42);
}

@media (max-width: 640px) {
    #larpg-notify-root {
        top: 12px;
        right: 12px;
        left: 12px;
        width: auto;
    }

    .larpg-toast {
        padding-right: 40px;
    }
}
