/* ===== ARC RAIDERS VIBRANT GRAPHICS & ANIMATIONS ===== */

/* ===== RAINBOW STRIPE PATTERN ===== */
.arc-stripes {
  position: relative;
  overflow: hidden;
}

.arc-stripes::before {
  content: '';
  position: absolute;
  top: 0;
  left: -10%;
  width: 120%;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--arc-red) 0%,
    var(--arc-yellow) 25%,
    var(--arc-cyan) 50%,
    var(--arc-blue) 75%,
    var(--arc-magenta) 100%
  );
  background-size: 200% 100%;
  animation: slideStripes 3s ease-in-out infinite;
}

@keyframes slideStripes {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ===== HERO — ORBITAL COMMAND BRIDGE ===== */
.hero-cmd {
  position: relative;
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  overflow: hidden;
  margin-bottom: 3rem;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Subtle radial backdrop */
.hero-cmd::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(0, 229, 255, 0.06) 0%,
    rgba(41, 121, 255, 0.03) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

/* Bottom edge glow */
.hero-cmd::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.25), rgba(255, 45, 85, 0.15), transparent);
}

/* Reticle SVG container */
.hero-cmd__reticle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  pointer-events: none;
  z-index: 0;
}

.hero-cmd__svg {
  width: 100%;
  height: 100%;
}

.hero-ring--outer {
  animation: heroRingSpin 60s linear infinite;
  transform-origin: center;
}

.hero-ring--mid {
  animation: heroRingSpin 45s linear infinite reverse;
  transform-origin: center;
}

.hero-ring--inner {
  animation: heroRingPulse 6s ease-in-out infinite;
  transform-origin: center;
}

@keyframes heroRingSpin {
  to { transform: rotate(360deg); }
}

@keyframes heroRingPulse {
  0%, 100% { opacity: 0.06; transform: scale(0.97); }
  50% { opacity: 0.14; transform: scale(1.03); }
}

.hero-sweep {
  animation: heroSweepRotate 8s linear infinite;
  transform-origin: 200px 200px;
}

@keyframes heroSweepRotate {
  to { transform: rotate(360deg); }
}

/* Scanner line */
.hero-cmd__scanner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 20%, var(--arc-cyan), transparent 80%);
  opacity: 0.15;
  animation: heroScanDown 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes heroScanDown {
  0% { top: 0; opacity: 0; }
  10% { opacity: 0.2; }
  90% { opacity: 0.2; }
  100% { top: 100%; opacity: 0; }
}

/* HUD corner labels */
.hero-cmd__hud-label {
  position: absolute;
  font-family: 'Rajdhani', 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.4;
  z-index: 2;
  pointer-events: none;
}

.hero-cmd__hud-label--tl { top: 1.2rem; left: 1.5rem; }
.hero-cmd__hud-label--tr { top: 1.2rem; right: 1.5rem; }
.hero-cmd__hud-label--bl { bottom: 1.2rem; left: 1.5rem; }
.hero-cmd__hud-label--br { bottom: 1.2rem; right: 1.5rem; }

/* Main content layer */
.hero-cmd__content {
  position: relative;
  z-index: 3;
  max-width: 700px;
}

/* Top tag badge */
.hero-cmd__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  background: rgba(0, 229, 255, 0.06);
  border: 1px solid rgba(0, 229, 255, 0.15);
  font-family: 'Rajdhani', 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--arc-cyan);
  margin-bottom: 2rem;
}

.hero-cmd__tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--arc-green);
  box-shadow: 0 0 6px var(--arc-green);
  animation: heroTagDotPulse 2s ease-in-out infinite;
}

@keyframes heroTagDotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Title */
.hero-cmd__title {
  margin: 0 0 1.5rem;
  line-height: 1.1;
}

.hero-cmd__title-main {
  display: block;
  font-family: 'Orbitron', 'Inter', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 6px;
  text-transform: uppercase;
  background: linear-gradient(
    135deg,
    #fff 0%,
    var(--arc-cyan) 40%,
    var(--arc-blue) 70%,
    var(--arc-magenta) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroTitleShift 8s ease-in-out infinite alternate;
  position: relative;
}

/* Glitch flicker on hover */
.hero-cmd__title-main::before,
.hero-cmd__title-main::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  pointer-events: none;
}

.hero-cmd:hover .hero-cmd__title-main::before {
  animation: heroGlitch1 0.3s ease 1;
  opacity: 1;
}

.hero-cmd:hover .hero-cmd__title-main::after {
  animation: heroGlitch2 0.3s ease 0.05s 1;
  opacity: 1;
}

@keyframes heroTitleShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

@keyframes heroGlitch1 {
  0% { clip-path: inset(40% 0 20% 0); transform: translateX(-3px); opacity: 0.8; }
  25% { clip-path: inset(10% 0 60% 0); transform: translateX(3px); }
  50% { clip-path: inset(70% 0 5% 0); transform: translateX(-2px); }
  75% { clip-path: inset(20% 0 40% 0); transform: translateX(2px); }
  100% { clip-path: inset(0 0 0 0); transform: translateX(0); opacity: 0; }
}

