body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background: radial-gradient(circle at center, #0a0f1f 0%, #05070d 70%);
  color: white;
}

/* HERO */

.factions-hero {
  text-align: center;
  padding: 100px 20px 40px;
}

.factions-hero h1 {
  font-size: 3rem;
  letter-spacing: 6px;
}

/* LOGO SELECTOR */

.faction-selector {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px 20px;
}

.faction-logo {
  width: 100px;
  height: 100px;
  cursor: pointer;
  transition: all 0.4s ease;
  opacity: 0.6;
}

.faction-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.faction-logo:hover {
  transform: scale(1.1);
  opacity: 1;
}

.faction-logo.active {
  opacity: 1;
  filter: drop-shadow(0 0 15px #00ffff);
}

/* CONTENT AREA */

.faction-content {
  width: 60%;
  margin: 60px auto 120px auto;
  text-align: center;
  background: rgba(255,255,255,0.04);
  padding: 40px;
  border-radius: 14px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.faction-content.fade {
  opacity: 0;
  transform: translateY(20px);
}

#faction-title {
  font-size: 2rem;
  margin-bottom: 20px;
}

#faction-description {
  line-height: 1.6;
  opacity: 0.85;
}

.faction-text {
  text-align: left;
  line-height: 1.8;
  font-size: 0.95rem;
}

.faction-text p {
  margin-bottom: 20px;
}

.faction-text ul {
  margin: 15px 0 20px 20px;
  padding: 0;
}

.faction-text li {
  margin-bottom: 8px;
  opacity: 0.85;
}

.faction-text strong {
  color: #00ffff;
}

.faction-text em {
  color: #bb66ff;
}