/* 🌌 Palette surnaturelle */
:root {
  --color-bg-start: #0f0c29;
  --color-bg-mid: #302b63;
  --color-bg-end: #24243e;
  --color-accent: #ff00cc;
  --color-hover: #00ffff;
  --color-text: #ffffff;
  --font-main: 'Segoe UI', sans-serif;
}

/* 🔧 Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background: linear-gradient(135deg, var(--color-bg-start), var(--color-bg-mid), var(--color-bg-end));
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  /*background-color: #bO8460; /*fond doux beige*/
}*/

/* 🧠 Sections */
main {
  padding: 2rem;
}

section.hero {
  text-align: center;
  padding: 4rem 2rem;
  animation: fadeIn 1.5s ease-in-out;
}

section.hero h2 {
  font-size: 2.5rem;
  color: var(--color-accent);
  text-shadow: 0 0 10px var(--color-accent);
}

section.hero p {
  font-size: 1.2rem;
  margin-top: 1rem;
}

/* ✨ Animation de base */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ================================
   LIGNE DE SECTIONS
================================ */
.info-row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 2rem;
  padding: 2rem;
  max-width: 1000px;
  margin: 2rem auto;
  flex-wrap: wrap;
}

/* ================================
   BOÎTES RECTANGULAIRES
================================ */
.info-box {
  flex: 1;
  padding: 1.5rem;
  border-radius: 12px;
  color: #fff;
  text-align: center;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
  animation: fadeSlideUp 0.8s ease forwards;
  opacity: 0;
}

/* Apparition en cascade */
.info-box:nth-child(1) { animation-delay: 0.2s; }
.info-box:nth-child(2) { animation-delay: 0.4s; }
.info-box:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================
   COULEURS DE FOND UNIQUES
================================ */
.box-about {
  background-color: #0072ff; /*bleu */
}

.box-rules {
  background-color: #00c853; /* vert */
}

.box-terms {
  background-color: #ff6f00; /* orange */
}

/* ================================
   CONTENU
================================ */
.info-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.info-box h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.info-box p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* ================================
   LIEN INTERACTIF
================================ */
.info-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: rgba(255,255,255,0.2);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.info-link:hover {
  background-color: rgba(255,255,255,0.4);
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .info-row {
    flex-direction: column;
    align-items: center;
  }

  .info-box {
    max-width: 90%;
  }
}

/* ================================
   SECTION QUI SOMMES-NOUS
================================ */
.about-section {
  background-color: #0072ff; /*bleu */ /* #f5f0eb; fond doux beige */
  color: #fff; /*#3b2f2f;  texte brun foncé adapté */
  padding: 2rem;
  margin: 3rem auto;
  max-width: 1300px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

/* Espacement par rapport au header/nav */
.about-section {
  margin-top: 40px;
  margin-left: 20px;
  margin-right: 20px;
}

/* TITRES */
.about-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff; /*#714329;  couleur accent */
}

/* PARAGRAPHES */
.about-section p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* LISTE */
.about-section ul {
  padding-left: 1.2rem;
  margin-bottom: 1.5rem;
}

.about-section li {
  margin-bottom: 0.8rem;
}

/* IMAGE */
.inscription-row {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.image-block {
  text-align: center;
  max-width: 100%;
}

.caption {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: #555;
}

.inscription-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* LIENS */
.about-section a {
  color: #0072ff;
  text-decoration: none;
  font-weight: bold;
}

.about-section a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-section {
    padding: 1rem;
    margin: 2rem 1rem;
  }

  .about-section h2 {
    font-size: 1.3rem;
    justify-content: center;
  }

  .about-section p,
  .about-section li {
    font-size: 0.95rem;
  }
}



/* ================================
   SECTION TERMES ET CONDITIONS
================================ */
.terms-section {
  background-color: #eae7e2 ; /* fond doux beige-gris */
  color: #3b2f2f; /* texte brun foncé adapté */
  padding: 2rem;
  margin: 3rem auto;
  max-width: 1200px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  animation: fadeSlideUp 1s ease forwards;
  opacity: 0;
}

/* Animation d’apparition */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* TITRES */
.terms-section h1 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #714329;
}

.terms-section h3 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: #5a3c2e;
}