@keyframes heroGlitch2 {
  0% { clip-path: inset(60% 0 10% 0); transform: translateX(3px); opacity: 0.6; }
  25% { clip-path: inset(5% 0 70% 0); transform: translateX(-4px); }
  50% { clip-path: inset(30% 0 30% 0); transform: translateX(2px); }
  75% { clip-path: inset(50% 0 15% 0); transform: translateX(-2px); }
  100% { clip-path: inset(0 0 0 0); transform: translateX(0); opacity: 0; }
}

.hero-cmd__title-sub {
  display: block;
  font-family: 'Rajdhani', 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

/* Divider */
.hero-cmd__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-cmd__divider-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--arc-cyan));
  opacity: 0.3;
}

.hero-cmd__divider-line:last-child {
  background: linear-gradient(90deg, var(--arc-cyan), transparent);
}

.hero-cmd__divider-diamond {
  width: 8px;
  height: 8px;
  background: var(--arc-cyan);
  transform: rotate(45deg);
  opacity: 0.5;
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.4);
}

/* Description */
.hero-cmd__desc {
  font-family: 'Rajdhani', 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin: 0 0 2.5rem;
}

.hero-cmd__sep {
  display: inline-block;
  margin: 0 0.5rem;
  color: var(--arc-cyan);
  opacity: 0.4;
  font-weight: 700;
}

/* Action buttons */
.hero-cmd__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-cmd__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-cmd__btn-text {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Rajdhani', 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Primary button */
.hero-cmd__btn--primary {
  padding: 0.85rem 2.25rem;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.12), rgba(41, 121, 255, 0.12));
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: var(--arc-cyan);
}

.hero-cmd__btn--primary .hero-cmd__btn-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--arc-cyan), var(--arc-blue));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.hero-cmd__btn--primary:hover {
  color: #fff;
  border-color: var(--arc-cyan);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.25), 0 4px 20px rgba(10, 14, 39, 0.5);
  transform: translateY(-2px);
}

.hero-cmd__btn--primary:hover .hero-cmd__btn-bg {
  opacity: 1;
}

/* Ghost button */
.hero-cmd__btn--ghost {
  padding: 0.85rem 2rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-secondary);
}

.hero-cmd__btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

/* Success button (authenticated) */
.hero-cmd__btn--success {
  padding: 0.85rem 2.25rem;
  background: linear-gradient(135deg, rgba(0, 230, 118, 0.1), rgba(0, 229, 255, 0.08));
  border: 1px solid rgba(0, 230, 118, 0.3);
  color: var(--arc-green);
}

.hero-cmd__btn--success .hero-cmd__btn-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--arc-green), var(--arc-cyan));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.hero-cmd__btn--success:hover {
  color: #fff;
  border-color: var(--arc-green);
  box-shadow: 0 0 30px rgba(0, 230, 118, 0.2), 0 4px 20px rgba(10, 14, 39, 0.5);
  transform: translateY(-2px);
}

.hero-cmd__btn--success:hover .hero-cmd__btn-bg {
  opacity: 1;
}

/* Responsive hero */
@media (max-width: 991px) {
  .hero-cmd {
    padding: 4rem 1.25rem 3rem;
    min-height: 360px;
  }

  .hero-cmd__reticle {
    width: 380px;
    height: 380px;
  }

  .hero-cmd__title-main {
    font-size: 3rem;
    letter-spacing: 4px;
  }

  .hero-cmd__title-sub {
    font-size: 1.3rem;
    letter-spacing: 6px;
  }
}

@media (max-width: 767px) {
  .hero-cmd {
    padding: 3rem 1rem 2.5rem;
    min-height: 320px;
  }

  .hero-cmd__reticle {
    width: 280px;
    height: 280px;
  }

  .hero-cmd__hud-label {
    display: none;
  }

  .hero-cmd__title-main {
    font-size: 2rem;
    letter-spacing: 3px;
  }

  .hero-cmd__title-sub {
    font-size: 1rem;
    letter-spacing: 4px;
  }

  .hero-cmd__desc {
    font-size: 0.9rem;
  }

  .hero-cmd__btn-text {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
  }

  .hero-cmd__btn--primary,
  .hero-cmd__btn--success {
    padding: 0.75rem 1.75rem;
  }
}

@media (max-width: 480px) {
  .hero-cmd__title-main {
    font-size: 1.6rem;
    letter-spacing: 2px;
  }

  .hero-cmd__title-sub {
    font-size: 0.85rem;
    letter-spacing: 3px;
  }

  .hero-cmd__tag {
    font-size: 0.6rem;
    letter-spacing: 1.5px;
  }
}

