    :root {
      --bg: #f6f7f8;
      --card: #ffffff;
      --text: #1f1f1f;
      --muted: #6b7280;
      --green: #66d19e;
      --green-dark: #45b983;
      --line: #1f1720;
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      font-family: Arial, Helvetica, sans-serif;
      background: linear-gradient(180deg, #f8f8f8 0%, #eef3f1 100%);
      color: var(--text);
    }

    .card {
      width: 100%;
      max-width: 460px;
      background: var(--card);
      border: 3px solid var(--line);
      border-radius: 28px;
      padding: 34px 26px;
      text-align: center;
      box-shadow: 0 14px 40px rgba(0,0,0,0.08);
    }

    .logo {
      width: 150px;
      max-width: 45vw;
      height: auto;
      display: block;
      margin: 0 auto 16px;
    }

    h1 {
      margin: 0;
      font-size: 2rem;
      line-height: 1.1;
      letter-spacing: -0.02em;
    }

    .down {
      margin: 8px;
      font-size: 1.35rem;
      font-weight: bold;
      line-height: 1.1;
      letter-spacing: -0.02em;
    }

    .down-title {
      margin: 0;
      text-align: center;
      font-size: 1.25rem;
    }

    .last-title {
      margin: 2px;
      font-style: italic;
      text-align: center;
      font-size: 1.3rem;
    }

    p.btn-down{
      margin: 10px;
      padding: 0;
    }

    .subtitleindex {
      margin: 12px 0 28px;
      color: var(--muted);
      line-height: 1.2;
    }

    .subtitle {
      margin: 12px 0 28px;
      color: var(--muted);
      font-size: 1.0rem;
      line-height: 1.2;
    }

    .apk-btn {
      display: inline-block;
      width: 100%;
      padding: 16px 22px;
      border-radius: 18px;
      background: var(--green);
      color: #111;
      text-decoration: none;
      font-size: 1.05rem;
      border: 3px solid var(--line);
      box-shadow: 0 6px 0 rgba(0,0,0,0.12);
      transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    }

    .apk-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 0 rgba(0,0,0,0.10);
      background: var(--green-dark);
    }

    .apk-btn:active {
      transform: translateY(1px);
      box-shadow: 0 4px 0 rgba(0,0,0,0.10);
    }

    .note {
      margin-top: 18px;
      font-size: 0.92rem;
      color: var(--muted);
    }

    .stats {
      margin: 22px 0 18px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .stat-box {
      background: #faf7f2;
      border: 2px solid rgba(31, 23, 32, 0.12);
      border-radius: 18px;
      padding: 16px 10px;
      text-align: center;
    }

    .stat-label {
      display: block;
      font-size: 0.78rem;
      font-weight: 700;
      color: #7b7b7b;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin-bottom: 8px;
    }

    .stat-value {
      font-size: 2rem;
      font-weight: 800;
      color: var(--text);
      line-height: 1;
    }

    .langs-wrap {
      margin-top: 22px;
      text-align: left;
      background: #faf7f2;
      border: 2px solid rgba(31, 23, 32, 0.12);
      border-radius: 22px;
      padding: 18px 16px 14px;
    }

    .langs-title {
      margin: 0 0 12px;
      text-align: center;
      font-size: 0.95rem;
      font-weight: 800;
      color: #666;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .langs-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 10px;
    }

    .lang-chip {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 72px;
      background: #ece8e2;
      border: 2px solid #d8d2ca;
      border-radius: 18px;
      font-weight: 700;
      color: #666;
      font-size: 0.95rem;
      text-align: center;
      line-height: 1.1;
    }

    .lang-chip span {
      font-size: 1.45rem;
      margin-bottom: 6px;
    }

    .lang-chip span img.emoji {
      width: 1.45rem;
      height: 1.45rem;
      margin-bottom: 6px;
      vertical-align: middle;
    }
	
	.apps-page {
		position: relative;
		z-index: 2;
	}

  .version {
		display: block;
      margin-top: 26px;
      margin-bottom: 0;
      font-size: 1rem;
      color: #8a8f98;
  }
	
  .retour {
      display: block;
      margin-top: 10px;
      text-align: center;
  }

  .app-back {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 14px;
    background: #e9e7e2;
    color: #333;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid #1f1720;
    box-shadow: 0 4px 0 rgba(0,0,0,0.12);
    transition: all 0.15s ease;
  }

.app-back:hover {
  background: #dcd9d2;
  transform: translateY(-1px);
}

.app-back:active {
  transform: translateY(1px);
  box-shadow: 0 2px 0 rgba(0,0,0,0.12);
}

.ico {
  font-size: 10px; /* taille icône */
}

    @media (max-width: 560px) {
      .card {
        padding: 28px 18px;
        border-radius: 24px;
      }

      .langs-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .apk-langs {
  margin: 24px auto;
  max-width: 520px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 22px;
  padding: 14px;
}

.apk-langs-btn {
  width: 100%;
  border: 0;
  border-radius: 16px;
  padding: 14px 18px;
  background: rgba(0,0,0,.08);
  color: #222;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.apk-langs-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.apk-langs-icon {
  font-size: 28px !important;
  line-height: 1;
}

.apk-langs-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 8px !important;

  max-height: 0;
  opacity: 0;
  margin-top: 0;
  overflow: hidden;

  transition: max-height .35s ease, opacity .25s ease, margin-top .25s ease;
}

.apk-langs-grid.open {
  max-height: 800px;
  opacity: 1;
  margin-top: 14px;
}

.apk-lang-chip {
  width: auto !important;
  height: 48px !important;
  padding: 0 !important;

  border-radius: 12px !important;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(0,0,0,.10);

  display: flex !important;
  flex-direction: column !important;
  align-items: center;
  justify-content: center;

  gap: 4px;
  font-size: 13px;
  line-height: 1;
}

.apk-lang-chip span {
  font-size: 28px !important;
  line-height: 1 !important;
  margin: 0 !important;
}

.apk-lang-chip b {
  display: block;
  font-size: 12px;
  color: #555;
  line-height: 1;
}

.apk-langs-btn img.emoji {
  width: 28px !important;
  height: 28px !important;
}

.apk-lang-chip img.emoji {
  width: 30px !important;
  height: 22px !important;
  object-fit: cover !important;
  border-radius: 4px !important;
}

.apk-lang-chip span {
  height: 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}