/* Styles généraux */
body {
    font-family: Arial, sans-serif;
    background-color: #1a1d24;
    color: white;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Section des prix crypto */
.crypto-prices {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px;
    background-color: #1a1d24;
}

.crypto {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: bold;
}

.crypto-icon {
    width: 24px;
    height: 24px;
}

/* Conteneur principal */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* Image principale */
.image-section img {
    width: 100%;
    border-radius: 10px;
}

/* Icônes des réseaux sociaux */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
}

.social-icons img {
    width: 32px;
    height: 32px;
}

/* Avertissement */
.warning {
    font-size: 25px;
    color: #bbb;
    padding: 10px;
}

/* Bannières */
  .casino-card {
      max-width: 700px;
      margin: 20px auto;
      border-radius: 20px;
      padding: 25px 20px;
      text-align: center;
      color: white;
      position: relative;
      box-shadow: 0 0 15px rgba(0,0,0,0.4);
      transition: transform 0.2s ease;
    }

    .casino-card:hover {
      transform: translateY(-5px);
    }

    .partyspins {
      background: linear-gradient(135deg, #7b2ff7, #f107a3);
    }

    .duelbits {
      background: linear-gradient(135deg, #0f9b0f, #000000);
    }

    .coming-soon {
      background: #2b2f36;
      color: #666;
      border: 2px dashed #444;
    }

    .casino-card h2 {
      margin: 10px 0 5px;
      font-size: 22px;
    }

    .casino-card .offer {
      font-size: 14px;
      margin-bottom: 15px;
      color: #f0f0f0;
    }

    .casino-card a {
      display: inline-block;
      background: #fff;
      color: #000;
      border-radius: 10px;
      padding: 12px 24px;
      font-weight: bold;
      text-decoration: none;
      font-size: 14px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
      transition: background 0.3s ease;
    }

    .casino-card a:hover {
      background: #e2e2e2;
    }

/* Bouton "Visite le site" */
.visit-button {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background-color: rgba(53, 193, 107);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.visit-button:hover {
    background-color: rgba(0, 200, 0, 1);
}

/* Section Aide */
.help {
    margin-top: 20px;
    font-size: 14px;
}

.help a {
    color: #00b4d8;
    text-decoration: none;
}

.help a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .banner {
        max-width: 100%;
    }

    .visit-button {
        font-size: 12px;
        padding: 8px 16px;
    }
}