/* ===== GLOWING CARD ENHANCEMENTS ===== */
.card-enhanced {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(17, 22, 64, 0.95) 0%,
    rgba(26, 33, 82, 0.95) 100%
  ) !important;
  border: 2px solid transparent !important;
  background-clip: padding-box;
}

.card-enhanced::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    135deg,
    var(--arc-red),
    var(--arc-yellow),
    var(--arc-cyan),
    var(--arc-blue),
    var(--arc-magenta)
  );
  background-size: 300% 300%;
  border-radius: 14px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
  animation: borderRainbow 4s ease-in-out infinite;
}

.card-enhanced:hover::before {
  opacity: 0.7;
}

@keyframes borderRainbow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ===== DECORATIVE CORNERS ===== */
.corner-accent {
  position: relative;
}

.corner-accent::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border-top: 3px solid var(--arc-red);
  border-right: 3px solid var(--arc-yellow);
  opacity: 0.7;
}

.corner-accent::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-bottom: 3px solid var(--arc-cyan);
  border-left: 3px solid var(--arc-blue);
  opacity: 0.7;
}

/* ===== CLAN CARD SPECIAL DESIGN ===== */
.clan-card {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}

.clan-card:hover {
  transform: translateY(-10px) rotateX(5deg);
}

.clan-tag-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(
    135deg,
    var(--arc-red) 0%,
    var(--arc-yellow) 50%,
    var(--arc-orange) 100%
  );
  background-size: 200% 100%;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 0;
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  box-shadow: 0 4px 15px rgba(255, 45, 85, 0.4);
  margin-bottom: 1rem;
  animation: tagWarmShift 3s ease-in-out infinite;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

@keyframes tagWarmShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ===== DKP COUNTER DESIGN ===== */
.dkp-counter {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(41, 121, 255, 0.2) 0%,
    rgba(0, 229, 255, 0.2) 100%
  );
  border: 2px solid var(--arc-blue);
  border-radius: 25px;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--arc-cyan);
  text-shadow: 0 0 10px var(--arc-blue);
  box-shadow: 0 0 20px rgba(41, 121, 255, 0.3);
  animation: dkpPulse 2s ease-in-out infinite;
}

@keyframes dkpPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(41, 121, 255, 0.3); }
  50% { box-shadow: 0 0 35px rgba(0, 229, 255, 0.5); }
}

.dkp-counter .dkp-icon {
  width: 30px;
  height: 30px;
  margin-right: 0.5rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #fff;
}

/* ===== STAT BOXES ===== */
.stat-box {
  text-align: center;
  padding: 1.5rem;
  background: rgba(17, 22, 64, 0.8);
  border: 2px solid transparent;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(41, 121, 255, 0.2),
    rgba(0, 229, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.stat-box:hover::before {
  left: 100%;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  background: linear-gradient(
    135deg,
    var(--arc-red),
    var(--arc-yellow),
    var(--arc-cyan),
    var(--arc-blue)
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  animation: statNumberShift 4s ease-in-out infinite;
}

@keyframes statNumberShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--arc-text-muted);
}

/* ===== RANK BADGES ===== */
.rank-badge-leader {
  background: linear-gradient(135deg, var(--arc-red), var(--arc-yellow), var(--arc-orange));
  background-size: 200% 100%;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 20px rgba(255, 45, 85, 0.4);
  animation: rankGlow 2s ease-in-out infinite;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.rank-badge-officer {
  background: var(--gradient-primary);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 15px rgba(41, 121, 255, 0.4);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.rank-badge-member {
  background: rgba(26, 33, 82, 0.8);
  color: var(--arc-text);
  padding: 0.5rem 1rem;
  border: 1px solid var(--arc-blue);
  border-radius: 20px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes rankGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 45, 85, 0.4); background-position: 0% 50%; }
  50% { box-shadow: 0 0 35px rgba(255, 230, 0, 0.6); background-position: 100% 50%; }
}

/* ===== PROGRESS BARS ===== */
.progress-arc {
  height: 30px;
  background: rgba(17, 22, 64, 0.6);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(41, 121, 255, 0.2);
}

.progress-bar-arc {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--arc-red) 0%,
    var(--arc-yellow) 25%,
    var(--arc-cyan) 50%,
    var(--arc-blue) 75%,
    var(--arc-magenta) 100%
  );
  background-size: 200% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  transition: width 1s ease;
  position: relative;
  overflow: hidden;
  animation: progressRainbow 3s ease-in-out infinite;
}

@keyframes progressRainbow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.progress-bar-arc::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  animation: progressShine 2s infinite;
}

@keyframes progressShine {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ===== ICON ENHANCEMENTS ===== */
.icon-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  box-shadow: 0 0 20px rgba(41, 121, 255, 0.5);
  margin-right: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.icon-glow:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 0 35px rgba(0, 229, 255, 0.7);
  background: var(--gradient-cool);
}

/* ===== RAID STATUS INDICATORS ===== */
.raid-status-scheduled {
  position: relative;
  padding-left: 25px;
}