/* TEXTE */
.terms-section p {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* LISTES */
.terms-section ul {
  padding-left: 1.2rem;
  margin-bottom: 1.5rem;
}

.terms-section li {
  margin-bottom: 0.5rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .terms-section {
    padding: 1rem;
    margin: 2rem 1rem;
  }

  .terms-section h1 {
    font-size: 1.5rem;
  }

  .terms-section h3 {
    font-size: 1.1rem;
  }

  .terms-section p,
  .terms-section li {
    font-size: 1rem;
  }
}


/* ================================
   SECTION UMURWIZA
================================ */
.umurwiza-section {
  background-color: #f4f9ff; /* fond bleu très clair */
  color: #2c3e50; /* texte foncé lisible */
  padding: 3rem 2rem;
  margin: 3rem auto;
  max-width: 900px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  text-align: center;
  animation: fadeSlideUp 1s ease forwards;
  opacity: 0;
}

/* Animation d’apparition */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* TITRE */
.umurwiza-title {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #0072ff;
}

/* LOGO CLIQUABLE */
.umurwiza-logo {
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.umurwiza-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.umurwiza-logo:hover {
  transform: scale(1.05);
}

/* COMING SOON BLOCS */
.coming-soon-group h1 {
  font-size: 1.8rem;
  margin: 2rem 0;
  color: #714329;
  text-shadow: 0 0 5px rgba(255, 165, 0, 0.3);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .umurwiza-section {
    padding: 2rem 1rem;
  }

  .umurwiza-title {
    font-size: 1.2rem;
  }

  .umurwiza-logo {
    width: 150px;
    height: 150px;
  }

  .coming-soon-group h1 {
    font-size: 1.5rem;
  }
}


    /* ================================
   SECTION UMURWIZA E-MONEY REGLES DE JEU
================================ */
.umurwiza-container {
  background-color: #fdf7f2; /* fond doux beige rosé */
  color: #3b2f2f; /* texte brun foncé lisible */
  padding: 2.5rem;
  margin: 3rem auto;
  max-width: 1300px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  animation: fadeSlideUp 1s ease forwards;
  opacity: 0;
}

/* Animation d’apparition */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* TITRES */
.umurwiza-container h1,
.umurwiza-container h2,
.umurwiza-container h3 {
  color: #714329;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.umurwiza-title {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #0072ff;
}

/* IMAGE LOGO */
.umurwiza-logo {
  width: 220px;
  height: 220px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.umurwiza-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.umurwiza-logo:hover {
  transform: scale(1.05);
}

/* PARAGRAPHES ET LISTES */
.umurwiza-container p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.umurwiza-container ul {
  padding-left: 1.2rem;
  margin-bottom: 1.5rem;
}

.umurwiza-container li {
  margin-bottom: 0.5rem;
}

/* TABLEAU DE GAINS */
.gain-table-section {
  margin-top: 2rem;
}

.table-wrapper {
  overflow-x: auto;
}

.gain-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.gain-table th,
.gain-table td {
  border: 1px solid #ddd;
  padding: 0.75rem;
  text-align: center;
  font-size: 0.95rem;
}

  .gain-table th {
  background-color: #b08463;
  color:#fff;
}

.gain-table td {
 color: black; 
}

.highlight-invites {
  background-color: #fce8d5;
  font-weight: bold;
}

.highlight-net {
  background-color: #d0b9a7;
  font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .umurwiza-container {
    padding: 1.5rem;
    margin: 2rem 1rem;
  }

  .umurwiza-title {
    font-size: 1.2rem;
  }

  .umurwiza-logo {
    width: 180px;
    height: 180px;
  }

  .gain-table th,
  .gain-table td {
    font-size: 0.85rem;
    padding: 0.5rem;
  }
}
/* ================================
   SECTION INSCRIPTION & RÈGLES
================================ */
.registration-form,
.inscription-row {
  background-color: #f9f5f2;
  padding: 2rem;
  margin: 2rem auto;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0,0,0,0.05);
  max-width: 900px;
  animation: fadeSlideUp 0.8s ease forwards;
  opacity: 0;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* TITRES */
.registration-form h2,
.registration-form h3,
.inscription-row h3 {
  color: #6b3e2e;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

/* FORMULAIRE */
.registration-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.registration-form label {
  font-weight: bold;
  margin-bottom: 0.3rem;
  color: #4a2c1f;
}

.registration-form input[type="text"],
.registration-form input[type="email"],
.registration-form input[type="tel"],
.registration-form input[type="date"],
.registration-form input[type="password"] {
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
}

.registration-form input:focus {
  border-color: #a86e4a;
  outline: none;
  box-shadow: 0 0 5px rgba(168, 110, 74, 0.3);
}

.registration-form .checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.registration-form button[type="submit"] {
  background-color: #a86e4a;
  color: white;
  padding: 0.8rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.registration-form button:hover {
  background-color: #8c5a3a;
}

/* IMAGE BLOCKS */
.image-block {
  text-align: center;
  margin-top: 1rem;
}

.image-block .caption {
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #5a3a2e;
}

.inscription-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.inscription-img:hover {
  transform: scale(1.02);
}

/* LIENS */
.anchor-link {
  color: #0072ff;
  text-decoration: underline;
}

.anchor-link:hover {
  color: #0056b3;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .registration-form,
  .inscription-row {
    padding: 1.5rem;
    margin: 1.5rem 1rem;
  }

  .registration-form input,
  .registration-form button {
    font-size: 0.95rem;
  }

  .registration-form label {
    font-size: 0.95rem;
  }
}
 







     
 