/* Tooltip — positionné dynamiquement par JavaScript */
#tooltip {
  position: absolute;
  background-color: rgba(10, 15, 25, 0.95);
  border: 2px solid #c8aa6e;
  color: #a09b8c;
  padding: 15px;
  border-radius: 5px;
  pointer-events: none;
  display: none;
  max-width: 300px;
  z-index: 1000;
  font-size: 14px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.8);
}

#tooltip h4 {
  color: #c8aa6e;
  margin: 0 0 5px 0;
  font-size: 16px;
  text-transform: uppercase;
}

#tooltip .price {
  color: #ffcc00;
  font-size: 13px;
  margin-bottom: 10px;
}

/* Burger menu */
@media (min-width: 768px) {
  #nav-menu {
    display: flex !important;
  }
  #burger-btn {
    display: none !important;
  }
}

.burger-open .burger-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger-open .burger-bar:nth-child(2) {
  opacity: 0;
}
.burger-open .burger-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Lien actif de la navbar */
.nav-active {
  color: #f0e6d2 !important;
  text-shadow: 0 0 8px rgba(200, 170, 110, 0.6);
}

/* Balises HTML spéciales dans les descriptions Data Dragon */
attention { font-weight: bold; color: white; }
active     { color: #8faadd; font-weight: bold; }
passive    { color: #e8d07f; font-weight: bold; }
rules      { font-style: italic; color: #777; }
mainText   { display: block; line-height: 1.4; }