.raid-status-scheduled::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background: var(--arc-gray);
  border: 2px solid var(--arc-text-muted);
  border-radius: 50%;
  animation: blink 2s infinite;
}

.raid-status-active::before {
  background: var(--arc-blue);
  border-color: var(--arc-cyan);
  box-shadow: 0 0 15px var(--arc-blue), 0 0 30px rgba(0, 229, 255, 0.3);
}

.raid-status-completed::before {
  background: var(--arc-green);
  border-color: var(--arc-green);
  box-shadow: 0 0 15px var(--arc-green);
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ===== DECORATIVE SECTION HEADERS ===== */
.section-header {
  position: relative;
  padding: 2rem 0;
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  display: inline-block;
  padding: 0 2rem;
}

.section-header h2::before,
.section-header h2::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 50px;
  height: 3px;
}

.section-header h2::before {
  right: 100%;
  margin-right: 1rem;
  background: linear-gradient(
    90deg,
    transparent,
    var(--arc-blue),
    var(--arc-cyan)
  );
}

.section-header h2::after {
  left: 100%;
  margin-left: 1rem;
  background: linear-gradient(
    90deg,
    var(--arc-yellow),
    var(--arc-red),
    transparent
  );
}

/* ===== FLOATING PARTICLES EFFECT ===== */
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--arc-blue);
  border-radius: 50%;
  opacity: 0.4;
  animation: floatUp 15s infinite ease-in-out;
}

.particle:nth-child(2) { background: var(--arc-red); animation-delay: 2s; left: 20%; width: 5px; height: 5px; }
.particle:nth-child(3) { background: var(--arc-yellow); animation-delay: 4s; left: 40%; width: 3px; height: 3px; }
.particle:nth-child(4) { background: var(--arc-cyan); animation-delay: 6s; left: 60%; width: 6px; height: 6px; }
.particle:nth-child(5) { background: var(--arc-magenta); animation-delay: 8s; left: 80%; width: 4px; height: 4px; }

@keyframes floatUp {
  0%, 100% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.4;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(-100px) translateX(50px);
    opacity: 0;
  }
}

/* ===== TOOLTIP ENHANCEMENTS ===== */
.tooltip-arc {
  position: relative;
  cursor: help;
}

.tooltip-arc::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(17, 22, 64, 0.95), rgba(26, 33, 82, 0.95));
  border: 1px solid var(--arc-blue);
  border-radius: 5px;
  color: var(--arc-text);
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  box-shadow: 0 0 15px rgba(41, 121, 255, 0.3);
}

.tooltip-arc:hover::after {
  opacity: 1;
}

/* ===== TEAM MEMBER CARDS ===== */
.member-card {
  position: relative;
  padding: 1.5rem;
  background: rgba(17, 22, 64, 0.9);
  border-radius: 10px;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.member-card:hover {
  border-color: var(--arc-blue);
  box-shadow: 0 0 30px rgba(41, 121, 255, 0.3), 0 0 60px rgba(0, 229, 255, 0.1);
  transform: translateY(-5px);
}

.member-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid transparent;
  background-image: linear-gradient(rgba(17, 22, 64, 1), rgba(17, 22, 64, 1)), var(--gradient-primary);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 0 0 20px rgba(41, 121, 255, 0.4);
  margin-bottom: 1rem;
}

/* ===== ANIMATED BACKGROUND GRID ===== */
.grid-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(41, 121, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41, 121, 255, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -2;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

/* ===== JOIN BUTTON SPECIAL ===== */
.btn-join-clan {
  position: relative;
  font-size: 1.3rem;
  padding: 1rem 3rem;
  background: linear-gradient(135deg, var(--arc-blue), var(--arc-cyan), var(--arc-green));
  background-size: 200% 100%;
  border: none;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  overflow: hidden;
  transition: all 0.3s;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  animation: joinBtnShift 3s ease-in-out infinite;
}

@keyframes joinBtnShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.btn-join-clan::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.btn-join-clan:hover::before {
  width: 400px;
  height: 400px;
}

.btn-join-clan:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 30px rgba(41, 121, 255, 0.6),
    0 0 60px rgba(0, 229, 255, 0.3);
}

/* ===== NOTIFICATION BADGE ===== */
.notification-badge {
  position: relative;
  display: inline-block;
}

