.discord-window {
  background: #313338;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #222327;
  max-width: 620px;
}

.discord-layout { display: flex; }

.discord-channels {
  background: #2b2d31;
  width: 160px;
  border-right: 1px solid #222327;
  padding: 8px 0;
  flex-shrink: 0;
}

.discord-server-name {
  padding: 8px 12px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: bold;
  color: #efeff1;
  border-bottom: 1px solid #1e1f22;
  margin-bottom: 8px;
}

.discord-category {
  padding: 4px 12px;
  font-family: Arial, sans-serif;
  font-size: 10px;
  color: #949ba4;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.discord-channel {
  padding: 4px 10px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: #949ba4;
  cursor: pointer;
  border-radius: 3px;
  margin: 0 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.discord-channel.active  { background: rgba(255,255,255,0.1); color: #efeff1; }
.discord-channel:hover   { background: rgba(255,255,255,0.07); color: #efeff1; }

.discord-main { flex: 1; display: flex; flex-direction: column; }

.discord-channel-header {
  background: #313338;
  padding: 10px 14px;
  border-bottom: 1px solid #1e1f22;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: bold;
  color: #efeff1;
}

.discord-hash { color: #949ba4; font-size: 18px; font-weight: normal; }

.discord-messages { padding: 12px; }

.discord-msg { display: flex; gap: 10px; margin-bottom: 12px; }

.discord-avatar-circle {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--fc-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: #000;
  flex-shrink: 0;
  font-family: 'Press Start 2P', monospace;
}

.discord-msg-content { flex: 1; }

.discord-username {
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: bold;
  color: var(--fc-accent);
  margin-bottom: 2px;
}

.bot-tag {
  background: #5865f2;
  color: #fff;
  font-size: 9px;
  padding: 1px 5px;
  border-radius: 3px;
  margin-left: 6px;
  font-family: Arial, sans-serif;
  font-weight: normal;
  vertical-align: middle;
}

.discord-text {
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: #dbdee1;
  margin-bottom: 8px;
  line-height: 1.5;
}

.discord-embed {
  border-left: 4px solid var(--fc-accent);
  background: #2b2d31;
  padding: 10px 14px;
  border-radius: 0 4px 4px 0;
  max-width: 440px;
}

.discord-embed-title {
  font-family: 'Press Start 2P', monospace;
  font-size: 8px;
  color: var(--fc-accent);
  margin-bottom: 8px;
  line-height: 1.8;
}

.discord-embed-desc {
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: #b5bac1;
  margin-bottom: 12px;
  line-height: 1.7;
}
.discord-embed-desc strong { color: var(--fc-accent); }

.discord-btns { display: flex; gap: 8px; flex-wrap: wrap; }

.discord-btn {
  background: #4e5058;
  border: none;
  border-radius: 3px;
  padding: 7px 14px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  color: #dbdee1;
  cursor: pointer;
  transition: background 0.1s;
}
.discord-btn:hover      { background: #686d73; }
.discord-btn.yes-btn    { background: var(--fc-accent); color: #000; font-weight: bold; }
.discord-btn.yes-btn:hover { background: var(--fc-accent-hover); }
.discord-btn.no-btn-d   { background: rgba(204,51,51,0.8); color: #fff; }
