* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "IBM Plex Mono", monospace;
  cursor: text;
}

*::selection {
  background-color: #00ffab;
  color: #2c3539;
}

body {
  background-color: #2c3539;
  color: #d3d3d3;
  font-size: 15px;
  font-weight: 300;
  padding-bottom: 120px; /* espace pour le footer */
}

@media (max-width: 600px) {
  body {
    padding-bottom: 160px; /* plus d'espace sur mobile */
  }
}

.main-container {
  height: fit-content;
  padding: 20px;
}

.ascii-name {
  color: #fbcb0a;
  font-size: 0.7vw;
  margin-top: 15px;
}

.message-text {
  font-size: 16px;
  font-weight: 300;
  margin: 20px 0;
}

.help-text {
  font-size: 17px;
  font-weight: 400;
  color: #00ffab;
}

.command-output {
  margin: 15px 0;
  padding-left: 20px;
}

.input-container {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.input-label {
  color: #fbcb0a;
}

.input-command {
  width: 100%;
  padding: 10px 0;
  border: none;
  outline: none;
  background-color: transparent;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  margin-left: 10px;
}

.input-text {
  color: #00ffab;
}

.command-not-found {
  font-size: 17px;
  color: #ff0032;
}

.data-dt {
  font-size: 17px;
  font-weight: 600;
  margin-top: 10px;
  text-transform: lowercase;
  color: #fbcb0a;
}
.data-dd {
  margin-top: 5px;
  margin-left: 20px;
}

.data-li {
  text-transform: capitalize;
  list-style-type: square;
  font-weight: 400;
}

.about-text {
  font-weight: 400;
}

.data-table {
  border-collapse: collapse;
  color: #fff;
}

.data-name-th {
  text-align: left;
  padding-bottom: 20px;
}

.data-description-td {
  padding-bottom: 20px;
  vertical-align: top;
  padding-left: 20px;
}

.data-link {
  text-decoration-style: solid;
  color: #fbcb0a;
  cursor: pointer;
}

#volumeControl {
  position: fixed;
  top: 15px;
  right: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 8px 14px;
  box-shadow: 0 4px 20px rgba(255, 204, 0, 0.2);
  max-width: 200px;
  user-select: none;
  transition: box-shadow 0.3s ease, background 0.3s ease;
  cursor: pointer;
  z-index: 1000;
}
#volumeControl:hover {
  box-shadow: 0 6px 30px rgba(255, 204, 0, 0.6);
  background: rgba(255, 255, 255, 0.15);
}

#volumeButton {
  background: none;
  border: none;
  font-size: 24px;
  color: #ffcc00;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}
#volumeButton:hover {
  transform: scale(1.15);
  color: #ffd633;
}

/* Slider style */
#volumeSlider {
  -webkit-appearance: none;
  appearance: none;
  width: 140px;
  height: 8px;
  border-radius: 40px;
  background: linear-gradient(90deg, #ffcc00 0%, #ffd633 100%);
  box-shadow: inset 0 0 8px rgba(255, 204, 0, 0.6);
  cursor: pointer;
  transition: background 0.3s ease;
}

/* Slider thumb */
#volumeSlider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px #ffcc00;
  border: 2px solid #ffcc00;
  cursor: pointer;
  transition: box-shadow 0.3s ease, background 0.3s ease, transform 0.2s ease;
  margin-top: -3px; /* centre le thumb */
}
#volumeSlider::-webkit-slider-thumb:hover {
  box-shadow: 0 0 15px #ffd633;
  background: #fffbcc;
  transform: scale(1.2);
}
#volumeSlider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #ffcc00;
  box-shadow: 0 0 8px #ffcc00;
  cursor: pointer;
  transition: box-shadow 0.3s ease, background 0.3s ease, transform 0.2s ease;
}
#volumeSlider::-moz-range-thumb:hover {
  box-shadow: 0 0 15px #ffd633;
  background: #fffbcc;
  transform: scale(1.2);
}

.site-footer {
  width: 100%;
  max-width: 800px;
  background-color: #121212;
  color: #aaa;
  text-align: center;
  padding: 15px 20px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.9rem;
  user-select: none;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.7);
  z-index: 9999;
  margin: 40px auto 0;
  border-radius: 8px;
}

.site-footer p {
  margin: 6px 0;
}

.footer-link {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover,
.footer-link:focus {
  color: #f1c40f; /* jaune doré */
  text-decoration: underline;
}

/* Reprend ta base + ajout style spécifique pour privacy page */

body.privacy-page {
  background-color: #2c3539;
  color: #d3d3d3;
  font-size: 15px;
  font-weight: 300;
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
}

.privacy-container {
  background-color: #1f292f; /* un peu plus sombre que body */
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px #00ffab44;
}

.privacy-container h1,
.privacy-container h2 {
  color: #fbcb0a;
  font-weight: 600;
  margin-bottom: 15px;
}

.privacy-container h1 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
}

.privacy-container h2 {
  font-size: 1.4rem;
  margin-top: 25px;
  border-bottom: 2px solid #00ffab;
  padding-bottom: 5px;
}

.privacy-container p {
  margin-bottom: 18px;
  color: #d3d3d3;
  font-weight: 300;
}

.privacy-container a {
  color: #00ffab;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease;
}

.privacy-container a:hover,
.privacy-container a:focus {
  border-bottom: 1px solid #00ffab;
  outline: none;
}

@media (max-width: 480px) {
  body.privacy-page {
    padding: 15px 10px;
    font-size: 14px;
  }
  .privacy-container {
    padding: 20px 20px;
  }
}

/* Footer sur la page privacy.html (et tu peux aussi le garder globalement) */
.site-footer {
  margin-top: 40px;
  padding: 15px 20px;
  background-color: #121212;
  color: #aaa;
  text-align: center;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.9rem;
  border-radius: 8px;
  box-shadow: 0 0 10px #00ffab44;
  user-select: none;
}

.site-footer p {
  margin: 6px 0;
}

.footer-link {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover,
.footer-link:focus {
  color: #f1c40f; /* jaune doré */
  text-decoration: underline;
}

#backButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  border: 2px solid #00ffab;
  color: #00ffab;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  user-select: none;
  margin: 30px auto 40px;
  display: block;
  box-shadow: 0 0 8px #00ffab88;
  text-decoration: none;
}

#backButton:hover,
#backButton:focus {
  background-color: #00ffab;
  color: #2c3539;
  box-shadow: 0 0 18px #00ffabcc;
  transform: scale(1.05);
  outline: none;
}

#backButton:active {
  transform: scale(0.98);
  box-shadow: 0 0 12px #00cc8fcc;
}