.notification-badge::after {
  content: attr(data-count);
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(135deg, var(--arc-red), var(--arc-orange));
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.25rem 0.5rem;
  border-radius: 10px;
  min-width: 20px;
  text-align: center;
  box-shadow: 0 0 15px rgba(255, 45, 85, 0.5);
  animation: notifPulse 2s infinite;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@keyframes notifPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* ===== VIBRANT COLOR PULSE ANIMATION ===== */
@keyframes colorPulse {
  0% { filter: hue-rotate(0deg) brightness(1); }
  25% { filter: hue-rotate(30deg) brightness(1.1); }
  50% { filter: hue-rotate(60deg) brightness(1); }
  75% { filter: hue-rotate(30deg) brightness(1.1); }
  100% { filter: hue-rotate(0deg) brightness(1); }
}

.vibrant-pulse {
  animation: colorPulse 6s ease-in-out infinite;
}

/* ===== ROTATING BORDER EFFECT ===== */
.rotating-border {
  position: relative;
  overflow: hidden;
}

.rotating-border::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    var(--arc-red),
    var(--arc-yellow),
    var(--arc-cyan),
    var(--arc-blue),
    var(--arc-magenta),
    var(--arc-red)
  );
  animation: rotateBorder 4s linear infinite;
  z-index: -1;
}

.rotating-border::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  background: var(--arc-black);
  border-radius: inherit;
  z-index: -1;
}

@keyframes rotateBorder {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ===== HUD FEATURE MODULES — Command Center Design ===== */

.hud-features-section {
  position: relative;
  padding: 1rem 0 0;
}

/* Section Label */
.hud-section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hud-label-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--arc-cyan);
  white-space: nowrap;
  text-shadow: 0 0 12px rgba(0, 229, 255, 0.4);
}

.hud-label-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--arc-cyan), transparent);
  opacity: 0.5;
}

/* Module Card */
.hud-module {
  position: relative;
  background: linear-gradient(160deg, rgba(10, 14, 39, 0.92) 0%, rgba(17, 22, 64, 0.88) 50%, rgba(26, 33, 82, 0.75) 100%);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 229, 255, 0.12);
  border-radius: 16px;
  padding: 2rem 1.75rem 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.hud-module:hover {
  border-color: rgba(0, 229, 255, 0.35);
  box-shadow:
    0 0 40px rgba(0, 229, 255, 0.12),
    0 8px 32px rgba(10, 14, 39, 0.6),
    inset 0 1px 0 rgba(0, 229, 255, 0.08);
  transform: translateY(-6px);
}

.hud-module--dkp:hover {
  border-color: rgba(255, 230, 0, 0.3);
  box-shadow:
    0 0 40px rgba(255, 230, 0, 0.1),
    0 8px 32px rgba(10, 14, 39, 0.6),
    inset 0 1px 0 rgba(255, 230, 0, 0.06);
}

.hud-module--discord:hover {
  border-color: rgba(88, 101, 242, 0.35);
  box-shadow:
    0 0 40px rgba(88, 101, 242, 0.12),
    0 8px 32px rgba(10, 14, 39, 0.6),
    inset 0 1px 0 rgba(88, 101, 242, 0.08);
}

/* Scanline overlay */
.hud-module__scanline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 229, 255, 0.015) 2px,
    rgba(0, 229, 255, 0.015) 4px
  );
  pointer-events: none;
  z-index: 1;
  border-radius: 16px;
}

/* Corner accents */
.hud-module__corner {
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 2;
  pointer-events: none;
}

.hud-module__corner--tl {
  top: 8px; left: 8px;
  border-top: 2px solid var(--arc-cyan);
  border-left: 2px solid var(--arc-cyan);
  opacity: 0.5;
  transition: opacity 0.4s;
}

.hud-module__corner--tr {
  top: 8px; right: 8px;
  border-top: 2px solid var(--arc-cyan);
  border-right: 2px solid var(--arc-cyan);
  opacity: 0.5;
  transition: opacity 0.4s;
}

.hud-module__corner--bl {
  bottom: 8px; left: 8px;
  border-bottom: 2px solid var(--arc-cyan);
  border-left: 2px solid var(--arc-cyan);
  opacity: 0.5;
  transition: opacity 0.4s;
}

.hud-module__corner--br {
  bottom: 8px; right: 8px;
  border-bottom: 2px solid var(--arc-cyan);
  border-right: 2px solid var(--arc-cyan);
  opacity: 0.5;
  transition: opacity 0.4s;
}

.hud-module:hover .hud-module__corner { opacity: 1; }

.hud-module--dkp .hud-module__corner--tl,
.hud-module--dkp .hud-module__corner--tr,
.hud-module--dkp .hud-module__corner--bl,
.hud-module--dkp .hud-module__corner--br {
  border-color: var(--arc-yellow);
}

.hud-module--discord .hud-module__corner--tl,
.hud-module--discord .hud-module__corner--tr,
.hud-module--discord .hud-module__corner--bl,
.hud-module--discord .hud-module__corner--br {
  border-color: #5865F2;
}

/* Status indicator */
.hud-module__status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  z-index: 2;
  position: relative;
}

.hud-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.hud-status-dot--active {
  background: var(--arc-green);
  box-shadow: 0 0 8px var(--arc-green), 0 0 16px rgba(0, 230, 118, 0.3);
  animation: hudStatusPulse 2s ease-in-out infinite;
}

