.reactions-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-top: 16px;
    min-height: 52px;
}

.reaction-button {
    min-width: 48px;
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
}

.reaction-button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.reaction-float-layer {
    position: fixed;
    top: max(18px, env(safe-area-inset-top));
    left: 50%;
    z-index: 11000;
    display: grid;
    gap: 8px;
    pointer-events: none;
    transform: translateX(-50%);
}

.reaction-toast {
    min-width: min(280px, calc(100vw - 32px));
    padding: 12px 16px;
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(78, 205, 196, 0.24), rgba(255, 107, 107, 0.16)),
        rgba(8, 15, 22, 0.96);
    color: #fff;
    border: 1px solid rgba(78, 205, 196, 0.34);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
    text-align: center;
    font-weight: 800;
    animation: reaction-rise 1600ms ease-out forwards;
}

@keyframes reaction-rise {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    15% {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-18px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .reaction-toast {
        animation: none;
    }
}
