.text-film {
  color: var(--brand-red);
}

.bg-film {
  background-color: var(--brand-red);
}

.border-film {
  border-color: var(--brand-red);
}

.hover\:text-film:hover {
  color: var(--brand-red);
}

.hover\:bg-film:hover {
  background-color: var(--brand-red);
}

.btn-background {
  background: var(--brand-red);
}

#scroll-to-top {
  background-color: var(--brand-red);
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 1000;
}

#scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.view-project {
  background-color: var(--brand-red);
}

.w-1\.5.h-1\.5.bg-film {
  background-color: var(--brand-red);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--brand-red);
}

.swiper-pagination-bullet-active {
  background: var(--brand-red);
}

.movie-posters-swiper .swiper-slide-active:after {
  content: '';
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(255,94,77,0.3) 0%, transparent 70%);
  opacity: 1;
  z-index: -1;
  pointer-events: none;
  animation: pulse 3s infinite alternate;
}

@keyframes pulse {
  0% { opacity: 0.7; }
  100% { opacity: 1; }
}

.poster-slide {
  width: 280px;
  height: 420px;
}

@media (max-width: 767px) {
  .movie-posters-swiper .swiper-slide-active .poster-container {
    transform: scale(1.25);
    box-shadow: 0 20px 40px -10px rgba(255, 94, 77, 0.5);
  }
  
  .movie-posters-swiper .swiper-slide-prev,
  .movie-posters-swiper .swiper-slide-next {
    opacity: 0.7;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 4rem;
}

.scene-frame:before {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 1px solid rgba(255, 94, 77, 0.3);
  z-index: 1;
  pointer-events: none;
}

.film-strip-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.film-strip {
  display: flex;
  white-space: nowrap;
  animation-name: marquee;
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.progress {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 1s ease;
}

