@charset "utf-8";
/* CSS Document */

/* === Boîte des Conditions – style clair assorti au thème === */
.terms-box {
  background:#eeeeee; 
  border: 1px solid rgba(0,0,0,0.12);
  border-left: 6px solid #585858; 
  padding: 24px;
  margin: 30px auto;
  color: #333;
  max-width: 720px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.10);
  font-family: inherit;
  font-size: 10px;
	background: url('https://i.imgur.com/ZgN8jVP.png');
}

/* === Titre des Conditions === */
.terms-title {
  font-family: inherit; 
  font-size: 13px;
  text-transform: uppercase;
  text-align: center;
  color: #6f5c00;
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-shadow: 1px 1px 0 #ddd;
  border-bottom: 1px dashed rgba(0,0,0,0.2);
  padding-bottom: 6px;
}

/* === Liste principale des conditions === */
.terms-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-list > li {
  margin-bottom: 14px;
  line-height: 1.5;
  font-size: 10pt;
  position: relative;
  padding-left: 22px;
  background: linear-gradient(0deg, rgba(255,255,255,0.55), rgba(250,250,250,0.9));
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 4px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 10px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset;
  transition: background .2s ease, border-color .2s ease;
}

.terms-list > li::before {
  content: "✦";
  position: absolute;
  left: 8px;
  top: 10px;
  color: #c8aa00; /* même accent que la barre gauche */
  font-size: 12px;
}

.terms-list > li:hover {
  background: linear-gradient(0deg, rgba(255,255,255,0.75), rgba(250,250,250,0.95));
  border-color: rgba(0,0,0,0.12);
}

/* === En-tête d’un point (mise en valeur) === */
.term-head {
  display: block;
  font-weight: 800;
  color: #6f5c00;
  margin-bottom: 4px;
  letter-spacing: .3px;
}

/* === Liste secondaire (sous-points) === */
.terms-sub {
  list-style: none;
  margin: 8px 0 0 10px;
  padding: 0;
}

.terms-sub li {
  font-size: 10pt;
  padding-left: 16px;
  position: relative;
  margin-bottom: 6px;
}

.terms-sub li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #6f5c00;
}

/* === Boîte Utilisateurs bannis – style clair d’alerte === */
.banned-box {
  margin-top: 26px;
  padding: 16px 18px;
  background: linear-gradient(0deg, rgba(255,255,255,0.6), rgba(252,232,232,0.9)), #fff;
  border: 1px solid rgba(220,20,60,0.35);
  border-left: 6px solid crimson; /* rappel de ton style .news-card avec barre gauche */
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.10);
  color: #333;
  font-family: inherit;
  font-size: 10pt;
}

/* === Titre de la section "bannis" === */
.banned-title {
  font-family: inherit;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 10px 0;
  color: crimson;
  text-shadow: 1px 1px 0 #f2caca;
  text-align: center;
}

/* === Texte d’information === */
.banned-info {
  font-size: 10pt;
  color: #555;
  margin-bottom: 12px;
  text-align: center;
}

/* === Liste des utilisateurs bannis (grille fluide) === */
.banned-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 8px;
}

.banned-list li {
  background: rgba(220,20,60,0.08);
  border: 1px solid rgba(220,20,60,0.25);
  border-radius: 4px;
  padding: 8px 10px;
  color: #5a000c;
  text-align: center;
  transition: background .2s ease, border-color .2s ease, transform .15s ease;
}

.banned-list li:hover {
  background: rgba(220,20,60,0.12);
  border-color: rgba(220,20,60,0.35);
  transform: translateY(-1px);
}

/* === Accessibilité focus visible === */
.terms-box:focus-within,
.banned-box:focus-within {
  outline: 2px solid rgba(0,0,0,0.2);
  outline-offset: 2px;
}

/* === Réactivité mobile légère === */
@media (max-width: 480px){
  .terms-box { padding: 18px; }
  .terms-title { font-size: 14px; }
  .banned-list { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
}
