.book-shelf {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: #1d293d; /* Updated color */
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.05); /* Subtle separation */
}

.book-shelf__container {
  width: min(1200px, calc(100% - 3rem));
  margin: 0 auto;
}

.book-shelf__header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.book-shelf__title {
  margin: 0;
  font-family:
    "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.1em;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
}

.book-shelf__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.book-shelf__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.book-shelf__item--link {
  text-decoration: none;
  color: inherit;
}

.book-shelf__cover {
  width: 100%;
  aspect-ratio: 2 / 3;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.book-shelf__item--link:hover .book-shelf__cover {
  transform: translateY(-8px);
}

.book-shelf__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.book-shelf__watch-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.book-shelf__watch-link:hover {
  color: #ff9d21;
}

.book-shelf__play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff9d21; /* Orange play icon */
  width: 20px;
  height: 20px;
}

@media (max-width: 1024px) {
  .book-shelf__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2rem;
  }
}

@media (max-width: 600px) {
  .book-shelf__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
  }

  .book-shelf__watch-link {
    font-size: 0.75rem;
  }
}
