/* Base Reset */
body {
  font-family: 'Minecraftia', sans-serif;
  background: url('../assets/bg-texture.png') repeat;
  color: #f5eff3;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Before */
.streamer-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 80px;
}

/* After */
.streamer-name {
  white-space: nowrap;
  overflow: visible;
  text-overflow: unset;
  max-width: none;
  font-weight: bold;
  font-size: 1.2rem;
  color: #f5f5f5; /* Optional mythic glow */
}

.streaming-identity {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 1px solid #ff4444;
  border-radius: 8px;
  background-color: rgba(255, 0, 0, 0.1);
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.3);
}

.streaming-icon {
  font-size: 1.5rem;
  color: #ff4444;
  text-shadow: 0 0 6px #ff4444;
}

.streaming-name {
  font-family: 'Minecraftia', sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  color: #ff4444;
  text-shadow: 0 0 6px #ff4444;
  margin-top: 0.25rem;
}