/* ============================
   BADGE 1: Supreme Cuan — GOLD LUXURY GLOW
============================ */
.badge-supreme {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px 5px 8px;
  border-radius: 100px;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #1a0a00, #3d1f00);
  border: 1px solid #c97d10;
  color: #ffd166;
  position: relative;
  overflow: hidden;
  cursor: default;
  box-shadow: 0 0 12px rgba(255, 185, 0, 0.25), inset 0 1px 0 rgba(255, 220, 100, 0.1);
  animation: supreme-pulse 3s ease-in-out infinite;
}

.badge-supreme::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 210, 80, 0.12) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: shimmer 2.5s ease-in-out infinite;
}

.badge-supreme .badge-icon {
  font-size: 13px;
  filter: drop-shadow(0 0 4px rgba(255, 185, 0, 0.8));
  animation: coin-spin 4s linear infinite;
}

@keyframes supreme-pulse {

  0%,
  100% {
    box-shadow: 0 0 12px rgba(255, 185, 0, 0.25), inset 0 1px 0 rgba(255, 220, 100, 0.1);
  }

  50% {
    box-shadow: 0 0 22px rgba(255, 185, 0, 0.5), 0 0 40px rgba(255, 185, 0, 0.15), inset 0 1px 0 rgba(255, 220, 100, 0.2);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

  60%,
  100% {
    transform: translateX(200%);
  }
}

@keyframes coin-spin {
  0% {
    transform: rotateY(0deg);
  }

  45%,
  55% {
    transform: rotateY(360deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

/* ============================
   BADGE 2: Scholar Elite — Deep Navy + Stars
============================ */
.badge-scholar {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px 5px 9px;
  border-radius: 100px;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #0a0e2a, #1a2060);
  border: 1px solid #4a5ff7;
  color: #a5b4ff;
  box-shadow: 0 0 16px rgba(74, 95, 247, 0.3);
  position: relative;
  overflow: hidden;
}

.badge-scholar::after {
  content: '✦  ✦  ✦';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 6px;
  color: rgba(165, 180, 255, 0.3);
  letter-spacing: 3px;
  animation: stars-slide 3s linear infinite;
}

@keyframes stars-slide {
  0% {
    right: 100%;
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    right: -30px;
    opacity: 0;
  }
}

.badge-scholar .badge-icon {
  font-size: 12px;
  filter: drop-shadow(0 0 3px #7c86ff);
}

/* ============================
   BADGE 3: Grand Master — Dark Purple Holo
============================ */
.badge-grandmaster {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 13px 5px 9px;
  border-radius: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  background: linear-gradient(135deg, #1a0428, #2d0a50);
  border: 1px solid transparent;
  color: #e879f9;
  background-clip: padding-box;
  position: relative;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.35), inset 0 0 20px rgba(168, 85, 247, 0.05);
}

.badge-grandmaster::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 9px;
  background: linear-gradient(135deg, #9333ea, #c026d3, #7c3aed, #9333ea);
  background-size: 300% 300%;
  z-index: -1;
  animation: holo-rotate 3s linear infinite;
}

@keyframes holo-rotate {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.badge-grandmaster .badge-icon {
  font-size: 13px;
  filter: drop-shadow(0 0 5px #e879f9);
}

/* ============================
   BADGE 4: Summa Cum Laude — Cream + Gold Academic
============================ */
.badge-summa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 13px 5px 9px;
  border-radius: 6px;
  font-family: 'Playfair Display', serif;
  font-size: 11px;
  font-weight: 700;
  background: linear-gradient(135deg, #2a1f00, #3d2c00);
  border-top: 2px solid #d4a843;
  border-bottom: 2px solid #d4a843;
  border-left: 1px solid #8a6a1a;
  border-right: 1px solid #8a6a1a;
  color: #f5d98a;
  position: relative;
  box-shadow: 0 2px 12px rgba(212, 168, 67, 0.2);
}

.badge-summa::before,
.badge-summa::after {
  content: '✦';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #d4a843;
  font-size: 8px;
  opacity: 0.7;
}

.badge-summa::before {
  left: -10px;
}

.badge-summa::after {
  right: -10px;
}

.badge-summa .badge-icon {
  font-size: 12px;
}

/* ============================
   BADGE 5: Prodigy — Neon Green Cyber
============================ */
.badge-prodigy {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px 5px 9px;
  border-radius: 4px;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  background: #020f02;
  border: 1px solid #00ff7f;
  color: #00ff7f;
  box-shadow: 0 0 8px rgba(0, 255, 127, 0.3), inset 0 0 8px rgba(0, 255, 127, 0.05);
  position: relative;
  overflow: hidden;
}

.badge-prodigy::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: #00ff7f;
  box-shadow: 0 0 6px #00ff7f;
  animation: scan-line 2s ease-in-out infinite;
}

@keyframes scan-line {
  0% {
    left: 0;
    opacity: 1;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}

.badge-prodigy .badge-icon {
  font-size: 12px;
  filter: drop-shadow(0 0 4px #00ff7f);
}

.badge-prodigy .status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #00ff7f;
  box-shadow: 0 0 6px #00ff7f;
  animation: blink 1s step-end infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* ============================
   BADGE 6: Valedictorian — Sunrise Gradient
============================ */
.badge-valedictorian {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 13px 5px 8px;
  border-radius: 100px;
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #ff6b35, #f7c59f, #ffcd00);
  color: #3d1a00;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.4);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.badge-valedictorian::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg) translateX(-150%);
  animation: gleam 2.8s ease-in-out infinite;
}

@keyframes gleam {
  0% {
    transform: skewX(-20deg) translateX(-150%);
  }

  60%,
  100% {
    transform: skewX(-20deg) translateX(300%);
  }
}

.badge-valedictorian .badge-icon {
  font-size: 13px;
}

/* ============================
   BADGE 8: Magna Scholar — Rose Gold Elegant
============================ */
.badge-magna {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px 5px 9px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #2a1215, #3d1a21);
  border: 1px solid rgba(251, 113, 133, 0.5);
  color: #fda4af;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 14px rgba(251, 113, 133, 0.2);
}

.badge-magna::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(251, 113, 133, 0.15) 0%, transparent 70%);
  top: -20px;
  right: -10px;
  animation: magna-float 4s ease-in-out infinite;
}

@keyframes magna-float {

  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.8;
  }

  50% {
    transform: translateY(4px) scale(1.1);
    opacity: 1;
  }
}

.badge-magna .badge-icon {
  font-size: 12px;
  filter: drop-shadow(0 0 4px #fb7185);
}

.badge-magna .badge-stars {
  display: flex;
  gap: 2px;
  font-size: 7px;
  color: #fda4af;
  opacity: 0.8;
}


/* ============================
     BADGE 1: The Chairman — Obsidian Black + Steel
  ============================ */
.badge-chairman {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px 6px 10px;
  border-radius: 5px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 2.5px;
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  border: 1px solid #3a3a3a;
  color: #e2e2e2;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.badge-chairman::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #c0c0c0, #606060, #c0c0c0);
}

.badge-chairman .badge-icon {
  font-size: 12px;
  filter: grayscale(1) brightness(1.8);
}

.badge-chairman .rank-lines {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-left: 2px;
}

.badge-chairman .rank-lines span {
  display: block;
  height: 2px;
  background: linear-gradient(90deg, #888, #444);
  border-radius: 1px;
}

.badge-chairman .rank-lines span:nth-child(1) {
  width: 14px;
}

.badge-chairman .rank-lines span:nth-child(2) {
  width: 10px;
}

.badge-chairman .rank-lines span:nth-child(3) {
  width: 7px;
}


/* ============================
     BADGE 2: Wolf of Wall St. — Crimson Red Aggression
  ============================ */
.badge-wolf {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 13px 5px 9px;
  border-radius: 4px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #1a0000, #2d0005);
  border: 1px solid #7f1d1d;
  color: #fca5a5;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 16px rgba(220, 38, 38, 0.25), inset 0 0 16px rgba(220, 38, 38, 0.04);
}

.badge-wolf::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg,
      transparent,
      transparent 8px,
      rgba(220, 38, 38, 0.04) 8px,
      rgba(220, 38, 38, 0.04) 9px);
}

.badge-wolf .ticker {
  font-size: 8px;
  color: #ef4444;
  letter-spacing: 0;
  font-family: 'Space Mono', monospace;
  animation: ticker-blink 1.2s step-end infinite;
}

@keyframes ticker-blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

.badge-wolf .badge-icon {
  font-size: 12px;
  filter: drop-shadow(0 0 4px #ef4444);
}


/* ============================
     BADGE 3: Tycoon — Emerald Green Money
  ============================ */
.badge-tycoon {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 13px 5px 10px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #001a0a, #002d12);
  border: 1px solid #166534;
  color: #86efac;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 18px rgba(22, 163, 74, 0.2);
}

.badge-tycoon::before {
  content: '$';
  position: absolute;
  right: -4px;
  top: -8px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: rgba(134, 239, 172, 0.04);
  line-height: 1;
  pointer-events: none;
}

.badge-tycoon .badge-icon {
  font-size: 13px;
  filter: drop-shadow(0 0 5px #22c55e);
}

.badge-tycoon .arrow {
  font-size: 10px;
  color: #4ade80;
  animation: arrow-bounce 1.5s ease-in-out infinite;
}

@keyframes arrow-bounce {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-2px)
  }
}


/* ============================
     BADGE 4: Board Member — Navy Pinstripe
  ============================ */
.badge-board {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 13px 5px 9px;
  border-radius: 6px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #020818, #071035);
  border: 1px solid #1e3a8a;
  color: #bfdbfe;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(30, 58, 138, 0.3);
}

.badge-board::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg,
      transparent,
      transparent 12px,
      rgba(59, 130, 246, 0.04) 12px,
      rgba(59, 130, 246, 0.04) 13px);
}

.badge-board::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(147, 197, 253, 0.5), transparent);
}

.badge-board .badge-icon {
  font-size: 12px;
}

.badge-board .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #3b82f6;
  box-shadow: 0 0 6px #3b82f6;
  flex-shrink: 0;
}


