* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --pill-pink: #f6c9d8;
    --pill-pink-text: #4a2d39;
    --bubble-dark: rgba(20, 17, 32, 0.80);
    --border-soft: rgba(255, 255, 255, 0.1);
}

body {
    background-color: transparent;
    font-family: "Poppins", "Segoe UI", system-ui, sans-serif;
    color: #fff;
    overflow: hidden;
}

/* Fond sombre uniquement en preview (?test=1), transparent dans OBS */
body.preview {
    background: radial-gradient(circle at 50% 0%, #14101f 0%, #08060d 70%);
}

#chat-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 22px;
    height: 100vh;
    padding: 18px 26px;
    max-width: 460px;
}

/* ---------- Message ---------- */
.msg {
    position: relative;
    animation: fadeIn 0.35s ease-out;
}

.msg__deco {
    position: absolute;
    inset: -14px -10px;
    z-index: 2;
    pointer-events: none;
}

.deco {
    position: absolute;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.4));
}

.deco--flower {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Cg fill='%239d7fd6'%3E%3Cellipse cx='20' cy='9' rx='6' ry='9'/%3E%3Cellipse cx='20' cy='9' rx='6' ry='9' transform='rotate(72 20 20)'/%3E%3Cellipse cx='20' cy='9' rx='6' ry='9' transform='rotate(144 20 20)'/%3E%3Cellipse cx='20' cy='9' rx='6' ry='9' transform='rotate(216 20 20)'/%3E%3Cellipse cx='20' cy='9' rx='6' ry='9' transform='rotate(288 20 20)'/%3E%3C/g%3E%3Ccircle cx='20' cy='20' r='5' fill='%23f3d36b'/%3E%3C/svg%3E");
}

.deco--leaf {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Cpath d='M6 34 C6 16 18 6 34 6 C34 24 22 34 6 34 Z' fill='%236f63ad'/%3E%3Cpath d='M11 30 C17 21 24 15 30 12' stroke='%23a99fde' stroke-width='1.6' fill='none'/%3E%3C/svg%3E");
}

.deco--sparkle {
    width: 22px;
    height: 22px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Cpath d='M20 3 C22 16 24 18 37 20 C24 22 22 24 20 37 C18 24 16 22 3 20 C16 18 18 16 20 3 Z' fill='%23bcd6f7'/%3E%3C/svg%3E");
}

/* ---------- En-tête : icône + pastille nom ---------- */
.msg__header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 14px;
    margin-bottom: -8px;
    position: relative;
    z-index: 3;
}

.msg__name {
    padding: 5px 16px;
    border-radius: 13px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.1;
    background: var(--pill-pink);
    color: var(--pill-pink-text);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

/* ---------- Bulle ---------- */
.msg__bubble {
    position: relative;
    z-index: 1;
    margin-top: 14px;
    padding: 14px 18px;
    border-radius: 18px;
    background: var(--bubble-dark);
    border: 1px solid var(--border-soft);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.4);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.45;
    color: #fff;
    word-break: break-word;
}

.msg__bubble .emote {
    height: 1.7em;
    width: auto;
    vertical-align: middle;
    margin: 0 2px;
}

/* ---------- Status / dev ---------- */
.status {
    position: fixed;
    bottom: 4px;
    right: 8px;
    font-size: 11px;
    opacity: 0.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9);
}

.status.connected {
    opacity: 0;
}

#dev-badge {
    position: fixed;
    top: 6px;
    right: 6px;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255, 80, 80, 0.85);
    border-radius: 4px;
    z-index: 9999;
    pointer-events: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}