*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #e01010;
  --red-dark:   #8b0000;
  --red-deep:   #4a0000;
  --red-glow:   rgba(200, 10, 10, 0.35);
  --red-subtle: rgba(200, 10, 10, 0.12);
  --bg:         #0a0a0a;
  --bg2:        #111111;
  --bg3:        #181818;
  --surface:    rgba(255,255,255,0.04);
  --surface2:   rgba(255,255,255,0.07);
  --border:     rgba(255,255,255,0.08);
  --border-red: rgba(200,10,10,0.30);
  --text:       #f0f0f0;
  --text2:      #aaaaaa;
  --text3:      #666666;
  --font: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
code {
  font-family: 'Courier New', monospace;
  font-size: 0.88em;
  background: rgba(255,255,255,0.07);
  padding: 2px 7px;
  border-radius: 5px;
  color: #ff6666;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--red-dark); border-radius: 4px; }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff; font-weight: 700; font-size: 1rem;
  padding: 14px 28px; border-radius: 12px;
  border: none; cursor: pointer;
  box-shadow: 0 0 24px var(--red-glow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 38px rgba(200,10,10,0.55);
}
.btn-primary.btn-large { font-size: 1.1rem; padding: 16px 36px; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface2);
  color: var(--text); font-weight: 600; font-size: 1rem;
  padding: 14px 28px; border-radius: 12px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.10);
  border-color: var(--red);
}

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.navbar.scrolled {
  box-shadow: 0 4px 40px rgba(0,0,0,0.6);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 66px;
  display: flex; align-items: center; gap: 40px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.3rem; font-weight: 800;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.5rem; }
.logo-img {
  width: 34px; height: 34px; border-radius: 50%;
  object-fit: cover; border: 2px solid rgba(200,10,10,0.35);
}
.logo-accent { color: var(--red); }

.nav-vip {
  color: var(--red) !important; font-weight: 700 !important;
  border: 1px solid rgba(200,10,10,0.35); padding: 4px 12px !important;
  border-radius: 8px; transition: background 0.2s !important;
}
.nav-vip:hover, .nav-vip.active {
  background: rgba(200,10,10,0.12) !important;
  color: #ff8888 !important;
}

.nav-links {
  display: flex; list-style: none; gap: 32px; flex: 1;
}
.nav-links a {
  color: var(--text2); font-weight: 500; font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.btn-nav {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff; font-weight: 700; font-size: 0.9rem;
  padding: 10px 22px; border-radius: 10px;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 0 16px var(--red-glow);
}
.btn-nav:hover { opacity: 0.88; transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: 0.3s;
}

.mobile-menu {
  display: none; flex-direction: column;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  gap: 4px;
}
.mobile-menu a {
  color: var(--text2); font-weight: 500; padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--red); }
