/* ===========================
   FLEMMIX - Feuille de styles
   =========================== */

body {
  font-family: Arial, sans-serif;
  background-color: #0d0d0d;
  color: #fff;
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
}

body::selection {
  background: transparent;
  color: inherit;
}

body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
  -webkit-tap-highlight-color: transparent;
}

/* Barre d'alerte */
.alert-bar {
  background: #dc2626;
  color: #fff;
  padding: 10px;
  font-weight: bold;
}

/* Header & Footer */
.header,
.footer {
  background: #181818;
  padding: 15px;
}

.logo {
  font-size: 2.2em;
  font-weight: bold;
  color: #dc2626;
}

/* Contenu principal */
.main-content {
  padding: 40px 15px;
}

.main-content h1,
.main-content h2 {
  color: #dc2626;
}

/* Bouton principal */
.custom-button {
  background-color: #dc2626;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1em;
  animation: pulse 2s infinite;
}

.custom-button:hover {
  background-color: #a51c1c;
}

a {
  color: #dc2626;
  text-decoration: none;
}

/* Boîtes de contenu */
.content-box {
  background-color: #181818;
  padding: 22px;
  margin: 25px auto;
  border-radius: 8px;
  max-width: 750px;
  line-height: 1.7;
  font-size: 1.05em;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

.content-box:hover {
  transform: scale(1.01);
}

/* Telegram */
.telegram-icon {
  width: 32px;
  height: 32px;
  margin-top: 10px;
}

.telegram-wrapper {
  margin-top: 10px;
}

/* Images de tendances */
.trend-images {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 15px;
}

.trend-images img {
  border-radius: 10px;
  width: 120px;
}

/* Barre de recherche */
input.search-bar {
  padding: 10px;
  border-radius: 6px;
  border: none;
  width: 80%;
  max-width: 400px;
  margin: 20px auto;
  display: block;
}

/* Lien clignotant jaune */
.blink-link {
  color: yellow;
  font-weight: bold;
  animation: blink 1s infinite;
}

/* Animations */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.05); }
}

@keyframes blink {
  50% { opacity: 0.2; }
}