* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Press Start 2P', monospace;
}

body {
  background-color: #FFE2B5; /* fond plus clair */
  color: #333;
  padding: 20px;
}

.show-row {
  margin-bottom: 50px;
}

.row-title {
  margin-bottom: 15px;
  font-size: 20px;
  color: #9A4F2E; /* couleur plus douce */
}

.row-container {
  width: 100%;
}

.row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  scrollbar-gutter: stable;
}

.row::-webkit-scrollbar {
  height: 5px;
}

.row::-webkit-scrollbar-track {
  background: #FFE2B5;
  border-radius: 10px;
}

.row::-webkit-scrollbar-thumb {
  background-color: #E8A45A;
  border-radius: 10px;
}

.row::-webkit-scrollbar-thumb:hover {
  background-color: #D88A3A;
}



/* Cartes des shows */
.show-card {
  display: flex;
  flex-direction: row; /* description à droite */
  background: #FFE6C7; /* fond très clair */
  border-radius: 12px;
  border: 2px solid #F2C48D;
  flex: 0 0 450px; /* largeur fixe */
  height: 200px; /* hauteur fixe */
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  gap: 15px;
}

/* Titre au-dessus de l'image */
.show-img-container {
  display: flex;
  flex-direction: column;
  width: 190px;
  flex-shrink: 0;
  height: 100%;
}

.show-title {
  font-size: 16px;
  color: #9A4F2E;
  margin-bottom: 8px;
  text-align: center;
}

.show-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.show-desc {
  font-size: 14px;
  color: #5A3A2E;
  line-height: 1.4;
  overflow: auto; /* défile si le texte est long */
  
  display: flex;
  align-items: center;     /* vertical */
  justify-content: center; /* horizontal */
  text-align: center;
}

/* Scroll boutons */
.scroll-btn {
  background-color: rgba(191, 61, 191, 0.3);
  border: none;
  color: #222;
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 5px 10px;
  border-radius: 4px;
  z-index: 1;
}

.scroll-btn.left {
  left: -20px;
}

.scroll-btn.right {
  right: -20px;
}

.scroll-btn:hover {
  background-color: rgba(191, 61, 191, 0.5);
}