/* ============================
     BADGE 5: The Closer — Amber Whiskey
  ============================ */
.badge-closer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px 5px 8px;
  border-radius: 100px;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  background: linear-gradient(135deg, #1c0900, #2e1400);
  border: 1px solid #92400e;
  color: #fcd34d;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 14px rgba(180, 83, 9, 0.3);
}

.badge-closer .flame {
  font-size: 13px;
  display: inline-block;
  animation: flame-flicker 0.8s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 4px rgba(251, 146, 60, 0.8));
  margin-right: -2px;
  margin-left: 2px;
}

@keyframes flame-flicker {
  0% {
    transform: scale(1) rotate(-3deg);
  }

  100% {
    transform: scale(1.1) rotate(3deg);
  }
}

.badge-closer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.08), transparent);
  transform: translateX(-100%);
  animation: shimmer-warm 2.5s ease-in-out infinite 1s;
}

@keyframes shimmer-warm {
  0% {
    transform: translateX(-100%);
  }

  60%,
  100% {
    transform: translateX(200%);
  }
}


/* ============================
     BADGE 6: Venture Founder — Silicon Valley Neon
  ============================ */
.badge-founder {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 13px 5px 9px;
  border-radius: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: #060612;
  border: 1px solid rgba(139, 92, 246, 0.5);
  color: #c4b5fd;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.2), inset 0 0 20px rgba(139, 92, 246, 0.03);
}

