/* footer.css */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #1a1a1a;
  background-image: linear-gradient(to right, #0a0a0a, #1a1a1a);
  color: #ff1a1a;
  padding: 2px 6px;
  text-align: center;
  box-shadow: 0 -1px 2px rgba(255,26,26,0.2);
  z-index: 1000;
  font-family: Arial, sans-serif;
  font-size: 8px;
  line-height: 1.1;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Tablette */
@media screen and (min-width: 768px) {
  footer {
    padding: 3px 8px;
    font-size: 10px;
  }
}

/* Desktop */
@media screen and (min-width: 1200px) {
  footer {
    padding: 4px 10px;
    font-size: 13px;
  }
}