.hud-status-dot--linked {
  background: #5865F2;
  box-shadow: 0 0 8px #5865F2, 0 0 16px rgba(88, 101, 242, 0.3);
  animation: hudStatusPulse 2s ease-in-out infinite;
}

@keyframes hudStatusPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px currentColor; }
  50% { opacity: 0.6; box-shadow: 0 0 16px currentColor, 0 0 32px currentColor; }
}

.hud-status-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Visual / SVG area */
.hud-module__visual {
  position: relative;
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  z-index: 2;
}

.hud-module__visual svg {
  width: 100%;
  max-width: 220px;
  height: auto;
}

/* SVG Animations — Org Chart (Clan) */
.hud-node {
  transition: all 0.4s ease;
}

.hud-module--clan:hover .hud-node--leader {
  filter: drop-shadow(0 0 8px var(--arc-red));
  stroke-width: 3;
}

.hud-module--clan:hover .hud-node--officer {
  filter: drop-shadow(0 0 6px var(--arc-cyan));
}

.hud-module--clan:hover .hud-node--member {
  filter: drop-shadow(0 0 4px var(--arc-blue));
}

.hud-line {
  stroke-dashoffset: 0;
  animation: hudDashFlow 3s linear infinite;
}

.hud-line--delay1 { animation-delay: 0.3s; }
.hud-line--delay2 { animation-delay: 0.6s; }
.hud-line--delay3 { animation-delay: 0.9s; }
.hud-line--delay4 { animation-delay: 1.2s; }

@keyframes hudDashFlow {
  to { stroke-dashoffset: -20; }
}

.hud-radar-ring {
  animation: hudRadarPulse 4s ease-in-out infinite;
  transform-origin: center;
}

@keyframes hudRadarPulse {
  0%, 100% { opacity: 0.1; transform: scale(0.95); }
  50% { opacity: 0.25; transform: scale(1.05); }
}

/* SVG Animations — DKP Crystal */
.hud-crystal {
  animation: hudCrystalGlow 3s ease-in-out infinite;
  transition: all 0.4s ease;
}

.hud-crystal-inner {
  animation: hudCrystalGlow 3s ease-in-out infinite 0.5s;
}

@keyframes hudCrystalGlow {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(255, 230, 0, 0.2)); }
  50% { filter: drop-shadow(0 0 12px rgba(255, 230, 0, 0.5)); }
}

.hud-module--dkp:hover .hud-crystal {
  filter: drop-shadow(0 0 16px rgba(255, 230, 0, 0.6));
  fill: rgba(255, 230, 0, 0.15);
}

.hud-ray {
  transform-origin: 100px 90px;
  animation: hudRayPulse 2.5s ease-in-out infinite;
}

.hud-ray--1 { animation-delay: 0s; }
.hud-ray--2 { animation-delay: 0.4s; }
.hud-ray--3 { animation-delay: 0.8s; }
.hud-ray--4 { animation-delay: 1.2s; }

@keyframes hudRayPulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.6; }
}

.hud-bar {
  animation: hudBarGrow 2s ease-in-out infinite alternate;
  transform-origin: bottom;
}

.hud-bar--1 { animation-delay: 0s; }
.hud-bar--2 { animation-delay: 0.2s; }
.hud-bar--3 { animation-delay: 0.4s; }
.hud-bar--4 { animation-delay: 0.6s; }
.hud-bar--5 { animation-delay: 0.8s; }
.hud-bar--6 { animation-delay: 1s; }

@keyframes hudBarGrow {
  0% { transform: scaleY(0.7); opacity: 0.4; }
  100% { transform: scaleY(1); opacity: 0.8; }
}

.hud-glow-ring {
  animation: hudGlowRingPulse 4s ease-in-out infinite;
  transform-origin: center;
}

@keyframes hudGlowRingPulse {
  0%, 100% { opacity: 0.1; r: 46; }
  50% { opacity: 0.25; r: 50; }
}

/* SVG Animations — Discord Comms */
.hud-wave {
  transform-origin: center;
  animation: hudWaveExpand 3s ease-out infinite;
}

.hud-wave--1 { animation-delay: 0s; }
.hud-wave--2 { animation-delay: 0.6s; }
.hud-wave--3 { animation-delay: 1.2s; }
.hud-wave--4 { animation-delay: 1.8s; }

@keyframes hudWaveExpand {
  0% { transform: scale(0.9); opacity: 0.6; }
  100% { transform: scale(1.3); opacity: 0; }
}

.hud-discord-core {
  transition: all 0.4s ease;
}

.hud-module--discord:hover .hud-discord-core {
  filter: drop-shadow(0 0 12px rgba(88, 101, 242, 0.6));
  fill: rgba(88, 101, 242, 0.35);
}

.hud-endpoint {
  animation: hudEndpointBlink 2s ease-in-out infinite;
}

.hud-endpoint:nth-child(odd) { animation-delay: 0.5s; }