.badge-founder::before {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  top: -40px;
  right: -20px;
  animation: orb-drift 4s ease-in-out infinite;
}

@keyframes orb-drift {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-5px, 5px);
  }
}

.badge-founder .v-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
  font-size: 9px;
  font-weight: 700;
  color: white;
  font-family: 'Syne', sans-serif;
  box-shadow: 0 0 8px rgba(124, 58, 237, 0.6);
  flex-shrink: 0;
}

.badge-founder .slash {
  color: rgba(196, 181, 253, 0.3);
}


/* ============================
     BADGE 7: Mogul Status — Titanium Platinum
  ============================ */
.badge-mogul {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px 6px 10px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #0f0f0f, #1c1c1c);
  color: #d4d4d4;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.badge-mogul::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  padding: 1px;
  background: linear-gradient(135deg, #a1a1a1, #3d3d3d, #ffffff, #4d4d4d, #a1a1a1);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: platinum-shift 3s linear infinite;
}

@keyframes platinum-shift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.badge-mogul::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
  transform: translateX(-100%);
  animation: shimmer-plat 3s ease-in-out infinite 0.5s;
}

@keyframes shimmer-plat {
  0% {
    transform: translateX(-100%);
  }

  60%,
  100% {
    transform: translateX(200%);
  }
}

.badge-mogul .crown {
  font-size: 13px;
  animation: crown-lift 3s ease-in-out infinite;
  margin-left: -2px;
}

@keyframes crown-lift {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-1.5px)
  }
}

.badge-mogul .tier {
  font-size: 8px;
  letter-spacing: 1px;
  color: #888;
  font-family: 'Space Mono', monospace;
}

/* ============================
   SOCIAL & COMMUNITY BADGES
============================ */
.badge-social-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  white-space: nowrap;
  overflow: hidden;
  cursor: default;
  transition: transform 0.2s ease;
}

.badge-social-pill:hover {
  transform: scale(1.05);
}

.badge-community {
  padding: 7px 20px 7px 14px;
  border-radius: 4px 16px 4px 16px;
  background: #0d1033;
  border-top: 1px solid #c9a84c;
  border-bottom: 1px solid #c9a84c;
  border-left: 2px solid #f0c96e;
  border-right: 2px solid #f0c96e;
  color: #f0c96e;
  box-shadow: 0 0 18px rgba(240, 201, 110, 0.2), inset 0 0 20px rgba(240, 201, 110, 0.04);
}

.badge-community .icon-wrap {
  width: 20px;
  height: 20px;
  border: 1px solid #f0c96e;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-community .scan-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: rgba(240, 201, 110, 0.4);
  animation: social-scan 2.4s ease-in-out infinite;
}

