/* ---- Base ---- */
:root {
  --accent: #ffb300;
  --bg: #0c0c0c;
  --text: #f5f5f5;
  --muted: #b3b3b3;
  --link: #00bcd4;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  background: linear-gradient(180deg, #0c0c0c 0%, #1a1a1a 100%);
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  padding: 40px 20px;
}

header {
  text-align: center;
  margin-bottom: 40px;
  animation: fadeIn 1s ease;
}

header img {
  width: 90px;
  height: 90px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 8px #ffb300);
  animation: spin 3s linear infinite;
}

h1 {
  font-size: 2.2em;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

h2 {
  color: var(--accent);
  font-size: 1.1em;
  margin-bottom: 30px;
  font-weight: 400;
}

/* ---- Boutons ---- */
.download {
  display: block;
  margin: 15px auto;
  padding: 14px 22px;
  width: fit-content;
  text-decoration: none;
  color: var(--link);
  border: 2px solid var(--link);
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.25s ease;
  min-width: 300px;
}

.download:hover {
  background: var(--link);
  color: #000;
  transform: scale(1.05);
}

/* ---- Buy Me a Coffee ---- */
.buymeacoffee-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #FFDD00 0%, #FFB800 100%);
  border: 2px solid #FFDD00;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 221, 0, 0.3);
}

.buymeacoffee-btn:hover {
  background: linear-gradient(135deg, #FFB800 0%, #FF9500 100%);
  border-color: #FFB800;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 221, 0, 0.5);
  color: #fff;
}

/* ---- Section Info ---- */
.section {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 600px;
  margin: 30px auto;
  text-align: center;
  line-height: 1.6em;
  font-size: 1em;
  color: var(--muted);
}
.lower-section {
    flex-direction: column
}
.wrap {
    display: flex;
    gap: 1rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 5%;
    width: 100%
}

footer {
  margin-top: 50px;
  font-size: 0.9em;
  color: var(--muted);
  text-align: center;
}

footer a {
  color: var(--link);
  text-decoration: none;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ---- Responsive ---- */
@media (max-width: 600px) {
  h1 { font-size: 1.8em; }
  .download { width: 80%; }
  .buymeacoffee-btn {
    font-size: 0.9em;
    padding: 10px 20px;
  }
}