@keyframes hudEndpointBlink {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; filter: drop-shadow(0 0 4px var(--arc-cyan)); }
}

.hud-conn {
  animation: hudDashFlow 4s linear infinite;
}

.hud-conn--1 { animation-delay: 0s; }
.hud-conn--2 { animation-delay: 1s; }
.hud-conn--3 { animation-delay: 2s; }
.hud-conn--4 { animation-delay: 3s; }

/* Module title */
.hud-module__title {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--arc-cyan);
  margin: 0;
  z-index: 2;
  position: relative;
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

.hud-module__title--dkp {
  color: var(--arc-yellow);
  text-shadow: 0 0 20px rgba(255, 230, 0, 0.2);
}

.hud-module__title--discord {
  color: #7c86ff;
  text-shadow: 0 0 20px rgba(88, 101, 242, 0.25);
}

/* Divider */
.hud-module__divider {
  width: 50px;
  height: 2px;
  margin: 0.75rem 0 1rem;
  background: linear-gradient(90deg, var(--arc-cyan), transparent);
  border-radius: 1px;
  z-index: 2;
  position: relative;
}

.hud-module__divider--dkp {
  background: linear-gradient(90deg, var(--arc-yellow), var(--arc-orange), transparent);
}

.hud-module__divider--discord {
  background: linear-gradient(90deg, #5865F2, var(--arc-magenta), transparent);
}

/* Description */
.hud-module__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 1.25rem;
  z-index: 2;
  position: relative;
  flex: 1;
}

/* Tags */
.hud-module__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  z-index: 2;
  position: relative;
}

.hud-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.2);
  color: var(--arc-cyan);
  transition: all 0.3s ease;
}

.hud-module:hover .hud-tag {
  background: rgba(0, 229, 255, 0.14);
  border-color: rgba(0, 229, 255, 0.4);
}

.hud-tag--dkp {
  background: rgba(255, 230, 0, 0.06);
  border-color: rgba(255, 230, 0, 0.15);
  color: var(--arc-yellow);
}

.hud-module:hover .hud-tag--dkp {
  background: rgba(255, 230, 0, 0.12);
  border-color: rgba(255, 230, 0, 0.35);
}

.hud-tag--discord {
  background: rgba(88, 101, 242, 0.08);
  border-color: rgba(88, 101, 242, 0.2);
  color: #7c86ff;
}

.hud-module:hover .hud-tag--discord {
  background: rgba(88, 101, 242, 0.14);
  border-color: rgba(88, 101, 242, 0.4);
}

/* CTA Button */
.hud-module__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.25);
  color: var(--arc-cyan);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  position: relative;
  align-self: flex-start;
}

.hud-module__cta:hover {
  background: rgba(0, 229, 255, 0.18);
  border-color: var(--arc-cyan);
  color: #fff;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
  transform: translateX(4px);
}

.hud-module__cta--dkp {
  background: rgba(255, 230, 0, 0.06);
  border-color: rgba(255, 230, 0, 0.2);
  color: var(--arc-yellow);
}

.hud-module__cta--dkp:hover {
  background: rgba(255, 230, 0, 0.15);
  border-color: var(--arc-yellow);
  color: #fff;
  box-shadow: 0 0 20px rgba(255, 230, 0, 0.2);
}

.hud-module__cta--discord {
  background: rgba(88, 101, 242, 0.06);
  border-color: rgba(88, 101, 242, 0.2);
  color: #7c86ff;
}

.hud-module__cta--discord:hover {
  background: rgba(88, 101, 242, 0.18);
  border-color: #5865F2;
  color: #fff;
  box-shadow: 0 0 20px rgba(88, 101, 242, 0.2);
}

.hud-module__cta svg {
  transition: transform 0.3s ease;
}

.hud-module__cta:hover svg {
  transform: translateX(3px);
}

/* Hover background glow effect */
.hud-module--clan::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(0, 229, 255, 0.06), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.hud-module--clan:hover::after { opacity: 1; }

.hud-module--dkp::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(255, 230, 0, 0.05), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.hud-module--dkp:hover::after { opacity: 1; }

.hud-module--discord::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(88, 101, 242, 0.06), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.hud-module--discord:hover::after { opacity: 1; }

/* Responsive adjustments */
@media (max-width: 991px) {
  .hud-module__visual {
    height: 140px;
  }

  .hud-module__title {
    font-size: 1.25rem;
  }
}

@media (max-width: 767px) {
  .hud-section-label {
    margin-bottom: 1.5rem;
  }

  .hud-module {
    padding: 1.5rem 1.25rem;
  }

  .hud-module__visual {
    height: 130px;
  }

  .hud-module__visual svg {
    max-width: 180px;
  }

  .hud-module__title {
    font-size: 1.15rem;
  }

  .hud-module__desc {
    font-size: 0.85rem;
  }
}

/* ===== NEWS FEED — INTEL CARDS ===== */