@keyframes social-scan {
  0% { top: 0%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.badge-mentor {
  padding: 7px 22px 7px 16px;
  border-radius: 0 12px 0 12px;
  background: #07160f;
  border: 1px solid #2ecc71;
  outline: 1px solid rgba(46, 204, 113, 0.25);
  outline-offset: 3px;
  color: #7dffc0;
  box-shadow: 0 0 20px rgba(46, 204, 113, 0.15), inset 0 0 15px rgba(46, 204, 113, 0.05);
}

.badge-mentor .corner-tl,
.badge-mentor .corner-br {
  position: absolute;
  width: 6px;
  height: 6px;
  border-color: #2ecc71;
  border-style: solid;
}

.badge-mentor .corner-tl {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}

.badge-mentor .corner-br {
  right: -1px;
  bottom: -1px;
  border-width: 0 2px 2px 0;
}

.badge-mentor .pulse-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 6px #2ecc71;
  animation: social-pulse-green 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes social-pulse-green {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.6); }
}

.badge-influencer {
  padding: 8px 24px 8px 16px;
  border-radius: 100px;
  background: #1a0818;
  border: 1px solid #e879a0;
  color: #f9b8d0;
  box-shadow: 0 0 22px rgba(232, 121, 160, 0.25), inset 0 0 12px rgba(232, 121, 160, 0.06);
}

.badge-influencer .shimmer {
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(249, 184, 208, 0.15), transparent);
  animation: social-shimmer 2.5s ease-in-out infinite;
}

@keyframes social-shimmer {
  0% { left: -60%; }
  100% { left: 130%; }
}

.badge-influencer .ring {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid #e879a0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(232, 121, 160, 0.5);
  flex-shrink: 0;
}

.badge-influencer .ring-inner {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e879a0;
  box-shadow: 0 0 5px #e879a0;
}

.badge-connector {
  padding: 8px 36px 8px 14px;
  border-radius: 3px 12px 3px 12px;
  background: #040f1a;
  border: 1px solid #38bdf8;
  color: #7dd3fc;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.2), inset 0 0 14px rgba(56, 189, 248, 0.04);
}

