/* =========================
BASE GÉNÉRALE
========================= */
body {
background: transparent;
font-family: "Inter", Arial, sans-serif;
}
#chat-wrapper {
width: 100%;
height: 100%;
overflow: hidden;
}
/* iframe vMix Social */
#social-frame {
width: 100%;
height: 100%;
border: none;
background: transparent;
pointer-events: none;
}
/* =========================
STYLE DES MESSAGES
========================= */
/* Bulle de message */
.social-message {
background: rgba(0, 0, 0, 0.70);
border-radius: 12px;
padding: 10px 14px;
margin: 6px 0;
color: #ffffff;
animation: messageIn 0.35s ease-out;
}
/* Nom utilisateur */
.social-username {
font-weight: 600;
margin-right: 6px;
white-space: nowrap;
}
/* Texte du message */
.social-text {
font-weight: 400;
line-height: 1.4;
word-wrap: break-word;
}
/* =========================
COULEURS PAR PLATEFORME
========================= */
.social-youtube .social-username {
color: #ff3b3b;
}
.social-facebook .social-username {
color: #1877f2;
}
/* =========================
LIMITATION À 6 MESSAGES
========================= */
.social-message:nth-last-child(n+7) {
display: none;
}
/* =========================
ANIMATION
========================= */
@keyframes messageIn {
from {
opacity: 0;
transform: translateY(18px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* =========================
NETTOYAGE VISUEL
========================= */
/* Suppression des éléments inutiles si présents */
.social-time,
.social-icon,
.social-platform {
display: none !important;
}