/* --- RESET SIMPLE --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

body {
  background: #121212;
  color: #fff;
  line-height: 1.5;
  padding: 20px;
}

/* --- MENU --- */
nav {
  margin-bottom: 20px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: #ff5555;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a:hover {
  text-decoration: underline;
}

/* --- TITRES --- */
h1, h2 {
  margin-bottom: 10px;
}

/* --- GRILLE VIDÉO --- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.video-item {
  background: #1e1e1e;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.2s;
}

.video-item:hover {
  transform: scale(1.03);
}

.video-item img {
  max-width: 100%;
  border-radius: 5px;
  margin-bottom: 8px;
}

.video-item h2 {
  font-size: 16px;
  margin-bottom: 5px;
}

/* --- LIEN AFFILIÉ --- */
a.affiliatelink {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 12px;
  background: #ff5555;
  color: #fff !important;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

a.affiliatelink:hover {
  background: #ff2222;
}

/* --- VIDÉO PAGE --- */
video {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}