.hud-news-section {
  position: relative;
}

/* Shared card base */
.hud-news-card {
  display: flex;
  flex-direction: column;
  position: relative;
  background: linear-gradient(160deg, rgba(10, 14, 39, 0.92) 0%, rgba(17, 22, 64, 0.88) 50%, rgba(26, 33, 82, 0.7) 100%);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 229, 255, 0.1);
  border-radius: 14px;
  padding: 1.75rem;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.hud-news-card:hover {
  border-color: rgba(0, 229, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.08), 0 8px 24px rgba(10, 14, 39, 0.5);
  text-decoration: none;
}

/* Featured card — tall left column */
.hud-news-card--featured {
  height: 100%;
  padding: 2rem;
  justify-content: flex-end;
  min-height: 320px;
  background: linear-gradient(
    170deg,
    rgba(255, 45, 85, 0.06) 0%,
    rgba(10, 14, 39, 0.94) 30%,
    rgba(17, 22, 64, 0.9) 60%,
    rgba(0, 229, 255, 0.04) 100%
  );
}

.hud-news-card--featured:hover {
  border-color: rgba(255, 45, 85, 0.25);
  box-shadow: 0 0 35px rgba(255, 45, 85, 0.08), 0 8px 28px rgba(10, 14, 39, 0.5);
}

/* Compact card — right column stack */
.hud-news-card--compact {
  padding: 1.25rem 1.5rem;
}

/* Corner accents on featured */
.hud-news-card__corner {
  position: absolute;
  width: 18px;
  height: 18px;
  pointer-events: none;
  opacity: 0.4;
  transition: opacity 0.4s;
}

.hud-news-card:hover .hud-news-card__corner { opacity: 0.8; }

.hud-news-card__corner--tl {
  top: 10px; left: 10px;
  border-top: 2px solid var(--arc-red);
  border-left: 2px solid var(--arc-red);
}

.hud-news-card__corner--br {
  bottom: 10px; right: 10px;
  border-bottom: 2px solid var(--arc-cyan);
  border-right: 2px solid var(--arc-cyan);
}

/* "Latest" badge */
.hud-news-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: 'Rajdhani', 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 4px;
  background: rgba(255, 45, 85, 0.15);
  border: 1px solid rgba(255, 45, 85, 0.3);
  color: var(--arc-red);
  animation: hudNewsBadgePulse 3s ease-in-out infinite;
}

@keyframes hudNewsBadgePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Meta row (date + tag) */
.hud-news-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.hud-news-card__date {
  font-family: 'Rajdhani', 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hud-news-card__tag {
  font-family: 'Rajdhani', 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.15rem 0.55rem;
  border-radius: 3px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.18);
  color: var(--arc-cyan);
}

.hud-news-card__tag--patch {
  background: rgba(0, 230, 118, 0.08);
  border-color: rgba(0, 230, 118, 0.2);
  color: var(--arc-green);
}

.hud-news-card__tag--update {
  background: rgba(255, 230, 0, 0.06);
  border-color: rgba(255, 230, 0, 0.18);
  color: var(--arc-yellow);
}

.hud-news-card__tag--roadmap {
  background: rgba(213, 0, 249, 0.08);
  border-color: rgba(213, 0, 249, 0.2);
  color: var(--arc-magenta);
}

/* Title */
.hud-news-card__title {
  font-family: 'Rajdhani', 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-primary);
  margin: 0 0 0.75rem;
  transition: color 0.3s ease;
}

.hud-news-card:hover .hud-news-card__title {
  color: var(--arc-cyan);
}

.hud-news-card__title--sm {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* Description (featured only) */
.hud-news-card__desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0 0 1.25rem;
}

/* Read link */
.hud-news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Rajdhani', 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: auto;
  transition: color 0.3s ease;
}

.hud-news-card:hover .hud-news-card__link {
  color: var(--arc-cyan);
}

.hud-news-card__link svg {
  transition: transform 0.3s ease;
}

.hud-news-card:hover .hud-news-card__link svg {
  transform: translateX(3px);
}

/* View all link */
.hud-news-viewall {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Rajdhani', 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.hud-news-viewall:hover {
  color: var(--arc-cyan);
  border-color: rgba(0, 229, 255, 0.25);
  background: rgba(0, 229, 255, 0.04);
}

.hud-news-viewall svg {
  transition: transform 0.3s ease;
}

.hud-news-viewall:hover svg {
  transform: translate(2px, -2px);
}

/* Responsive news */
@media (max-width: 991px) {
  .hud-news-card--featured {
    min-height: 240px;
  }

  .hud-news-card__title {
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {
  .hud-news-card--featured {
    min-height: auto;
    padding: 1.5rem;
  }

  .hud-news-card__title {
    font-size: 1.15rem;
  }

  .hud-news-card__title--sm {
    font-size: 1rem;
  }

  .hud-news-card__desc {
    font-size: 0.85rem;
  }
}