.mobile-menu a:last-child { border: none; }
.btn-mobile-add {
  color: var(--red) !important; font-weight: 700 !important;
}
.mobile-menu.open { display: flex; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 100px 24px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(120px); opacity: 0.5;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(180,0,0,0.45), transparent 70%);
  top: -100px; left: -100px;
}
.hero-glow-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(100,0,0,0.35), transparent 70%);
  bottom: -100px; right: 10%;
}
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,0,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative; z-index: 1;
  max-width: 620px; flex: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,10,10,0.12);
  border: 1px solid rgba(200,10,10,0.3);
  color: #ff6666; font-size: 0.85rem; font-weight: 600;
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 24px;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #44ff44;
  box-shadow: 0 0 8px #44ff44;
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%,100% { opacity: 1; } 50% { opacity: 0.4; }
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero-gradient {
  background: linear-gradient(135deg, #ff2222 0%, #ff7777 50%, #ff2222 100%);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s ease infinite;
}
@keyframes gradient-shift {
  0%,100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-desc {
  color: var(--text2); font-size: 1.1rem; line-height: 1.7;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex; align-items: center; gap: 24px;
}
.hero-stat { text-align: center; }
.stat-num {
  display: block; font-size: 1.6rem; font-weight: 800;
  background: linear-gradient(135deg, #ff4444, #ff8888);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.8rem; color: var(--text3); text-transform: uppercase; letter-spacing: 0.5px; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

/* HERO VISUAL */
.hero-visual {
  position: relative; z-index: 1;
  flex: 1; display: flex; justify-content: center; align-items: center;
  padding-left: 40px;
}
.discord-card {
  background: #1e1f22;
  border-radius: 16px;
  width: 340px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7), 0 0 40px var(--red-glow);
  border: 1px solid rgba(255,255,255,0.06);
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.discord-card-header {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: #2b2d31;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dc-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
}
.dc-avatar img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.dc-info { display: flex; align-items: center; gap: 8px; }
.dc-name { font-weight: 600; font-size: 0.95rem; }
.dc-tag {
  background: #5865F2; color: #fff;
  font-size: 0.65rem; font-weight: 700;
  padding: 2px 5px; border-radius: 4px;
}

.discord-message { padding: 12px 16px; }
.msg-embed {
  display: flex; gap: 0;
  background: #2b2d31; border-radius: 8px; overflow: hidden;
}
.embed-bar { width: 4px; flex-shrink: 0; background: var(--red); }
.embed-content { padding: 10px 14px; flex: 1; }
.embed-title { font-weight: 700; font-size: 0.92rem; margin-bottom: 8px; }
.embed-line { font-size: 0.85rem; color: #b5bac1; margin-bottom: 4px; }
.embed-line strong { color: #fff; }
.red-text  { color: #ff4444; font-weight: 700; }
.red2-text { color: #ee2222; font-weight: 700; }
.red3-text { color: #cc1111; font-weight: 700; }

.discord-input {
  padding: 10px 16px;
  background: #383a40;
  border-top: 1px solid rgba(255,255,255,0.04);
  color: #5c5e66; font-size: 0.9rem;
  display: flex; align-items: center; gap: 4px;
}
.input-prefix { color: #ff5555; font-family: monospace; }
.cursor-blink {
  color: #aaa;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0;} }

/* ── SECTION COMMON ── */
.section-header {
  text-align: center; margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  background: var(--red-subtle);
  border: 1px solid var(--border-red);
  color: #ff6666; font-size: 0.8rem; font-weight: 700;
  padding: 5px 14px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.section-desc { color: var(--text2); font-size: 1.05rem; }

/* ── FEATURES ── */
.features { padding: 120px 0; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.feature-card-big { grid-column: 1; grid-row: 1 / 3; }

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.feature-card:hover {
  border-color: var(--border-red);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 24px var(--red-subtle);
}
.feature-card:hover::before { opacity: 1; }

.feature-card-dark {
  background: linear-gradient(135deg, rgba(100,0,0,0.20), rgba(30,0,0,0.30));
  border-color: var(--border-red);
}

.feature-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--red-subtle); border: 1px solid var(--border-red);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; font-size: 1.5rem;
}
.feature-card h3 {
  font-size: 1.1rem; font-weight: 700; margin-bottom: 10px;
}
.feature-card p { color: var(--text2); font-size: 0.9rem; line-height: 1.6; }

.feature-card-big h3 { font-size: 1.3rem; margin-bottom: 14px; }
.feature-card-big p { margin-bottom: 20px; }

.feature-list {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
  margin-top: 20px;
}
.feature-list li { font-size: 0.88rem; color: var(--text2); }
.feature-list li::before { color: var(--red); }

/* ── COMMANDS ── */
.commands { padding: 120px 0; background: var(--bg2); }

.commands-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.cmd-category {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  transition: border-color 0.3s;
}
.cmd-category:hover { border-color: var(--border-red); }

.cmd-cat-header {
  padding: 14px 18px;
  background: rgba(200,10,10,0.10);
  border-bottom: 1px solid var(--border);
  font-weight: 700; font-size: 0.95rem;
  display: flex; align-items: center; gap: 8px;
  color: #ff8888;
}
.cmd-list { padding: 8px 0; }
.cmd-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 18px; gap: 12px;
  transition: background 0.15s;
}
.cmd-item:hover { background: rgba(255,255,255,0.03); }
.cmd-item code { font-size: 0.82rem; flex-shrink: 0; }
.cmd-item span { color: var(--text2); font-size: 0.8rem; text-align: right; }

/* ── STATS SECTION ── */
.stats-section {
  position: relative; padding: 120px 0; overflow: hidden;
}
.stats-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.stats-glow {
  position: absolute;
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(150,0,0,0.20), transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  filter: blur(60px);
}

.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.stat-card {
  position: relative;
  background: linear-gradient(135deg, rgba(100,0,0,0.15), rgba(20,0,0,0.25));
  border: 1px solid var(--border-red);
  border-radius: 18px; padding: 32px 24px;
  text-align: center; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(150,0,0,0.25);
}
.stat-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,0,0,0.05), transparent);
  pointer-events: none;
}
.stat-card-num {
  display: block; font-size: 2.8rem; font-weight: 900;
  background: linear-gradient(135deg, #ff4444, #ff9999);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 8px; line-height: 1;
}
.stat-card-label { color: var(--text2); font-size: 0.9rem; font-weight: 500; }
.stat-card-icon {
  position: absolute; bottom: 14px; right: 18px;
  font-size: 1.8rem; opacity: 0.18;
}

/* ── CTA ── */
.cta-section {
  position: relative; padding: 120px 24px;
  text-align: center; overflow: hidden;
  background: var(--bg2);
}
.cta-glow-1 {
  position: absolute; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(180,0,0,0.25), transparent 65%);
  top: 50%; left: 30%; transform: translate(-50%,-50%);
  filter: blur(80px); pointer-events: none;
}
.cta-glow-2 {
  position: absolute; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(100,0,0,0.20), transparent 65%);
  top: 50%; right: 20%; transform: translateY(-50%);
  filter: blur(80px); pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; margin-bottom: 16px;
}
.cta-desc { color: var(--text2); font-size: 1.1rem; margin-bottom: 36px; }

/* ── FOOTER ── */
.footer {
  background: #070707;
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-inner {
  display: flex; gap: 60px; flex-wrap: wrap;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand {
  flex: 1; min-width: 220px;
  display: flex; flex-direction: column; gap: 12px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo-img {
  width: 32px; height: 32px; border-radius: 50%;
  object-fit: cover; border: 2px solid rgba(200,10,10,0.30);
}
.footer-brand .logo-text { font-size: 1.3rem; font-weight: 800; }
.footer-brand p { color: var(--text3); font-size: 0.88rem; }

.footer-links { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text3); margin-bottom: 4px; }
.footer-col a { color: var(--text2); font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--red); }

.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  padding: 24px 0;
  color: var(--text3); font-size: 0.82rem;
}

/* ── ANIMATIONS ON SCROLL ── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card-big { grid-column: 1 / 3; grid-row: 1; }
  .commands-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { flex-direction: column; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { padding-left: 0; padding-top: 40px; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card-big { grid-column: 1; grid-row: auto; }
  .commands-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero { padding: 90px 20px 60px; }
  .discord-card { width: 100%; max-width: 320px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ── TEAM SECTION ── */
.team-section {
  padding: 100px 0;
  position: relative;
}

.team-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 56px;
}

/* ── DISCORD PROFILE CARD ── */
.dc-profile-card {
  width: 300px;
  background: #1e1f22;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dc-profile-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 56px rgba(0,0,0,0.8), 0 0 0 1px rgba(224,16,16,0.3);
}

/* Banner vermelho com gradiente */
.dc-profile-banner {
  height: 90px;
  background: linear-gradient(135deg, #8b0000 0%, #cc0000 50%, #4a0000 100%);
  position: relative;
}

.dc-profile-body {
  padding: 0 16px 16px;
  position: relative;
}

/* Avatar */
.dc-profile-avatar-wrap {
  position: relative;
  display: inline-block;
  margin-top: -42px;
  margin-bottom: 8px;
}

.dc-profile-avatar {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border: 5px solid #1e1f22;
  object-fit: cover;
  display: block;
}

/* Banner color variants */
.banner-red    { background: linear-gradient(135deg, #8b0000, #cc0000, #4a0000); }
.banner-purple { background: linear-gradient(135deg, #3b0764, #7c3aed, #1e0438); }
.banner-blue   { background: linear-gradient(135deg, #1e3a5f, #2563eb, #0f2040); }
.banner-teal   { background: linear-gradient(135deg, #064e3b, #059669, #022c22); }

/* Placeholder avatar */
.dc-avatar-placeholder {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border: 5px solid #1e1f22;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
}
.placeholder-purple { background: linear-gradient(135deg, #3b0764, #7c3aed); }
.placeholder-blue   { background: linear-gradient(135deg, #1e3a5f, #2563eb); }
.placeholder-teal   { background: linear-gradient(135deg, #064e3b, #059669); }

/* Status dots */
.dc-status-dot {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 3px solid #1e1f22;
}
.dc-online {
  background: #23a55a;
  box-shadow: 0 0 8px rgba(35,165,90,0.7);
}

/* Crescent moon (idle) — igual ao Discord */
.dc-moon-indicator {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #f0b232;
  border: 3px solid #1e1f22;
  box-shadow: 0 0 8px rgba(240,178,50,0.6);
  overflow: hidden;
}
.dc-moon-indicator::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 5px;
  width: 13px;
  height: 13px;
  background: #1e1f22;
  border-radius: 50%;
}

/* Nome e descrição */
.dc-profile-info {
  margin-bottom: 10px;
}

.dc-profile-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #f0f0f0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.dc-profile-badge {
  font-size: 0.68rem;
  font-weight: 600;
  color: #fff;
  padding: 2px 8px;
  border-radius: 99px;
  letter-spacing: 0.02em;
}
.badge-red    { background: linear-gradient(135deg, #8b0000, #cc0000); }
.badge-purple { background: linear-gradient(135deg, #3b0764, #7c3aed); }
.badge-blue   { background: linear-gradient(135deg, #1e3a5f, #2563eb); }
.badge-teal   { background: linear-gradient(135deg, #064e3b, #059669); }

.dc-member-desc {
  font-size: 0.8rem;
  color: #8e9297;
  margin-top: 4px;
  line-height: 1.45;
}

/* Divider */
.dc-profile-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 12px 0;
}

/* Role badges */
.dc-profile-roles {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.dc-role {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 4px;
  letter-spacing: 0.03em;
}

.dc-role-red    { background: rgba(204,0,0,0.25);   color: #ff6666; border: 1px solid rgba(204,0,0,0.4); }
.dc-role-purple { background: rgba(124,58,237,0.2);  color: #c084fc; border: 1px solid rgba(124,58,237,0.4); }
.dc-role-blue   { background: rgba(37,99,235,0.2);   color: #60a5fa; border: 1px solid rgba(37,99,235,0.4); }
.dc-role-teal   { background: rgba(5,150,105,0.2);   color: #34d399; border: 1px solid rgba(5,150,105,0.4); }
.dc-role-dark   { background: rgba(255,255,255,0.06); color: #aaa;    border: 1px solid rgba(255,255,255,0.1); }
