.About {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  scroll-snap-align: start;
}

.About h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.About h2 span {
  background: var(--accent-gradient);
  font-weight: 700;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 1px rgba(56, 154, 163, 0.3);
}

.About p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.About p span {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.OrangeCardOld {
  max-width: 800px;
  padding: 2rem 2.5rem;
  border-radius: 16px;
  background: rgba(203, 157, 73, 0.151);
  border: 2.5px solid var(--primary);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.OrangeCard {
  width: 90%;
  margin-top: 1.8rem;
  padding: 1.2rem 1.5rem;
  border-radius: 14px;
  background: rgba(203, 157, 73, 0.15);
  border: 2px solid var(--primary);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: box-shadow 0.3s ease;
}

.OrangeCard:hover {
  box-shadow: 0 0 18px rgba(200, 135, 5, 0.15);
}

.OrangeCard.Large {
  width: 75%;
  max-width: 900px;
  padding: 1.8rem 2.2rem;
  margin: 1.8rem auto 0 auto;
}

.OrangeCard.Large:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(203, 157, 73, 0.15);
  transition: all 0.3s ease;
}

.BlackCard {
  max-width: 800px;
  padding: 2rem 2.5rem;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.35);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.BlackCard.Large {
  width: 75%;
  padding: 1.8rem 2.2rem;
}

.ProfileHeader {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ProfileImg {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  object-fit: cover;
  box-shadow: 0 0 8px rgba(56, 154, 163, 0.35);
}

.ProfileInfo h3 {
  margin: 0;
  text-align: left;
  font-weight: 700;
}

.ProfileInfo h3 span {
  color: var(--primary);
  margin: 0;
  font-weight: 600;
}

.ProfileInfo span {
  font-size: 0.9rem;
  opacity: 0.85;
}

.ProfileTags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.ProfileTag {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  user-select: none;
  border: 1.5px solid transparent;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: inline-flex;
  align-items: center;
  transition: 0.2s ease;
}

.ProfileTag.Generic {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.15);
}

.ProfileTag.Red {
  background: rgba(255, 77, 77, 0.18);
  color: #ff4d4d;
  border-color: rgba(255, 77, 77, 0.35);
}

.ProfileTag.Blue {
  background: rgba(91, 173, 255, 0.18);
  color: #5badff;
  border-color: rgba(91, 173, 255, 0.35);
}

.ProfileTag.Yellow {
  background: rgba(252, 198, 70, 0.2);
  color: #fbc74f;
  border-color: rgba(252, 198, 70, 0.35);
}

.ProfileTag.Black {
  background: rgba(20, 20, 20, 0.55);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.ProfileTag.Featured {
  box-shadow: 0 0 12px currentColor;
  padding: 0.45rem 1rem;
  font-weight: 700;
}

.ProfileTag:hover {
  box-shadow: 0 0 8px currentColor;
  transform: translateY(-1px);
}

.CopyRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.CopyLabel {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

#CopyDiscord {
  margin: 0;
  font-weight: 600;
  font-size: 1rem;
  user-select: text;
}

.CopyButton {
  padding: 0.35rem 0.9rem;
  border-radius: 16px;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  cursor: pointer;
  font-weight: 600;
  transition: all 0.25s ease;
}

.CopyButton:hover {
  background: var(--primary);
  color: #000;
}

.CopyButton.Copied {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
}

@media (max-width: 768px) {
  .OrangeCard.Large {
    width: 90%;
  }

  .BlackCard.Large {
    width: 90%;
  }
}