.badge-connector .node-icon {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(56, 189, 248, 0.5);
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-connector .circuit-dots {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.badge-connector .circuit-dots span {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #38bdf8;
  animation: social-blink-cyan 1.6s ease-in-out infinite;
}

.badge-connector .circuit-dots span:nth-child(2) {
  animation-delay: 0.3s;
}

.badge-connector .circuit-dots span:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes social-blink-cyan {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.15; }
}

.badge-legend-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.badge-legend-wrap .legend-border {
  position: absolute;
  inset: -2px;
  clip-path: polygon(10px 0%, calc(100% - 10px) 0%, 100% 50%, calc(100% - 10px) 100%, 10px 100%, 0% 50%);
  background: #a75aff;
  z-index: -1;
}

.badge-community-legend {
  padding: 7px 22px 7px 18px;
  clip-path: polygon(10px 0%, calc(100% - 10px) 0%, 100% 50%, calc(100% - 10px) 100%, 10px 100%, 0% 50%);
  background: #16041a;
  color: #e0aeff;
  box-shadow: 0 0 24px rgba(167, 90, 255, 0.25);
}

.badge-community-legend .star-row {
  font-size: 7px;
  color: #a75aff;
  letter-spacing: 4px;
  margin-left: 4px;
  animation: social-twinkle 2s ease-in-out infinite;
}

@keyframes social-twinkle {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.badge-volunteer {
  padding: 7px 18px 7px 14px;
  border-radius: 2px;
  background: #0b1a0e;
  border-left: 3px solid #4ade80;
  border-right: 3px solid #4ade80;
  border-top: 1px solid rgba(74, 222, 128, 0.4);
  border-bottom: 1px solid rgba(74, 222, 128, 0.4);
  color: #86efac;
  box-shadow: 0 0 16px rgba(74, 222, 128, 0.15);
}

.badge-volunteer .medal-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #4ade80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.4);
  flex-shrink: 0;
}

.badge-volunteer .ribbon-line {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
  animation: social-flicker 2s ease-in-out infinite;
}

.badge-volunteer .ribbon-line.right {
  left: auto;
  right: 0;
}

@keyframes social-flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.badge-hype {
  padding: 8px 20px 8px 14px;
  border-radius: 100px 4px 100px 4px;
  background: #150e00;
  border: 1px solid #f59e0b;
  color: #fcd34d;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.3), inset 0 0 12px rgba(245, 158, 11, 0.04);
}

.badge-hype .bolt-bar {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.badge-hype .bolt-bar span {
  position: absolute;
  top: 0;
  left: -10%;
  width: 8px;
  height: 100%;
  background: rgba(252, 211, 77, 0.15);
  transform: skewX(-20deg);
  animation: social-bolt-sweep 2s ease-in-out infinite;
}

.badge-hype .bolt-bar span:nth-child(2) {
  animation-delay: 0.7s;
  left: -20%;
}

@keyframes social-bolt-sweep {
  0% { left: -20%; opacity: 0; }
  30%, 70% { opacity: 1; }
  100% { left: 120%; opacity: 0; }
}

.badge-hype .charge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 8px #f59e0b;
  flex-shrink: 0;
  animation: social-charge 1.2s ease-in-out infinite alternate;
}

@keyframes social-charge {
  0% { box-shadow: 0 0 4px #f59e0b; }
  100% { box-shadow: 0 0 14px #f59e0b, 0 0 4px #fff; }
}

.badge-ambassador {
  padding: 8px 24px;
  border-radius: 100px;
  background: #100810;
  border: 1px solid #c084fc;
  color: #e9d5ff;
  box-shadow: 0 0 28px rgba(192, 132, 252, 0.3), inset 0 0 16px rgba(192, 132, 252, 0.06);
}

.badge-ambassador .crown-dots {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
}

.badge-ambassador .crown-dots span {
  width: 3px;
  border-radius: 1px;
  background: #c084fc;
  box-shadow: 0 0 4px #c084fc;
}

.badge-ambassador .crown-dots span:nth-child(1),
.badge-ambassador .crown-dots span:nth-child(5) {
  height: 6px;
}

.badge-ambassador .crown-dots span:nth-child(2),
.badge-ambassador .crown-dots span:nth-child(4) {
  height: 10px;
  animation: social-crown-pulse 1.8s 0.2s ease-in-out infinite alternate;
}

.badge-ambassador .crown-dots span:nth-child(3) {
  height: 14px;
  animation: social-crown-pulse 1.8s 0.4s ease-in-out infinite alternate;
}

@keyframes social-crown-pulse {
  0% { box-shadow: 0 0 3px #c084fc; }
  100% { box-shadow: 0 0 10px #c084fc, 0 0 3px #fff; }
}

.badge-trendsetter {
  padding: 7px 44px 7px 14px;
  border-radius: 100px 0 100px 0;
  background: #010f14;
  border: 1px solid #22d3ee;
  color: #67e8f9;
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.2);
}

.badge-trendsetter .wave-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1.5px;
  width: 0;
  background: #22d3ee;
  box-shadow: 0 0 6px #22d3ee;
  animation: social-wave-grow 2s ease-in-out infinite;
}

@keyframes social-wave-grow {
  0%, 100% { width: 0; left: 0; opacity: 1; }
  50% { width: 100%; left: 0; opacity: 1; }
  99% { width: 0; left: 100%; opacity: 0; }
}

.badge-trendsetter .arrow-deco {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-trendsetter .slash-deco {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 3px;
}

.badge-trendsetter .slash-deco span {
  width: 2px;
  height: 12px;
  background: rgba(34, 211, 238, 0.4);
  transform: skewX(-15deg);
  border-radius: 1px;
}

.badge-trendsetter .slash-deco span:nth-child(2) {
  opacity: 0.6;
}

.badge-trendsetter .slash-deco span:nth-child(3) {
  opacity: 0.3;
}

.badge-peacekeeper {
  padding: 7px 36px 7px 14px;
  border-radius: 4px 4px 20px 20px;
  background: #0a0e14;
  border: 1px solid #94a3b8;
  border-bottom-width: 2px;
  color: #cbd5e1;
  box-shadow: 0 0 16px rgba(148, 163, 184, 0.15), inset 0 -2px 8px rgba(148, 163, 184, 0.05);
}

.badge-peacekeeper .shield-icon {
  width: 18px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-peacekeeper .bar-right {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.badge-peacekeeper .bar-right span {
  height: 2px;
  background: rgba(148, 163, 184, 0.5);
  border-radius: 1px;
}

.badge-peacekeeper .bar-right span:nth-child(1) {
  width: 12px;
}

.badge-peacekeeper .bar-right span:nth-child(2) {
  width: 8px;
}

.badge-peacekeeper .bar-right span:nth-child(3) {
  width: 5px;
}

/* ==========================================================================
   Career & Professional Badge System
   ========================================================================== */
.badge-career-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  white-space: nowrap;
  font-family: "Cinzel", "Rajdhani", serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: none;
  transition: transform 0.18s ease;
}

.badge-career-pill:hover {
  transform: scale(1.05);
}

.badge-career-ceo {
  padding: 8px 26px 8px 14px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
  background: #0e0e0e;
  border-top: 1px solid #d4d4d4;
  border-bottom: 1px solid #d4d4d4;
  border-left: 2px solid #fff;
  color: #f8fafc;
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.12);
}

.badge-career-ceo .crown-bars,
.badge-career-top .bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
}

.badge-career-ceo .crown-bars span {
  width: 3px;
  border-radius: 1px;
  background: #fff;
  box-shadow: 0 0 5px #fff;
}

.badge-career-ceo .crown-bars span:nth-child(1),
.badge-career-ceo .crown-bars span:nth-child(5) { height: 7px; }
.badge-career-ceo .crown-bars span:nth-child(2),
.badge-career-ceo .crown-bars span:nth-child(4) { height: 11px; animation: career-pulse-white 2s 0.2s infinite alternate; }
.badge-career-ceo .crown-bars span:nth-child(3) { height: 15px; animation: career-pulse-white 2s 0.5s infinite alternate; }

@keyframes career-pulse-white {
  from { opacity: 0.7; box-shadow: 0 0 3px #fff; }
  to { opacity: 1; box-shadow: 0 0 10px #fff, 0 0 20px rgba(255,255,255,0.3); }
}

.badge-career-sweep {
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  animation: career-sweep 3s ease-in-out infinite;
}

@keyframes career-sweep {
  from { left: -80%; }
  to { left: 140%; }
}

.badge-career-top {
  padding: 8px 20px 8px 14px;
  border-radius: 3px 14px 3px 14px;
  background: #130d00;
  border: 1px solid #f59e0b;
  color: #fcd34d;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.25);
}

.badge-career-top .bars span {
  width: 3px;
  border-radius: 1px 1px 0 0;
  background: #f59e0b;
  box-shadow: 0 0 4px #f59e0b;
  animation: career-grow 1.6s ease-in-out infinite alternate;
}

.badge-career-top .bars span:nth-child(1) { height: 5px; animation-delay: 0s; }
.badge-career-top .bars span:nth-child(2) { height: 9px; animation-delay: 0.2s; }
.badge-career-top .bars span:nth-child(3) { height: 13px; animation-delay: 0.4s; }
.badge-career-top .bars span:nth-child(4) { height: 9px; animation-delay: 0.6s; }

@keyframes career-grow {
  from { opacity: 0.4; transform: scaleY(0.7); }
  to { opacity: 1; transform: scaleY(1); }
}

.badge-career-hustler {
  padding: 8px 36px 8px 16px;
  border-radius: 999px 2px 999px 2px;
  background: #150400;
  border: 1px solid #ea580c;
  color: #fb923c;
  box-shadow: 0 0 20px rgba(234, 88, 12, 0.25), inset 0 0 12px rgba(234, 88, 12, 0.06);
}

.badge-career-hustler .fire-dot {
  width: 7px;
  height: 7px;
  border-radius: 50% 50% 40% 40%;
  background: #ea580c;
  box-shadow: 0 0 8px #ea580c, 0 0 16px rgba(234, 88, 12, 0.4);
  animation: career-fire 0.9s ease-in-out infinite alternate;
}

@keyframes career-fire {
  from { transform: scale(1); box-shadow: 0 0 6px #ea580c; }
  to { transform: scale(1.3); box-shadow: 0 0 12px #ea580c, 0 0 20px rgba(234,88,12,0.5); }
}

.badge-career-network {
  padding: 8px 20px 8px 14px;
  border-radius: 2px 16px 16px 2px;
  background: #001814;
  border: 1px solid #14b8a6;
  border-left-width: 3px;
  color: #5eead4;
  box-shadow: 0 0 20px rgba(20, 184, 166, 0.22);
}

.badge-career-network .node-ring,
.badge-career-deal .check-wrap {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-career-network .node-ring {
  border-radius: 50%;
  border: 1.5px solid #14b8a6;
  box-shadow: 0 0 8px rgba(20, 184, 166, 0.45);
  animation: career-ring 2s ease-in-out infinite;
}

.badge-career-network .node-ring span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #14b8a6;
  box-shadow: 0 0 6px #14b8a6;
}

@keyframes career-ring {
  50% { box-shadow: 0 0 14px rgba(20, 184, 166, 0.8); }
}

.badge-career-exec {
  padding: 9px 22px;
  border-radius: 0;
  background: #060a1a;
  border-top: 2px solid #d4af37;
  border-bottom: 2px solid #d4af37;
  color: #f0d060;
  letter-spacing: 2.5px;
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.22);
}

.badge-career-exec::before,
.badge-career-exec::after {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 3px;
  width: 1px;
  background: rgba(212, 175, 55, 0.35);
}

.badge-career-exec::before { left: 8px; }
.badge-career-exec::after { right: 8px; }

.badge-career-exec .diamond {
  width: 8px;
  height: 8px;
  border: 1.5px solid #d4af37;
  transform: rotate(45deg);
  animation: career-gold-glow 2s ease-in-out infinite alternate;
}

@keyframes career-gold-glow {
  to { box-shadow: 0 0 12px rgba(212,175,55,0.8), 0 0 4px #fff; }
}

.badge-career-strat {
  padding: 8px 22px 8px 14px;
  border-radius: 4px;
  background: #020818;
  border: 1px solid #3b82f6;
  color: #93c5fd;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.22);
}

.badge-career-strat .grid-icon {
  width: 16px;
  height: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.badge-career-strat .grid-icon span {
  border-radius: 1px;
  background: #3b82f6;
  opacity: 0.35;
  animation: career-cell 2.4s ease-in-out infinite;
}

.badge-career-strat .grid-icon span:nth-child(5) {
  opacity: 1;
  box-shadow: 0 0 4px #3b82f6;
}

@keyframes career-cell {
  50% { opacity: 0.9; box-shadow: 0 0 4px #3b82f6; }
}

.badge-career-innov {
  padding: 8px 22px 8px 14px;
  border-radius: 999px 4px 4px 999px;
  background: #0c0418;
  border: 1px solid #8b5cf6;
  color: #c4b5fd;
  box-shadow: 0 0 22px rgba(139, 92, 246, 0.25);
}

.badge-career-innov .bulb,
.badge-career-vision .eye-icon {
  width: 18px;
  height: 18px;
  border: 1.5px solid currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-career-innov .bulb {
  border-radius: 50%;
  animation: career-purple-glow 1.8s ease-in-out infinite alternate;
}

.badge-career-innov .bulb span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8b5cf6;
  box-shadow: 0 0 6px #8b5cf6;
}

@keyframes career-purple-glow {
  to { box-shadow: 0 0 14px rgba(139,92,246,0.8), 0 0 28px rgba(139,92,246,0.2); }
}

.badge-career-deal {
  padding: 8px 20px 8px 14px;
  border-radius: 14px 2px 14px 2px;
  background: #031008;
  border: 1px solid #16a34a;
  color: #4ade80;
  box-shadow: 0 0 18px rgba(22, 163, 74, 0.22);
}

.badge-career-deal .check-wrap {
  border: 1.5px solid #16a34a;
  border-radius: 4px;
  box-shadow: 0 0 6px rgba(22, 163, 74, 0.45);
}

.badge-career-vision {
  padding: 8px 22px 8px 14px;
  border-radius: 999px;
  background: #110005;
  border: 1px solid #dc2626;
  color: #fca5a5;
  box-shadow: 0 0 22px rgba(220, 38, 38, 0.22);
}

.badge-career-vision .eye-icon {
  width: 22px;
  height: 14px;
  border-radius: 100% / 65% 65% 40% 40%;
  color: #dc2626;
  box-shadow: 0 0 8px rgba(220, 38, 38, 0.45);
}

.badge-career-vision .eye-icon span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #dc2626;
  box-shadow: 0 0 6px #dc2626;
  animation: career-blink 3s ease-in-out infinite;
}

@keyframes career-blink {
  0%, 90%, 100% { transform: scaleY(1); }
  95% { transform: scaleY(0.1); }
}

.badge-career-pioneer {
  padding: 8px 22px 8px 14px;
  clip-path: polygon(0 0, 100% 0, 100% 60%, 90% 100%, 0 100%);
  background: #060414;
  border-top: 1px solid #6366f1;
  border-left: 2px solid #6366f1;
  color: #a5b4fc;
  box-shadow: 0 0 22px rgba(99, 102, 241, 0.22);
}

.badge-career-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1.5px;
  width: 0;
  background: currentColor;
  box-shadow: 0 0 6px currentColor;
  animation: career-line-run 2.2s ease-in-out infinite;
}

@keyframes career-line-run {
  0%, 100% { width: 0; left: 0; }
  50% { width: 100%; }
  99% { width: 0; left: 100%; opacity: 0; }
}

/* Gaming & Rank Badges */
.badge-gaming-rank {
  --rank-accent: #f59e0b;
  --rank-accent-2: #92400e;
  --rank-bg: #1c1207;
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: min(152px, 100%);
  min-width: 0;
  max-width: 100%;
  min-height: 42px;
  padding: 7px 12px 7px 9px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--rank-accent) 58%, transparent);
  border-radius: 10px 4px 10px 4px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.14), transparent 28%),
    radial-gradient(circle at 18% 20%, color-mix(in srgb, var(--rank-accent) 24%, transparent), transparent 42%),
    linear-gradient(135deg, var(--rank-bg), #05070d);
  color: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.22), 0 0 18px color-mix(in srgb, var(--rank-accent) 24%, transparent);
  font-family: Outfit, Inter, system-ui, sans-serif;
  line-height: 1;
  vertical-align: middle;
}

.badge-gaming-rank::before {
  content: "";
  position: absolute;
  inset: -70% -35%;
  z-index: -1;
  background: linear-gradient(90deg, transparent 35%, rgba(255,255,255,0.28), transparent 65%);
  transform: translateX(-60%) rotate(18deg);
  animation: gaming-rank-sweep 3.8s ease-in-out infinite;
}

.badge-gaming-rank::after {
  content: "";
  position: absolute;
  inset: 4px;
  z-index: -1;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: inherit;
  pointer-events: none;
}

.badge-gaming-rank .rank-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  color: var(--rank-accent);
  filter: drop-shadow(0 0 8px color-mix(in srgb, var(--rank-accent) 46%, transparent));
}

.badge-gaming-rank .rank-mark::before,
.badge-gaming-rank .rank-mark::after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 2px solid currentColor;
}

.badge-gaming-rank .rank-mark::after {
  inset: 8px;
  background: currentColor;
  opacity: 0.7;
}

.badge-gaming-rank .rank-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
  text-align: left;
}

