/* fusions-monstres-accueil.css — Identité visuelle de la page d'accueil.
   Surcharge légère de accueil.css partagée. Palette violet magique + or.
*/

:root {
  --fm-or: #fbbf24;
  --fm-violet: #a78bfa;
  --fm-violet-dark: #7c3aed;
}

body {
  background: linear-gradient(180deg, #0f0a1f 0%, #1a0d2e 50%, #0f0a1f 100%);
}

.hero-fusions {
  position: relative;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.18), rgba(76, 29, 149, 0.25));
  border: 1px solid rgba(167, 139, 250, 0.3);
  border-radius: 18px;
  padding: 28px 24px;
  overflow: hidden;
  margin-bottom: 24px;
}

.hero-fusions::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(248, 113, 113, 0.15) 0%, transparent 40%),
    radial-gradient(ellipse at 80% 70%, rgba(96, 165, 250, 0.15) 0%, transparent 40%);
  pointer-events: none;
}

.hero-runes {
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  font-size: 1.4rem;
  opacity: 0.4;
  pointer-events: none;
}

.rune {
  animation: rune-flotte 4s ease-in-out infinite;
}

.rune-eau    { animation-delay: -1s; }
.rune-foudre { animation-delay: -2s; }
.rune-glace  { animation-delay: -3s; }

@keyframes rune-flotte {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-flex {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.hero-visual {
  flex-shrink: 0;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(124, 58, 237, 0.4);
}

.hero-title {
  flex: 1 1 100%;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fm-or);
  margin: 0;
}

.hero-h1 {
  flex: 1 1 100%;
  font-size: clamp(1.4rem, 4vw, 2rem);
  margin: 4px 0 8px;
  background: linear-gradient(90deg, var(--fm-violet), var(--fm-or));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  flex: 1 1 250px;
}

.hero-text .subtitle {
  color: #d1d5db;
  font-size: 0.95rem;
  margin: 0 0 14px;
  line-height: 1.5;
}

.btn-cta-hero {
  display: inline-block;
  background: linear-gradient(180deg, var(--fm-violet-dark), #5b21b6);
  color: #fff;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  border: 1px solid var(--fm-violet);
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-cta-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.5);
}

.hero-live {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #9ca3af;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
}

@media (max-width: 600px) {
  .hero-fusions { padding: 20px 16px; }
  .hero-flex { gap: 14px; }
  .hero-visual { width: 140px; height: 140px; }
}
