/* === RESET === */
* {
  box-sizing: border-box;
}

body.normal,
body.ranked {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #e2e2e2;
  background-size: cover; /* ✅ image entièrement visible */
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-color: black;
  overflow-x: hidden;
  min-height: 100vh;
}

body.normal {
  background-image: url('/teamfight_tactics/assets/images/backgrounds/normal.png');
}

body.ranked {
  background-image: url('/teamfight_tactics/assets/images/backgrounds/ranked.png');
}

body.double-up {
  background-image: url('/teamfight_tactics/assets/images/backgrounds/doubleup.png');
}

body.pic-poc {
  background-image: url('/teamfight_tactics/assets/images/backgrounds/picpoc.png');
}
/* === NAVBAR === */
.recherche-barre {
  background-color: rgba(26, 26, 26, 0.85);
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #333;
  flex-wrap: wrap;
}

.zone-gauche {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.logo {
  height: 100px;
  border-radius: 50%;
}

.recherche-titre {
  font-size: 16px;
  color: #ffcc00;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 6px;
}

.recherche-titre::before {
  content: "🔍";
  font-size: 18px;
}

.menu-liens {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.menu-liens a {
  font-size: 18px;
  font-weight: bold;
  color: #ffcc00;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.menu-liens a:hover {
  color: #fff;
  text-shadow: 0 0 8px #ffcc00;
}

/* === HERO === */
.hero-banner {
  padding: 100px 20px;
  text-align: center;
}

.hero-banner h1 {
  font-size: 64px;
  text-transform: uppercase;
  letter-spacing: 2px;
  background-color: rgba(0, 0, 0, 0.6);
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
}

.hero-banner p {
  font-size: 20px;
  max-width: 600px;
  margin: 20px auto;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 15px;
  border-radius: 6px;
}

/* === BOUTON DECONNEXION VERROUILLÉ ET SANS CONTOUR === */
.cta-button.btn-logout {
  background-color: #c70039 !important;   /* Couleur principale */
  color: white !important;                /* Texte blanc */
  padding: 12px 28px !important;          /* Espacement interne */
  font-size: 18px !important;             /* Taille du texte */
  border-radius: 4px !important;          /* Coins arrondis */
  text-decoration: none !important;       /* Pas de soulignement */
  border: none !important;                /* ❌ Supprime la bordure */
  outline: none !important;               /* ❌ Supprime le contour focus */
  box-shadow: none !important;            /* ❌ Supprime les ombres */
  cursor: pointer !important;             /* Curseur main */
  font-family: 'Segoe UI', sans-serif !important;
  display: inline-block !important;
  transition: background-color 0.3s ease !important;
  margin-top: 10px !important;
}

/* === Effet au survol === */
.cta-button.btn-logout:hover {
  background-color: #ff0033 !important;
}

/* === Focus explicite (clic clavier ou tabulation) === */
.cta-button.btn-logout:focus {
  outline: none !important;
  box-shadow: none !important;
}