/* ── CONTACT / DISCORD ──────────────────────────────────── */

.contact-section {
  text-align: center;
  padding: 80px 20px;
  margin-bottom: 40px;
}

.discord-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.1em;
  padding: 20px 40px;
  border: 1px solid var(--red-dim);
  display: inline-block;
  position: relative;
  background: var(--panel);
  cursor: pointer;
  transition: all 0.3s;
}

.discord-tag:hover {
  border-color: var(--red);
  box-shadow: 0 0 30px rgba(139,37,37,0.2);
}

.discord-tag::before {
  content: 'DISCORD';
  position: absolute;
  top: -8px;
  left: 20px;
  font-size: 9px;
  letter-spacing: 0.4em;
  color: var(--red);
  background: var(--bg);
  padding: 0 8px;
}

/* ── TOAST ──────────────────────────────────────────────── */

.copy-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--red);
  color: var(--white);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  padding: 10px 24px;
  font-weight: 500;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  z-index: 1000;
}

.copy-toast.show { transform: translateX(-50%) translateY(0); }