.badge-gaming-rank .rank-copy strong {
  display: block;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 1px 0 rgba(0,0,0,0.35);
}

.badge-gaming-rank .rank-copy em {
  display: flex;
  align-items: center;
  gap: 5px;
  color: color-mix(in srgb, var(--rank-accent) 82%, white);
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: 0.9;
}

.badge-gaming-rank .rank-copy em::after {
  content: attr(data-rank);
  color: rgba(255,255,255,0.54);
  font-size: 7px;
}

.badge-gaming-bronze {
  --rank-accent: #d97706;
  --rank-accent-2: #78350f;
  --rank-bg: #1c1007;
}

.badge-gaming-silver {
  --rank-accent: #e2e8f0;
  --rank-accent-2: #64748b;
  --rank-bg: #0f172a;
}

.badge-gaming-silver .rank-mark {
  clip-path: polygon(50% 0, 100% 20%, 78% 100%, 22% 100%, 0 20%);
}

.badge-gaming-gold {
  --rank-accent: #facc15;
  --rank-accent-2: #a16207;
  --rank-bg: #1a1304;
  border-radius: 4px 14px 4px 14px;
}

.badge-gaming-gold .rank-mark::before {
  clip-path: polygon(50% 0, 68% 28%, 100% 36%, 76% 62%, 80% 100%, 50% 82%, 20% 100%, 24% 62%, 0 36%, 32% 28%);
}

