/* Réinitialisation basique */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  width: 100%;
  overflow: hidden;
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #fff;
}

.container {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}

.header {
  position: fixed;
  top: 10px;
  width: 100%;
  text-align: center;
  font-size: 28px;
  color: #2196F3;
  z-index: 10;
  background-color: #000;
  padding: 10px 0;
}

.video-feed {
  margin-top: 60px;
}

.video-slide {
  height: 100vh;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  padding-bottom: 80px;
}

.video-player {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}

.video-title {
  position: relative;
  z-index: 1;
  font-size: 20px;
  text-align: center;
  background-color: rgba(0,0,0,0.6);
  padding: 5px 15px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.buttons {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
}

.buttons button {
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  background-color: #2196F3;
  color: white;
  font-weight: bold;
  cursor: pointer;
  font-size: 14px;
}

.buttons button:hover {
  background-color: #1976D2;
}
