/* Style global */
body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f4f6f9;
  color: #333;
  margin: 0;
  padding: 0;
}

/* Carte principale */
.card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin: 2rem auto;
  max-width: 700px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeIn 1s ease-in-out;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.league {
  font-weight: bold;
  color: #1a73e8;
  margin-bottom: 0.5rem;
}

.teams {
  display: flex;
  justify-content: space-around;
  margin: 1rem 0;
}
.team {
  text-align: center;
}
.team img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid #1a73e8;
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease;
}
.team img:hover {
  transform: scale(1.1);
}
.team span {
  font-weight: bold;
  color: #444;
}

/* Bouton Melbet */
.btn-melbet {
  display: inline-block;
  background: #ff9800;
  color: #fff;
  padding: 0.8rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
}
.btn-melbet:hover {
  background: #e68900;
  transform: scale(1.05);
}

/* Animations fade-in */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Sections */
section {
  margin-top: 2rem;
}
section h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #444;
  border-left: 4px solid #1a73e8;
  padding-left: 0.5rem;
}

/* Probabilités avec animation alternée */
.probabilities ul {
  list-style: none;
  padding: 0;
}
.probabilities li {
  background: #e8f0fe;
  margin: 0.3rem 0;
  padding: 0.5rem;
  border-radius: 4px;
  opacity: 0;
  animation: slideInLeft 0.6s forwards;
}
.probabilities li:nth-child(2) {
  animation: slideInRight 0.6s forwards;
  animation-delay: 0.3s;
}
.probabilities li:nth-child(3) {
  animation: slideInLeft 0.6s forwards;
  animation-delay: 0.6s;
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

.probabilities li:hover {
  transform: scale(1.05);
  background: #d2e3fc;
  transition: transform 0.3s ease, background 0.3s ease;
}

/* Pronostic principal */
.main-prediction p strong {
  font-size: 1.2rem;
  color: #d93025;
  animation: fadeIn 1.5s ease-in-out;
}

/* Conseil de pari */
.bet-advice p {
  font-weight: bold;
  background: #fff3cd;
  padding: 1rem;
  border-radius: 6px;
  border: 1px solid #ffeeba;
  transition: background 0.3s ease;
}
.bet-advice p:hover {
  background: #ffe08a;
}

/* ðÂÂ± Responsive design */
@media (max-width: 768px) {
  .card {
    padding: 1rem;
    margin: 1rem;
  }
  .teams {
    flex-direction: column;
    align-items: center;
  }
  .team {
    margin-bottom: 1rem;
  }
  .team img {
    width: 60px;
    height: 60px;
  }
  section h2 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  article h1 {
    font-size: 1.5rem;
    text-align: center;
  }
  .btn-melbet {
    display: block;
    text-align: center;
    width: 100%;
    margin-top: 1rem;
  }
  .team img {
    width: 50px;
    height: 50px;
  }
}
.social-section {
      text-align: center;
      padding: 40px 20px;
      background: #fff;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    .social-section h2 {
      font-size: 24px;
      margin-bottom: 15px;
      color: #333;
    }
    .social-links {
      display: flex;
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
    }
    .social-links a {
      text-decoration: none;
      color: #fff;
      font-size: 16px;
      padding: 12px 18px;
      border-radius: 8px;
      transition: transform 0.2s ease, opacity 0.2s ease;
      display: flex;
      align-items: center;
      gap: 8px;
      min-width: 160px;
      justify-content: center;
    }
    .social-links a:hover {
      transform: scale(1.05);
      opacity: 0.9;
    }
    .telegram { background: #0088cc; }
    .whatsapp { background: #25D366; }
    .facebook { background: #1877f2; }


    /* âÂÂÂÂÂÂÂÂÂÂÂÂÂÂ Responsive mobile */
    @media (max-width: 760px) {
      .social-links {
        flex-direction: column;
        align-items: center;
      }
      .social-links a {
        width: 100%;
        max-width: 280px;
        font-size: 15px;
      }
    }
    .promo {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px 25px;
    text-align: center;
    border-radius: 25px;
    background: linear-gradient(135deg, rgba(30,41,59,0.95), rgba(2,6,23,0.95));
    backdrop-filter: blur(12px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

/* EFFET LUMIï¿½RE */
.promo::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(34,197,94,0.15), transparent 60%);
    top: -50%;
    left: -50%;
    animation: glowMove 10s linear infinite;
}

@keyframes glowMove {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* CONTENU AU DESSUS */
.promo * {
    position: relative;
    z-index: 2;
}

/* TITRE PRINCIPAL */
.promo h1 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #ffffff;
}

/* TITRE CODE */
.promo h2 {
    font-size: 22px;
    color: #facc15;
    margin-bottom: 10px;
}

/* CODE */
.promo .code {
    font-size: 48px;
    font-weight: bold;
    color: #22c55e;
    margin: 20px 0;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(34,197,94,0.8);
    animation: pulse 2s infinite;
}

/* ANIMATION CODE */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

/* TEXTE */
.promo p {
    font-size: 16px;
    color: #e2e8f0;
    margin-top:21px;
    margin-bottom: 15px;
    line-height: 1.7;
    text-align:justify;
    hyphens:auto;
}


/* BOUTON */
.btn {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(90deg, #22c55e, #3b82f6);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    transform: scale(1.05);
}
.btn-secondary {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 25px;
    background: rgba(30,41,59,0.8);
    color: #facc15;
    border: 2px solid #facc15;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

/* HOVER */
.btn-secondary:hover {
    background: #facc15;
    color: #020617;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(250,204,21,0.6);
}
/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    font-size: 13px;
    background: rgba(2, 6, 23, 0.9);
}
.faq {
    padding: 40px 20px;
    background: #111;
    color: #fff;
}

.faq h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #00ffcc;
}

.faq-item {
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    background: #1a1a1a;
}

.faq-question {
    width: 100%;
    padding: 15px;
    text-align: left;
    background: #222;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.faq-question:hover {
    background: #00ffcc;
    color: #000;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #333;
    padding: 0 15px;
}

.faq-answer p {
    margin: 10px 0;
}