.badge-gaming-platinum {
  --rank-accent: #bae6fd;
  --rank-accent-2: #0ea5e9;
  --rank-bg: #061521;
  backdrop-filter: blur(10px);
}

.badge-gaming-diamond {
  --rank-accent: #7dd3fc;
  --rank-accent-2: #0369a1;
  --rank-bg: #07131f;
  clip-path: polygon(7% 0, 93% 0, 100% 50%, 93% 100%, 7% 100%, 0 50%);
  border-radius: 0;
}

.badge-gaming-grandmaster {
  --rank-accent: #c4b5fd;
  --rank-accent-2: #7c3aed;
  --rank-bg: #10051f;
  box-shadow: 0 0 24px rgba(124, 58, 237, 0.34), inset 0 0 18px rgba(196, 181, 253, 0.08);
}

.badge-gaming-mvp {
  --rank-accent: #fde047;
  --rank-accent-2: #f97316;
  --rank-bg: #211204;
}

.badge-gaming-mvp .rank-mark::before {
  border-radius: 50%;
}

.badge-gaming-boss {
  --rank-accent: #fca5a5;
  --rank-accent-2: #b91c1c;
  --rank-bg: #190507;
  border-color: rgba(239, 68, 68, 0.58);
}

.badge-gaming-nolifer {
  --rank-accent: #86efac;
  --rank-accent-2: #16a34a;
  --rank-bg: #031109;
  font-family: "Share Tech Mono", "Courier New", monospace;
}

.badge-gaming-nolifer .rank-copy strong::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 1em;
  margin-left: 3px;
  background: currentColor;
  transform: translateY(2px);
  animation: gaming-rank-cursor 1s steps(2, end) infinite;
}

.badge-gaming-speed {
  --rank-accent: #e879f9;
  --rank-accent-2: #7c3aed;
  --rank-bg: #12051f;
}

.badge-gaming-speed .rank-mark {
  transform: skewX(-12deg);
}

@keyframes gaming-rank-sweep {
  0%, 62%, 100% { transform: translateX(-65%) rotate(18deg); opacity: 0; }
  78% { transform: translateX(62%) rotate(18deg); opacity: 1; }
}

@keyframes gaming-rank-cursor {
  0%, 45% { opacity: 1; }
  46%, 100% { opacity: 0; }
}
