.showreel-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: #000000;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.showreel-shell {
  width: 1140px;
  margin: 0 auto;
  text-align: center;
}

.showreel-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.showreel-video-wrap {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out 0.15s, transform 0.8s ease-out 0.15s;
}

.showreel-section.is-visible .showreel-video-wrap {
  opacity: 1;
  transform: translateY(0);
}

.showreel-video-card {
  display: none;
}

.showreel-video-frame {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #111111;
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.showreel-video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.showreel-video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
  transform: scale(1);
}

.showreel-video-card:hover img {
  transform: scale(1.05);
}

.showreel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.45));
  pointer-events: none;
}

.showreel-play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 90px;
  height: 90px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 0 0 rgba(255,255,255,0);
}

.showreel-play svg {
  width: 30px;
  height: 30px;
  margin-left: 4px;
}

.showreel-video-card:hover .showreel-play,
.showreel-video-card:focus-within .showreel-play,
.showreel-play:hover {
  transform: translate(-50%, -50%) scale(1.15);
  background: rgba(255,255,255,.22);
  box-shadow: 0 0 35px rgba(255,255,255,0.18);
}

.showreel-modal {
  display: none !important;
}

@media (max-width: 991px) {
  .showreel-section {
    padding: 80px 0;
  }

  .showreel-shell {
    width: min(100%, calc(100% - 28px));
  }

  .showreel-description {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .showreel-section {
    padding: 70px 0;
  }

  .showreel-video-card {
    border-radius: 12px;
  }

  .showreel-play {
    width: 70px;
    height: 70px;
  }

  .showreel-play svg {
    width: 24px;
    height: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .showreel-video-wrap,
  .showreel-video-card img,
  .showreel-play {
    transition: none;
  }
}
