.legal-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 24px 80px;
  /* Adds a subtle depth against the black body */
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 100%);
  border-radius: 16px;
}

.legal-content h2 {
  font-family: 'Orbitron', sans-serif; /* Matched to your brand font */
  font-size: 1.6rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.legal-content p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
  opacity: 0.9;
}

.legal-content ul {
  margin-left: 20px;
  margin-bottom: 30px;
  list-style-type: square; /* Sharper look */
}

.legal-content li {
  color: var(--muted);
  margin-bottom: 12px;
  padding-left: 8px;
}

.divider {
  border: none;
  height: 1px;
  /* Gradient line for a sleek tech feel */
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 50px 0;
  opacity: 0.3;
}

.note {
  padding: 20px;
  background: #111;
  border-left: 3px solid var(--accent);
  border-radius: 4px;
}

.note a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}

.note a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

a {
  color: var(--accent);
  text-decoration: none;
}


.slash-command {
  display: inline-flex;
  align-items: center;
  
  /* Background & Border */
  background-color: #1e1f22; /* Darker background */
  border-radius: 4px;
  padding: 0px 4px; /* Increased horizontal padding */
  
  /* Typography */
  color: #949cf7; /* The signature "blurple" text color */
  font-family: "gg sans", "Noto Sans", "Helvetica Neue", sans-serif;
  font-size: 1rem;
  font-weight: 600; /* Bolder weight for the text */
  
  /* Spacing and removal of border */
  border: none;
  cursor: pointer;
  line-height: 1.5;
}

.slash-command:hover {
  background-color: #5865f2; /* Subtle highlight on hover */
  color: #fff;
}
