.tcw-carousel {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: #fff;
}

.tcw-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: 0.8s;
}

.tcw-carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.tcw-content {
  position: relative;
  z-index: 2;
  text-align: center;
  top: 20%;
}

.tcw-track {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  z-index: 2;
}

.tcw-card {
  width: 130px;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  opacity: 0.5;
  transform: scale(0.9);
  transition: 0.4s;
  cursor: pointer;
  position: relative;
}

.tcw-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tcw-card.active {
  opacity: 1;
  transform: scale(1.1);
}

/* New styles for text */
.tcw-card-text {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #fff;
  font-size: 14px;
  background: rgba(0, 0, 0, 0.5);
  padding: 5px;
  border-radius: 5px;
}

.tcw-prev, .tcw-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.3);
  border: none;
  padding: 10px;
  cursor: pointer;
}

.tcw-prev { left: 20px; }
.tcw-next { right: 20px; }