
body {
    font-family: system-ui, sans-serif;
    background: #f5f6fa;
    color: #333;
    text-align: center;
    margin: 0;
    padding: 2em;
}

.card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    max-width: 400px;
    margin: auto;
    padding: 2em;
}

h2 { 
    color: #1E3A8A; 
}

h3, h5 {
    color:#d82c2e
}

img {
    width: 180px;
    margin-bottom: 1em;
}

ol {
    text-align: left;
    padding-left: 1.5em;
}

/* === FOOTER === */
footer {
  background: #333;
  padding: 20px 0 40px;
  text-align: center;
}

footer span { 
    color: #d82c2e; 
    font-size: 25px; 
    line-height: 35px; 
}

footer span:hover { 
    font-size: 27px; 
}

footer h5 { 
    color: #fff; 
    font-weight: normal; 
}

/* === BOUTONS TÉLÉCHARGEMENT (identiques à index.html) === */
.btn-download.btn-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #107983;
  background-color: #107983;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out,
              color 0.2s ease-in-out,
              border-color 0.2s ease-in-out,
              transform 0.15s ease-in-out;
}

/* Inversion des couleurs au survol */
.btn-download.btn-green:hover,
.btn-download.btn-green:focus-visible {
  background-color: #ffffff;
  color: #107983;
  border-color: #107983;
  transform: scale(1.03);
}

/* Bouton visible uniquement sur mobile + tablette */
@media (min-width: 992px) {
  .btn-mobile-only {
    display: none !important;
  }
}

/* Couleurs identiques à index.html */
.btn-green {
  background-color: #3DDC84;
  border-color: #3DDC84;
}
.btn-lightblue {
  background-color: #6A8DFF;
  border-color: #6A8DFF;
}
.btn-purple {
  background-color: #6A2D8D;
  border-color: #6A2D8D;
}

/* Hover (inversion) */
.btn-green:hover {
  color: #3DDC84;
  border-color: #3DDC84;
}
.btn-lightblue:hover {
  color: #6A8DFF;
  border-color: #6A8DFF;
}
.btn-purple:hover {
  color: #6A2D8D;
  border-color: #6A2D8D;
}

.apk-icon {
  font-size: 1.8rem;   /* augmente la taille ici */
  line-height: 1;
}

body {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}