
    .carousel-outer {
      position: relative;
      overflow: hidden;
      padding-right: 60px;
      margin-right: -300px;
      display: flex;
      align-items: center;
      height: 440px;
    }

    .carousel-track {
      display: flex;
      align-items: center;
      gap: 16px;
      transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform;
      overflow: visible;
    }

    .card {
      flex: 0 0 280px;
      width: 280px;
      height: 420px;
      position: relative;
      border: none !important;
      border-radius: 0 !important;
      transition: all .3s ease;
      overflow: hidden;
      cursor: pointer;
    }

    .card {
      z-index: 1;
      position: relative;
    }

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

    .card:hover {
      flex: 0 0 290px;
      width: 290px;
      height: 440px;
      z-index: 10;
    }

    .card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
      pointer-events: none;
    }


    .play-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0.85);
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(255,255,255,0.15);
      border: 2px solid rgba(255,255,255,0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s, transform 0.3s;
      pointer-events: none;
    }

    .play-btn svg {
      fill: #fff;
      width: 18px;
      height: 18px;
      margin-left: 3px;
    }

    .card:hover .play-btn {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }

    .card-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 16px 14px 18px;
      z-index: 2;
    }

    .card-caption p {
      font-size: 0.82rem;
      font-weight: 600;
      line-height: 1.4;
      color: #fff;
      text-shadow: 0 1px 4px rgba(0,0,0,0.8);
    }

    .nav-row {
      display: flex;
      justify-content: flex-end;
      gap: 8px;
      margin-top: 20px;
    }

    .nav-btn {
      width: 44px;
      height: 44px;
      background: #3a3a3a;
      border: none;
      color: #fff;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
    }

    .nav-btn:hover {
      background: #555;
    }

    .nav-btn svg {
      width: 24px;
      height: 24px;
      stroke: #fff;
      fill: none;
    }

@media (max-width: 575px) {
    .carousel-outer {
        height: 260px;
    }
    .card{
        flex: 0 0 160px;
        width: 160px;
        height: 250px;
    }
    .card:hover {
      flex: 0 0 180px;
      width: 180px;
      height: 260px;
    }

}