body {
    margin: 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    font-family: 'Gotham', sans-serif;
    overflow: hidden;
    font-size: 24px;
}

#message-container {
    height: 100vh;
    width: 100vw;
    position: relative;
}

.message {
    position: absolute;
    white-space: pre-wrap;
    transform: scale(0);
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
    animation: popIn 0.3s forwards, fadeOut 0.3s forwards;
    animation-delay: 0s, 4.7s;
    word-wrap: break-word;
    max-width: 600px;
}

.username {
    font-weight: bold;
    background-clip: text;
}

.emote {
    vertical-align: middle;
    height: 32px;
    margin: -4px 2px;
}

@keyframes popIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.8);
    }
}