/* mobile.css - Style optimisé pour mobile */

/* Global */
body {
  font-size: 14px;
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
}

/* Vidéo optimisée pour mobile */
.video-container {
  width: 95%;
  max-width: 600px;
  margin: 20px auto;
  padding: 5px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  box-shadow: 0px 0px 8px rgba(255, 255, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-container video {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.4);
}

/* Topbar */
.topbar {
  padding: 5px;
  display: flex;
  justify-content: center;
  gap: 5px;
}
.topbar a {
  font-size: 12px;
  text-decoration: none;
}

/* Titre */
.title {
  font-size: 30px;
  margin: 15px 0;
}

/* Navigation */
.navbar {
  flex-direction: column;
  padding: 5px;
  width: 100%;
}
.navbar a {
  font-size: 14px;
  margin: 3px 0;
}

/* Footer */
.footer {
  font-size: 10px;
  margin: 10px;
}
