/* === 1. Structure générale === */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #fafafa;
  margin: 0;
  padding: 0;
  color: #222;
}

/* === 2. Header/Menu principal === */
.header {
  background: #ee1d52;
  color: #fff;
  margin: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 18px;
  height: 62px;
}
.logo {
  font-size: 1.25em;
  font-weight: bold;
  letter-spacing: 1px;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.logo svg {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  max-width: 24px;
  max-height: 24px;
  
}
.nav-links {
  display: flex;
  gap: 26px;
}
.nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 1.07em;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.18s;
}
.nav-link:hover,
.nav-link.active {
  border-bottom: 2px solid #fff;
}

/* === 3. Bloc principal/page (.container) === */
.container {
  max-width: 900px;
  margin: 32px auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  padding: 28px 18px 34px 18px;
  text-align: center;
}
h1 {
  color: #ee1d52;
  font-size: 1.5em;
  margin-bottom: 18px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: bold;
}
h2 {
  color: #333;
  font-size: 1.12em;
  margin: 22px 0 12px 0;
  text-align: center;
}

/* === 4. Profil/TikTok Bloc === */
.profile-pic {
  display: block;
  margin: 0 auto 12px auto;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ee1d52;
  background: #fff;
}
.username {
  font-size: 1.15em;
  color: #ee1d52;
  font-weight: bold;
  margin-bottom: 12px;
  display: block;
  text-decoration: none;
}
.tiktok-link {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  text-decoration: none;
  color: #222;
  font-size: 1.12em;
  font-weight: bold;
}
.tiktok-link span {
  color: #ee1d52;
  margin-right: 5px;
  font-size: 1.13em;
}

/* === 5. Description/Bio Bloc === */
.desc {
  font-size: 1.10em;
  margin-bottom: 22px;
  color: #444;
  line-height: 1.6;
}

/* === 6. Bouton/action modo === */
.accept-btn {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 22px auto 0 auto;
  padding: 16px 0;
  background: #ee1d52;
  color: #fff;
  font-size: 1.13em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s;
}
.accept-btn:hover,
.accept-btn:active {
  background: #c91844;
}
.note {
  font-size: 0.98em;
  color: #888;
  margin-top: 30px;
  text-align: center;
}

/* === 7. Liens réseaux sociaux (boutons icône) === */
.social-list {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 0 auto 24px auto;
  max-width: 400px;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fafafa;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 1.07em;
  font-weight: 500;
  color: #222;
  text-decoration: none;
  transition: background 0.18s;
  box-shadow: 0 1px 4px rgba(238,29,82,0.06);
  min-width: 110px;
}
.social-link:hover,
.social-link:active {
  background: #fbe5ec;
  color: #ee1d52;
}
.social-icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
}

/* === 8. Bloc vidéos (index) === */
.videos-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.video-container {
  flex: 1 1 32%;
  max-width: 32%;
  min-width: 280px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  background: #f9f9f9;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
blockquote.tiktok-embed {
  margin: 0 auto;
  width: 100% !important;
}

/* Pour TikTok, Insta, YouTube iframe */
iframe,
.tiktok-embed {
  width: 100% !important;
  min-width: 260px;
  max-width: 370px;
  height: 480px !important;
  border-radius: 12px;
  border: none;
  display: block;
  margin: 0 auto;
}
.tiktok-warning {
  color: #ee1d52;
  font-size: 1em;
  margin-top: 8px;
  margin-bottom: 0;
  line-height: 1.4;
}
.tiktok-warning a {
  color: #25F4EE;
  text-decoration: underline;
}

/* === 9. Widget TikFinity / Classement Donateurs === */
.widget-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 12px auto;
  min-height: 500px;
  background: #fafafa;
}

/* === 10. Listes et règles modo === */
ul {
  text-align: left;
  margin: 0 auto 18px auto;
  max-width: 520px;
  padding-left: 25px;
}
ul li {
  margin-bottom: 11px;
  font-size: 1em;
  line-height: 1.6;
}

/* === 11. Titres et icônes TikTok (dans le contenu) === */
.tiktok-icon {
  width: 24px;
  height: 24px;
  margin-right: 6px;
  vertical-align: middle;
}

/* === 12. Pied de page harmonisé === */
.footer-custom {
  background: #fff;
  border-top: 1px solid #eee;
  color: #888;
  font-size: 1.01em;
  text-align: center;
  margin-top: 44px;
  padding: 24px 0 18px 0;
}
.footer-content {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.footer-links {
  margin-bottom: 7px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.footer-links a {
  color: #ee1d52;
  text-decoration: none;
  font-weight: 500;
  font-size: 1em;
  transition: color 0.18s;
}
.footer-links a:hover { color: #25F4EE; }
.footer-legal {
  margin-bottom: 2px;
  font-size: 0.98em;
  color: #888;
}
.footer-legal a {
  color: #ee1d52;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.18s;
}
.footer-legal a:hover { color: #25F4EE; }
.footer-social {
  margin-top: 7px;
  display: flex;
  gap: 14px;
  justify-content: center;
}
.footer-social a { opacity: 0.8; transition: opacity 0.18s;}
.footer-social a:hover { opacity: 1; }

/* === 13. Responsive/mobile === */
@media (max-width: 1100px) {
  .container {
    max-width: 99vw;
    margin: 10px auto;
    padding: 14px 2vw 22px 2vw;
    border-radius: 0;
    box-shadow: none;
  }
  .profile-pic {
    width: 60px;
    height: 60px;
  }
  .social-link {
    font-size: 1em;
    padding: 10px 0;
    min-width: 90px;
  }
  .videos-row {
    gap: 12px;
  }
  .video-container {
    max-width: 100%;
    flex: 1 1 100%;
    margin-bottom: 16px;
  }
  iframe, .tiktok-embed {
    min-width: 98vw;
    max-width: 99vw;
    height: 340px !important;
  }
  .logo svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    max-width: 20px;
    max-height: 20px;
  }
  h1, .tiktok-icon {
    font-size: 1.1em;
    gap: 6px;
  }
}
@media (max-width: 700px) {
  .nav-container {
    flex-direction: column;
    height: auto;
    padding: 10px 4vw;
    gap: 8px;
  }
  .nav-links {
    gap: 12px;
  }
  .videos-row {
    flex-direction: column;
    gap: 16px;
  }
  .video-container {
    max-width: 100%;
    min-width: 0;
  }
  iframe, .tiktok-embed {
    width: 100% !important;
    min-width: 0;
    max-width: 100vw;
    height: 280px !important;
  }
  .logo svg, .tiktok-icon {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    max-width: 18px;
    max-height: 18px;
  }
  h1 {
    font-size: 1em;
    gap: 4px;
  }
  .footer-content {
    padding: 0 6vw;
    font-size: 0.97em;
    gap: 8px;
  }
  .footer-links { flex-direction: column; gap: 6px; }
  .footer-social { gap: 8px; }
}