/* =====================================================
   RESET
===================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =====================================================
   BODY
===================================================== */
body {
  font-family: "Inter", sans-serif;
  background-color: #000;
  color: #ffffff;
}

/* =====================================================
   HERO
===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 52px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.03);
  z-index: 1;
  transition: background-image 0.5s ease, transform 0.5s ease;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(1, 7, 29, 0.2), rgba(1, 7, 29, 0.05)),
    linear-gradient(to top, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.08));
  z-index: 2;
}

.hero__left-shadow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 5, 55, 0.98) 0%,
    rgba(0, 5, 55, 0.9) 14%,
    rgba(0, 5, 55, 0.65) 28%,
    rgba(0, 5, 55, 0.3) 43%,
    rgba(0, 5, 55, 0) 64%
  );
  z-index: 3;
}

.hero__bottom-shadow {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 220px;
  background: linear-gradient(to top, rgba(1, 4, 30, 0.98), rgba(1, 4, 30, 0));
  z-index: 4;
}

/* =====================================================
   HERO FADE ANIMATION
===================================================== */

/* Smooth fade for background */
.hero__bg {
  transition:
    background-image 0.6s ease,
    transform 0.6s ease,
    opacity 0.6s ease;
}

/* Smooth fade for text/content */
.hero__content {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

/* Fade out state */
.hero.is-fading .hero__bg {
  opacity: 0.55;
}

.hero.is-fading .hero__content {
  opacity: 0;
  transform: translateY(12px);
}

/* =====================================================
   NAVBAR
===================================================== */
.navbar {
  position: absolute;
  top: 14px;
  left: 0;
  width: 100%;
  padding: 0 60px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* =====================================================
   PRO NAVBAR
===================================================== */
.nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav__link {
  position: relative;
  z-index: 2;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 600;
  padding: 8px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.25s ease;
}

.nav__link:hover,
.nav__link.active,
.nav-dropdown.open > .nav-dropdown__toggle {
  color: #ffffff;
}

.nav__highlight {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffcc00, #ffd84d, #ffb700);
  box-shadow:
    0 0 10px rgba(255, 200, 0, 0.5),
    0 0 18px rgba(255, 180, 0, 0.28);
  opacity: 0;
  transition:
    left 0.32s ease,
    width 0.32s ease,
    opacity 0.25s ease;
  pointer-events: none;
  z-index: 1;
}

/* =====================================================
   DESKTOP DROPDOWN
===================================================== */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown__toggle {
  display: inline-flex;
  align-items: center;
}

.nav-dropdown__toggle::after {
  content: "⌄";
  font-size: 11px;
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown__toggle::after,
.nav-dropdown.open .nav-dropdown__toggle::after {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  min-width: 220px;
  background: rgba(1, 6, 47, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
  z-index: 30;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown.open .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown__item {
  position: relative;
  z-index: 1;
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  padding: 11px 14px;
  border-radius: 10px;
  overflow: hidden;
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-dropdown__item::before {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  top: 50%;
  height: calc(100% - 6px);
  transform: translateY(-50%) scaleX(0.75);
  border-radius: 10px;
  background: linear-gradient(
    90deg,
    rgba(255, 191, 0, 0.96),
    rgba(255, 214, 90, 0.98),
    rgba(255, 173, 0, 0.96)
  );
  opacity: 0;
  transition:
    opacity 0.22s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease;
  z-index: -1;
}

.nav-dropdown__item:hover {
  color: #111111;
  transform: translateX(6px);
}

.nav-dropdown__item:hover::before,
.nav-dropdown__item.active::before {
  opacity: 1;
  transform: translateY(-50%) scaleX(1);
  box-shadow:
    0 0 12px rgba(255, 196, 0, 0.35),
    0 0 24px rgba(255, 174, 0, 0.2);
}

.nav-dropdown__item.active {
  color: #111111;
}

/* =====================================================
   MOBILE MENU
===================================================== */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
}

.mobile-menu {
  position: absolute;
  top: 72px;
  right: 20px;
  width: 260px;
  background: rgba(9, 16, 42, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 14px;
  z-index: 12;
  backdrop-filter: blur(10px);
}

.mobile-menu.show {
  display: flex;
}

.mobile-menu__link {
  text-decoration: none;
  color: white;
  font-weight: 500;
}

/* =====================================================
   MOBILE DROPDOWN
===================================================== */
.mobile-dropdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-dropdown__toggle {
  width: 100%;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0;
  font-family: inherit;
}

.mobile-dropdown__arrow {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.mobile-dropdown__menu {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
  overflow: hidden;
}

.mobile-dropdown__menu-inner {
  overflow: hidden;
}

.mobile-dropdown.open .mobile-dropdown__menu {
  grid-template-rows: 1fr;
}

.mobile-dropdown.open .mobile-dropdown__arrow {
  transform: rotate(180deg);
}

.mobile-dropdown__item {
  position: relative;
  z-index: 1;
  display: block;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  padding: 9px 12px;
  margin-top: 4px;
  border-radius: 10px;
  overflow: hidden;
  transition: color 0.25s ease, transform 0.25s ease;
}

.mobile-dropdown__item::before {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: 50%;
  height: calc(100% - 4px);
  transform: translateY(-50%) scaleX(0.7);
  border-radius: 10px;
  background: linear-gradient(
    90deg,
    rgba(255, 191, 0, 0.96),
    rgba(255, 214, 90, 0.98),
    rgba(255, 173, 0, 0.96)
  );
  opacity: 0;
  transition:
    opacity 0.22s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease;
  z-index: -1;
}

.mobile-dropdown__item:hover {
  color: #111111;
  transform: translateX(4px);
}

.mobile-dropdown__item:hover::before,
.mobile-dropdown__item.active::before {
  opacity: 1;
  transform: translateY(-50%) scaleX(1);
  box-shadow:
    0 0 10px rgba(255, 196, 0, 0.3),
    0 0 18px rgba(255, 174, 0, 0.18);
}

.mobile-dropdown__item.active {
  color: #111111;
}

/* =====================================================
   HERO CONTENT
===================================================== */
.hero__content {
  position: relative;
  z-index: 8;
  max-width: 560px;
  margin-top: 60px;
}

.hero__category {
  color: #f6c23d;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 22px;
}

.hero__title {
  font-size: 76px;
  line-height: 0.98;
  font-weight: 800;
  margin-bottom: 22px;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 28px;
}

.hero__meta span {
  font-size: 16px;
  font-weight: 400;
}

.hero__rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.star {
  color: #f6c23d;
  font-size: 18px;
}

.dot {
  color: rgba(255, 255, 255, 0.55);
}

.hero__description {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin-bottom: 28px;
}

.show-more {
  color: #ffffff;
  cursor: pointer;
}

/* =====================================================
   BUTTONS
===================================================== */
.hero__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 14px;
  transition: transform 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  padding: 16px 30px;
  color: #ffffff;
  background: linear-gradient(90deg, #5865ff 0%, #9a59ff 100%);
  box-shadow: 0 10px 30px rgba(105, 87, 255, 0.32);
}

.btn__icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

.btn--ghost {
  color: #ffffff;
  background: transparent;
  padding: 8px 0;
}

.bookmark {
  font-size: 18px;
}

/* =====================================================
   HERO CONTROLS
===================================================== */
.slider-side-controls {
  position: absolute;
  right: 8px;
  top: 48%;
  transform: translateY(-50%);
  z-index: 9;
}

.slide-switch {
  width: 56px;
  height: 86px;
  border: none;
  border-radius: 4px 0 0 4px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 34px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.slide-switch:hover,
.slide-switch.active {
  background: #d7a316;
  color: #ffffff;
}

.slide-switch span {
  display: inline-block;
  transform: translateX(2px);
}

.slider-controls {
  position: absolute;
  right: 34px;
  bottom: 24px;
  z-index: 9;
  display: flex;
  align-items: center;
  gap: 16px;
}

.slider-number {
  font-size: 30px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
}

.active-number {
  font-size: 16px;
  font-weight: 500;
}

.slider-line {
  width: 205px;
  height: 2px;
  background: rgba(255, 255, 255, 0.24);
  position: relative;
  overflow: hidden;
}

.slider-line__fill {
  width: 33.33%;
  height: 100%;
  background: #e9b515;
  transition: width 0.3s ease;
}

.sound-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  cursor: pointer;
  font-size: 16px;
}

/* =====================================================
   MOVIE SLIDER SECTION
===================================================== */
.movie-slider-section {
  position: relative;
  background: #000000;
  padding: 42px 0 30px;
  overflow: hidden;
}

.movie-slider-header {
  width: min(1320px, calc(100% - 80px));
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.movie-slider-title {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
}

.movie-slider-view-all {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.movie-slider-view-all span {
  font-size: 18px;
}

.movie-slider-wrapper {
  position: relative;
  width: 100%;
}

.movie-slider-viewport {
  width: min(1320px, calc(100% - 80px));
  margin: 0 auto;
  overflow: hidden;
}

.movie-slider-track {
  display: flex;
  gap: 18px;
  transition: transform 0.6s ease;
  will-change: transform;
  padding: 22px 0 34px;
}

/* =====================================================
   PREMIUM MOVIE CARD
===================================================== */
.movie-card {
  flex: 0 0 calc((100% - 72px) / 5);
  min-width: 0;
  color: #ffffff;
  position: relative;
  cursor: pointer;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    z-index 0.2s ease;
  z-index: 1;
}

.movie-card:hover {
  transform: translateY(-8px) scale(1.04);
  z-index: 20;
}

.movie-card__image-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 402px;
  background: #111;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.42),
    0 0 26px rgba(111, 76, 255, 0.08),
    0 0 50px rgba(255, 80, 150, 0.04);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.movie-card__image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1.5px;
  background: linear-gradient(
    90deg,
    rgba(255, 191, 0, 0.96),
    rgba(255, 214, 90, 0.98),
    rgba(255, 173, 0, 0.96)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 5;
  pointer-events: none;
}


/* =====================================================
   SHIMMER EFFECT LIKE CINEMA POSTERS
===================================================== */

.movie-card__image-wrap::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 35%,
    rgba(255, 240, 180, 0.08) 45%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(255, 220, 120, 0.12) 55%,
    rgba(255, 255, 255, 0) 65%
  );
  transform: translateX(-140%) rotate(12deg);
  opacity: 0;
  z-index: 4;
  pointer-events: none;
}

/* Hover shimmer */
.movie-card:hover .movie-card__image-wrap::after {
  opacity: 1;
  animation: movieCardShimmer 1.2s ease forwards;
}

/* Shimmer animation */
@keyframes movieCardShimmer {
  0% {
    transform: translateX(-140%) rotate(12deg);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translateX(140%) rotate(12deg);
    opacity: 0;
  }
}

.movie-card:hover .movie-card__image-wrap::before {
  opacity: 1;
}

.movie-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.9); /* before 0.68 */
  transition:
    transform 0.45s ease,
    filter 0.45s ease,
    opacity 0.35s ease;
}

.movie-card:hover .movie-card__image {
  transform: scale(1.06);
  filter: brightness(0.82); /* before 0.45 */
  opacity: 0.88;            /* before 0.35 */
}

.movie-card__dark-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.03)),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.08));
  z-index: 1;
  pointer-events: none;
}

.movie-card__preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 2;
}

.movie-card:hover .movie-card__preview {
  opacity: 1;
}

.movie-card__rating-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(20, 20, 30, 0.62);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.movie-card__rating-badge span {
  color: #ffd85a;
}

.movie-card__wishlist {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 6;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(20, 20, 30, 0.58);
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.movie-card__wishlist:hover {
  transform: scale(1.08);
  background: rgba(255, 70, 120, 0.22);
  color: #ff6b9d;
}

.movie-card__wishlist.active {
  background: rgba(255, 70, 120, 0.22);
  color: #ff6b9d;
}

.movie-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 6;
  transform: translate(-50%, -50%) scale(0.9);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.42);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  opacity: 0;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    background 0.3s ease;
}

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

.movie-card__title {
  margin-top: 18px;
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
}

.movie-card__meta {
  margin-top: 14px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
}

.movie-card__genre {
  margin-top: 10px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* =====================================================
   MOVIE ARROWS
===================================================== */
.movie-arrow {
  position: absolute;
  top: 34%;
  transform: translateY(-50%);
  width: 56px;
  height: 108px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 42px;
  cursor: pointer;
  z-index: 4;
  transition: background 0.3s ease, opacity 0.3s ease;
}

.movie-arrow:hover {
  background: #d7a316;
}

.movie-arrow--left {
  left: 12px;
}

.movie-arrow--right {
  right: 12px;
}

.movie-slider-wrapper::before,
.movie-slider-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.movie-slider-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #000000, transparent);
}

.movie-slider-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #000000, transparent);
}

/* =====================================================
   VIDEO MODAL
===================================================== */
.video-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.video-modal.show {
  display: block;
}

.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}

.video-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  max-width: 900px;
  height: 500px;
  transform: translate(-50%, -50%);
  background: #000;
  border-radius: 10px;
  overflow: hidden;
}

.video-modal__close {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1200px) {
  .movie-card {
    flex: 0 0 calc((100% - 54px) / 4);
  }

  .movie-card__image-wrap {
    height: 360px;
  }
}

@media (max-width: 1100px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding: 0 28px;
  }

  .navbar {
    padding: 0 28px;
  }

  .hero__title {
    font-size: 60px;
  }

  .slider-side-controls {
    right: 4px;
  }

  .slide-switch {
    width: 46px;
    height: 72px;
  }
}

@media (max-width: 900px) {
  .movie-slider-header,
  .movie-slider-viewport {
    width: calc(100% - 40px);
  }

  .movie-card {
    flex: 0 0 calc((100% - 18px) / 2);
  }

  .movie-card__image-wrap {
    height: 320px;
  }

  .movie-arrow {
    width: 42px;
    height: 82px;
    font-size: 30px;
  }

  .movie-arrow--left {
    left: 6px;
  }

  .movie-arrow--right {
    right: 6px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 0 20px;
    align-items: flex-end;
    padding-bottom: 120px;
  }

  .navbar {
    padding: 0 20px;
  }

  .logo-img {
    height: 38px;
  }

  .hero__content {
    max-width: 100%;
    margin-top: 110px;
  }

  .hero__title {
    font-size: 44px;
  }

  .hero__meta {
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .hero__meta span {
    font-size: 14px;
  }

  .hero__description {
    font-size: 15px;
    line-height: 1.6;
  }

  .btn--primary {
    padding: 14px 20px;
  }

  .slider-controls {
    right: 20px;
    bottom: 18px;
    gap: 10px;
  }

  .slider-line {
    width: 120px;
  }

  .slider-side-controls {
    top: 46%;
  }

  .slide-switch {
    width: 34px;
    height: 58px;
    font-size: 24px;
  }

  .video-modal__content {
    width: 90%;
    height: 300px;
  }
}

@media (max-width: 600px) {
  .movie-slider-header,
  .movie-slider-viewport {
    width: calc(100% - 24px);
  }

  .movie-slider-title {
    font-size: 18px;
  }

  .movie-slider-view-all {
    font-size: 14px;
  }

  .movie-card {
    flex: 0 0 78%;
  }

  .movie-card__image-wrap {
    height: 300px;
  }

  .movie-arrow {
    top: 30%;
    width: 34px;
    height: 70px;
    font-size: 24px;
  }

  .movie-card__wishlist {
    width: 36px;
    height: 36px;
  }

  .movie-card__rating-badge {
    font-size: 12px;
    padding: 7px 10px;
  }
}

/* =====================================================
   UPCOMING RELEASES SECTION
   Upgraded slider + badge + overlay + active card
===================================================== */
.upcoming-releases-section {
  width: 100%;
  background: #000000; /* pure black */
  padding: 42px 50px 70px;
  overflow: hidden;
}

.upcoming-releases-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.upcoming-releases-header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.upcoming-releases-title {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.4px;
}

.upcoming-releases-viewall {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  opacity: 0.92;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.upcoming-releases-viewall:hover {
  opacity: 1;
  transform: translateX(3px);
}

.upcoming-releases-viewall span {
  font-size: 24px;
  line-height: 1;
}

/* Slider */
.upcoming-releases-slider {
  position: relative;
  width: 100%;
}

.upcoming-releases-viewport {
  overflow: hidden;
  width: 100%;
}

.upcoming-releases-row {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  transition: transform 0.65s ease;
  will-change: transform;
}

/* =====================================================
   UPCOMING RELEASES - CENTER FOCUS UPGRADE
  center card highlight + side cards dim effect 
===================================================== */

/* Base card state */
.upcoming-release-card {
  flex: 0 0 calc((100% - 88px) / 5);
  min-width: 0;
  transform: scale(0.92);
  opacity: 1; /* full card dim ஆகக்கூடாது */
  transition:
    transform 0.45s ease,
    opacity 0.45s ease;
}
/* Active center card */
.upcoming-release-card.is-active {
  transform: scale(1);
  opacity: 1;
  filter: blur(0);
  z-index: 3;
}

/* Card next to active card */
.upcoming-release-card.is-near {
  transform: scale(0.96);
  opacity: 1;
}

/* Active card image gets extra focus */
.upcoming-release-card.is-active .upcoming-release-poster {
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.55),
    0 0 24px rgba(255, 191, 0, 0.18);
}

/* Active card text brighter */
.upcoming-release-card.is-active .upcoming-release-name {
  color: #ffffff;
}

.upcoming-release-card.is-active .upcoming-release-meta,
.upcoming-release-card.is-active .upcoming-release-genre {
  color: rgba(255, 255, 255, 0.82);
}

/* Side cards text dim */
.upcoming-release-card .upcoming-release-name {
  transition: color 0.35s ease;
}

.upcoming-release-card .upcoming-release-meta,
.upcoming-release-card .upcoming-release-genre {
  transition: color 0.35s ease;
}

/* Hover still works */
.upcoming-release-card:hover {
  opacity: 1;
  filter: blur(0);
}

/* Tablet */
@media (max-width: 1200px) {
  .upcoming-release-card {
    flex: 0 0 calc((100% - 44px) / 3);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .upcoming-release-card {
    flex: 0 0 calc((100% - 16px) / 2);
    transform: scale(0.95);
    opacity: 1;
  }

  .upcoming-release-card.is-active {
    transform: scale(1);
    opacity: 1;
    z-index: 3;
  }

   .upcoming-release-card.is-near {
    transform: scale(0.97);
    opacity: 1;
    filter: none;
  }
}

@media (max-width: 600px) {
  .upcoming-release-card {
    flex: 0 0 78%;
    transform: scale(0.96);
    opacity: 1;
    filter: none;
  }
}

.upcoming-release-poster {
  position: relative;
  width: 100%;
  height: 430px;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  margin-bottom: 16px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.upcoming-release-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.4s ease;
}

/* Coming Soon badge */
.upcoming-release-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffbf00, #ffd85a);
  color: #111111;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  box-shadow: 0 8px 20px rgba(255, 191, 0, 0.28);
}

/* Dark gradient overlay */
.upcoming-release-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08)),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.12));
  opacity: 0.3;
  transition: opacity 0.35s ease;
}

/* Center play button */
.upcoming-release-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  transform: translate(-50%, -50%) scale(0.86);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.42);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  opacity: 0;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    background 0.3s ease;
}

.upcoming-release-card:hover .upcoming-release-overlay {
  opacity: 1;
}

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

.upcoming-release-name {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.upcoming-release-meta {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 12px;
}

.upcoming-release-genre {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

/* Arrows */
.upcoming-releases-arrow {
  position: absolute;
  top: 34%;
  transform: translateY(-50%);
  width: 48px;
  height: 96px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 38px;
  cursor: pointer;
  z-index: 5;
  transition: background 0.3s ease, transform 0.3s ease;
}

.upcoming-releases-arrow:hover {
  background: #d7a316;
}

.upcoming-releases-arrow--left {
  left: -14px;
}

.upcoming-releases-arrow--right {
  right: -14px;
}

/* Side fades - Blue
.upcoming-releases-slider::before,
.upcoming-releases-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 28px;
  z-index: 3;
  pointer-events: none;
}

.upcoming-releases-slider::before {
  left: 0;
  background: linear-gradient(to right, rgba(8, 22, 63, 0.35), transparent);
}

.upcoming-releases-slider::after {
  right: 0;
  background: linear-gradient(to left, #08163f, transparent);
} */

.upcoming-releases-slider::before,
.upcoming-releases-slider::after {
  display: none;
}

/* image only dim, text not dim */
.upcoming-release-poster img {
  opacity: 0.55;
}

.upcoming-release-card.is-near .upcoming-release-poster img {
  opacity: 0.72;
}

.upcoming-release-card.is-active .upcoming-release-poster img {
  opacity: 1;
}


/* Tablet */
@media (max-width: 1200px) {
  .upcoming-release-card {
    flex: 0 0 calc((100% - 44px) / 3);
  }

  .upcoming-release-poster {
    height: 390px;
  }
}

@media (max-width: 1024px) {
  .upcoming-releases-section {
    padding: 36px 28px 56px;
  }

  .upcoming-releases-title {
    font-size: 28px;
  }

  .upcoming-releases-arrow {
    width: 42px;
    height: 82px;
    font-size: 30px;
  }

  .upcoming-releases-arrow--left {
    left: -8px;
  }

  .upcoming-releases-arrow--right {
    right: -8px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .upcoming-releases-section {
    padding: 30px 16px 48px;
  }

  .upcoming-releases-header {
    margin-bottom: 22px;
  }

  .upcoming-releases-title {
    font-size: 24px;
  }

  .upcoming-releases-viewall {
    font-size: 14px;
    gap: 6px;
  }

  .upcoming-releases-viewall span {
    font-size: 20px;
  }

  .upcoming-release-card {
    flex: 0 0 calc((100% - 16px) / 2);
  }

  .upcoming-release-poster {
    height: 300px;
    border-radius: 14px;
    margin-bottom: 14px;
  }

  .upcoming-release-name {
    font-size: 16px;
    color: #ffffff !important;
  }

  .upcoming-release-meta,
  .upcoming-release-genre {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.92) !important;
  }

  .upcoming-releases-arrow {
    width: 34px;
    height: 68px;
    font-size: 24px;
  }

  .upcoming-release-badge {
    font-size: 10px;
    padding: 7px 10px;
  }

  .upcoming-release-play {
    width: 56px;
    height: 56px;
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .upcoming-release-card {
    flex: 0 0 78%;
  }

  .upcoming-releases-arrow {
    top: 30%;
    width: 30px;
    height: 58px;
    font-size: 20px;
  }
}

/* =====================================================
   🔥 PREMIUM UI UPGRADE START
===================================================== */

/* ✨ Glass effect for card */
.upcoming-release-card {
  backdrop-filter: blur(10px); /* background blur */
  background: rgba(255, 255, 255, 0.02); /* glass look */
  border-radius: 18px;
  padding: 10px;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;}
.upcoming-release-card:hover {
  transform: translateY(-10px) scale(1.03);   /* 🔥 Hover glow + lift effect */
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.6),     /* shadow depth */
    0 0 20px rgba(255, 191, 0, 0.25),   /* gold glow */
    0 0 40px rgba(255, 191, 0, 0.15);   /* outer glow */
}

/* 🎬 Image zoom effect */
.upcoming-release-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.85);
}

/* 🔥 Border glow effect */
.upcoming-release-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1.5px;

  background: linear-gradient(
    90deg,
    rgba(255, 191, 0, 0.9),
    rgba(255, 214, 90, 0.9),
    rgba(255, 173, 0, 0.9)
  );

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;

  opacity: 0;
  transition: opacity 0.3s ease;
}

/* show border on hover */
.upcoming-release-card:hover .upcoming-release-poster::before {
  opacity: 1;
}

/* 🎥 Cinematic overlay */
.upcoming-release-overlay {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.02)),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.05));
  opacity: 0.22;
  transition: opacity 0.4s ease;
}

/* overlay stronger on hover */
.upcoming-release-card:hover .upcoming-release-overlay {
  opacity: 0.3;
}

/* ▶️ Play button glow */
.upcoming-release-play {
  background: rgba(0, 0, 0, 0.5);

  box-shadow:
    0 0 10px rgba(255, 191, 0, 0.4),
    0 0 20px rgba(255, 191, 0, 0.2);
}

/* play button highlight on hover */
.upcoming-release-card:hover .upcoming-release-play {
  background: #ffbf00;
  color: #000;
}

/* =====================================================
   🔥 PREMIUM UI UPGRADE END
===================================================== */


/* =====================================================
   UPCOMING CARD CLICK SUPPORT
   image click panna video open ஆகும் feel
===================================================== */
.upcoming-release-card,
.upcoming-release-poster {
  cursor: pointer;
}

.upcoming-release-play {
  pointer-events: none; /* play icon click block pannama irukka */
}

/* =========================================
   🎬 VIDEO LOADING SPINNER
========================================= */
.video-loading {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-loading.show {
  opacity: 1;
  pointer-events: all;
}

/* Spinner animation */
.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255,255,255,0.2);
  border-top: 4px solid #ffbf00;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* =========================================
   💧 RIPPLE EFFECT
========================================= */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 191, 0, 0.4);
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
  pointer-events: none;
}

@keyframes rippleAnim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* =====================================================
   UPCOMING HOVER VIDEO PREVIEW
===================================================== */

/* poster relative */
.upcoming-release-poster {
  position: relative;
}

/* hidden preview iframe */
.upcoming-release-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.35s ease;
}

/* hover panna iframe show */
.upcoming-release-card:hover .upcoming-release-preview {
  opacity: 1;
}

/* image little dim for smooth transition */
.upcoming-release-card:hover .upcoming-release-poster img {
  transform: scale(1.05);
  filter: brightness(1.04);
}

/* badge, overlay, play icon preview mela visible irukkanum */
.upcoming-release-badge {
  z-index: 4;
}

.upcoming-release-overlay {
  z-index: 2;
}

.upcoming-release-play {
  z-index: 4;
}


/* ========================================
   PREMIUM FOOTER (POLISHED)
   - dark gradient background
   - better link hover
   - glass social icons
   - scroll to top button
   - reveal animation
======================================== */
.footer {
  position: relative;
  background: #000; /* 🔥 pure black */
  color: #fff;
  padding: 60px 80px 24px;
  overflow: hidden;
}

/* 🔥 Gold glow top border */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 80px;
  right: 80px;
  height: 2px;

  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 191, 0, 0.8),
    rgba(255, 215, 100, 0.9),
    rgba(255, 191, 0, 0.8),
    transparent
  );

  box-shadow:
    0 0 10px rgba(255, 191, 0, 0.6),
    0 0 20px rgba(255, 191, 0, 0.4);

  border-radius: 50%;
}

/* subtle top glow */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 80px;
  right: 80px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 191, 0, 0.35),
    transparent
  );
}

/* layout */
.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.3fr 1fr;
  gap: 48px;
  align-items: start;
}

/* reveal base */
.footer-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.footer-reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* stagger effect */
.footer-container .footer-col:nth-child(1) { transition-delay: 0.08s; }
.footer-container .footer-col:nth-child(2) { transition-delay: 0.16s; }
.footer-container .footer-col:nth-child(3) { transition-delay: 0.24s; }
.footer-container .footer-col:nth-child(4) { transition-delay: 0.32s; }
.footer-bottom.footer-reveal { transition-delay: 0.4s; }

/* columns */
.footer-col h3 {
  margin-bottom: 18px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ffffff;
}

/* logo */
.footer-logo {
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
  background: linear-gradient(180deg, #ffd85a, #ffbf00, #ff9f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 18px rgba(255, 191, 0, 0.08);
}

.footer-logo-img {
  width: 80px;
  height: auto;
  display: block;
  margin-bottom: 10px;
  margin-top: -15px;   /* logo bring to up */
    filter: drop-shadow(0 0 8px rgba(255, 191, 0, 0.4));
}

.footer-sub {
  font-size: 13px;
  font-weight: 700;
  color: #f1f1f1;
  margin-bottom: 12px;
}

.footer-desc {
  max-width: 290px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

/* text */
.footer-col p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
  margin-bottom: 10px;
}

/* links */
.footer-col a {
  position: relative;
  display: block;          /* inline-block -> block */
  width: fit-content;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  font-size: 15px;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

/* Apply underline ONLY for normal links (not social icons) */
.footer-col a:not(.social a)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1.5px;
  background: linear-gradient(to right, #ffbf00, #ffd85a);
  transition: width 0.3s ease;
}

.footer-col a:hover {
  color: #ffcf47;
  transform: translateX(4px);
}

.footer-col a:hover::after {
  width: 100%;
}

/* social icons */
.social {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}

.social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}

.social a:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, #ffbf00, #ffd85a);
  color: #111;
  box-shadow:
    0 10px 20px rgba(255, 191, 0, 0.18),
    0 0 18px rgba(255, 191, 0, 0.18);
}

/* bottom */
.footer-bottom {
  margin-top: 52px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
}

/* scroll to top button */
.scroll-top-btn {
  position: absolute;
  right: 34px;
  bottom: 20px;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: #f3f3f3;
  color: #333;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    opacity 0.3s ease;
  opacity: 0.95;
}

.scroll-top-btn:hover {
  transform: translateY(-4px);
  background: #ffbf00;
  color: #111;
}

/* responsive */
@media (max-width: 1100px) {
  .footer {
    padding: 48px 34px 24px;
  }

  .footer::before {
    left: 34px;
    right: 34px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 34px 28px;
  }

  .scroll-top-btn {
    right: 22px;
    bottom: 16px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 20px 24px;
  }

  .footer::before {
    left: 20px;
    right: 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-logo {
    font-size: 38px;
  }

  .footer-desc,
  .footer-col p,
  .footer-col a {
    font-size: 14px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .scroll-top-btn {
    right: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
    font-size: 22px;
  }
}

.footer-bottom {
  margin-top: 52px;
  padding-top: 18px;

  border-top: 1px solid rgba(255, 191, 0, 0.3);

  box-shadow: 0 -2px 10px rgba(255, 191, 0, 0.2);

  display: flex;
  justify-content: space-between;
}





/* ========================================
   ABOUT PAGE - HEADER / HERO / CONTENT
======================================== */
.page {
  background: #000;
  color: #fff;
}

/* top header */
.header {
  position: absolute;
  top: 14px;
  left: 0;
  width: 100%;
  padding: 0 60px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ========================================
   ABOUT HERO - 3D POSTER FLOOR + AUTO SCROLL
======================================== */
.about-hero {
  position: relative;
  height: 72vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #000;
}

/* background container */
.about-hero__bg {
  position: absolute;
  inset: 0;
  perspective: 1600px;
  overflow: hidden;
  background: #000;
}

/* moving poster floor */
.about-hero__poster-grid {
  position: absolute;
  left: 50%;
  top: 62%;
  width: 2400px;
  display: grid;
  grid-template-columns: repeat(10, 140px); /* 🔥 more posters */
  gap: 12px;
  justify-content: center;
  transform:
    translate(-50%, -50%)
    rotateX(72deg)
    rotateZ(0deg)
    scale(1.38);
  transform-style: preserve-3d;
  animation: aboutPosterAutoScroll 15s linear infinite;
  will-change: transform;
}

/* poster style */
.about-hero__poster-grid img {
  width: 140px;   /* 🔥 smaller */
  height: 210px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.45),
    0 0 12px rgba(255, 255, 255, 0.03);
  filter: brightness(0.78);
}

/* optional alternate depth feel */
.about-hero__poster-grid img:nth-child(odd) {
  transform: translateY(-8px);
}

.about-hero__poster-grid img:nth-child(even) {
  transform: translateY(8px);
}

/* dark overlay for readability */
.about-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.46) 36%, rgba(0, 0, 0, 0.78) 100%),
    radial-gradient(circle at center, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.58));
  z-index: 2;
}

/* bottom fade */
.about-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(to top, #000, transparent);
  z-index: 3;
}

/* center content */
.about-hero__content {
  position: relative;
  z-index: 4;
  max-width: 980px;
  padding: 0 20px;
}

.about-hero__title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.about-hero__desc {
  font-size: clamp(16px, 1.8vw, 24px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  max-width: 980px;
  margin: 0 auto 30px;
}

/* ========================================
   MORPHING LIQUID SVG MASK BUTTON
   - normal = blob button
   - hover = extra bubbles + morph + rotate
   - yellow / gold gradient
======================================== */
.liquid-btn {
  position: relative;
  width: 300px;   /* before 240px */
  height: 160px;  /* before 130px */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.liquid-btn__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.liquid-btn__blob-wrap {
  transform-origin: 50% 50%;
  animation: liquidBlobFloat 7s ease-in-out infinite;
}

.liquid-btn__blob {
  fill: url(#liquidYellowGradient);
  filter:
    drop-shadow(0 0 28px rgba(255, 191, 0, 0.6))
    drop-shadow(0 0 60px rgba(255, 191, 0, 0.35));
  transition: transform 0.45s ease, filter 0.45s ease;
}

.liquid-btn__front {
  fill: #f7f2dd;
  transition: transform 0.45s ease, fill 0.45s ease;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.12));
}

.liquid-btn__text {
  position: relative;
  z-index: 3;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: #4d4b78;
  transition: transform 0.35s ease, color 0.35s ease;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

/* bubbles */
.liquid-btn__bubbles {
  opacity: 0;
  transition: opacity 0.35s ease;
}

.liquid-btn__bubbles circle {
  fill: url(#liquidYellowGradient);
  filter: drop-shadow(0 0 8px rgba(255, 191, 0, 0.24));
  transform-origin: center;
}

.liquid-btn__bubbles circle:nth-child(1) { animation: bubbleFloat1 3.2s ease-in-out infinite; }
.liquid-btn__bubbles circle:nth-child(2) { animation: bubbleFloat2 3.8s ease-in-out infinite; }
.liquid-btn__bubbles circle:nth-child(3) { animation: bubbleFloat3 3.1s ease-in-out infinite; }
.liquid-btn__bubbles circle:nth-child(4) { animation: bubbleFloat4 4s ease-in-out infinite; }
.liquid-btn__bubbles circle:nth-child(5) { animation: bubbleFloat5 3.4s ease-in-out infinite; }
.liquid-btn__bubbles circle:nth-child(6) { animation: bubbleFloat6 3.3s ease-in-out infinite; }
.liquid-btn__bubbles circle:nth-child(7) { animation: bubbleFloat7 4.2s ease-in-out infinite; }
.liquid-btn__bubbles circle:nth-child(8) { animation: bubbleFloat8 3.6s ease-in-out infinite; }

/* hover state */
.liquid-btn:hover .liquid-btn__bubbles {
  opacity: 1;
}

.liquid-btn:hover .liquid-btn__blob-wrap {
  animation-duration: 2.2s;
}

.liquid-btn:hover .liquid-btn__blob {
  filter: drop-shadow(0 0 18px rgba(255, 191, 0, 0.42))
          drop-shadow(0 0 34px rgba(255, 191, 0, 0.22));
}

.liquid-btn:hover .liquid-btn__front {
  transform: rotate(-7deg) scale(1.02);
}

.liquid-btn:hover .liquid-btn__text {
  transform: translateY(-1px) scale(1.02);
  color: #4b4972;
}

/* active press */
.liquid-btn:active {
  transform: scale(0.98);
}

/* floating/morph effect */
@keyframes liquidBlobFloat {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-2px) rotate(2deg) scale(1.01);
  }
  50% {
    transform: translateY(1px) rotate(-2deg) scale(0.99);
  }
  75% {
    transform: translateY(-1px) rotate(1.5deg) scale(1.01);
  }
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
}

/* bubbles */
@keyframes bubbleFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  50% { transform: translate(-6px, -10px) scale(1.08); opacity: 1; }
}
@keyframes bubbleFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  50% { transform: translate(6px, -12px) scale(1.14); opacity: 1; }
}
@keyframes bubbleFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  50% { transform: translate(-8px, -8px) scale(1.1); opacity: 1; }
}
@keyframes bubbleFloat4 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50% { transform: translate(8px, -14px) scale(1.16); opacity: 1; }
}
@keyframes bubbleFloat5 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50% { transform: translate(-6px, -9px) scale(1.1); opacity: 1; }
}
@keyframes bubbleFloat6 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50% { transform: translate(-4px, 10px) scale(1.12); opacity: 1; }
}
@keyframes bubbleFloat7 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50% { transform: translate(5px, 12px) scale(1.15); opacity: 1; }
}
@keyframes bubbleFloat8 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.45; }
  50% { transform: translate(-3px, 8px) scale(1.05); opacity: 1; }
}

/* responsive */
@media (max-width: 768px) {
  .liquid-btn {
    width: 210px;
    height: 112px;
  }

  .liquid-btn__text {
    font-size: 18px;
  }
}

/* ========================================
   LIQUID BUTTON - PREMIUM EXTRA EFFECTS
   1. glow pulse
   2. hover ripple wave
   3. click splash
======================================== */

/* button bigger */
.liquid-btn {
  width: 300px;
  height: 160px;
  overflow: visible;
}

/* text bigger */
.liquid-btn__text {
  font-size: 24px;
  letter-spacing: 0.5px;
}

/* stronger glow pulse on blob */
.liquid-btn__blob {
  animation: liquidGlowPulse 2.8s ease-in-out infinite;
}

/* front mask little smooth */
.liquid-btn__front {
  transform-origin: center;
}

/* wave group hidden initially */
.liquid-btn__waves {
  opacity: 0;
  transition: opacity 0.35s ease;
}

.liquid-btn__waves ellipse {
  fill: none;
  stroke: rgba(255, 245, 200, 0.7);
  stroke-width: 2.5;
  transform-origin: center;
}

/* hover ripple wave inside blob */
.liquid-btn:hover .liquid-btn__waves {
  opacity: 1;
}

.liquid-btn:hover .liquid-btn__waves ellipse:nth-child(1) {
  animation: liquidWaveRipple 1.6s ease-out infinite;
}

.liquid-btn:hover .liquid-btn__waves ellipse:nth-child(2) {
  animation: liquidWaveRipple 1.6s ease-out 0.25s infinite;
}

/* splash container */
.liquid-btn__splash {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: visible;
}

/* dynamically created splash droplets */
.liquid-btn__drop {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffe38a, #ffbf00 65%, #ff9f1a);
  box-shadow:
    0 0 10px rgba(255, 191, 0, 0.4),
    0 0 20px rgba(255, 191, 0, 0.16);
  animation: liquidSplashDrop 700ms ease-out forwards;
}

/* hover extra glow */
.liquid-btn:hover .liquid-btn__blob {
  filter: drop-shadow(0 0 24px rgba(255, 191, 0, 0.48))
          drop-shadow(0 0 40px rgba(255, 191, 0, 0.24));
}

/* pulse keyframe */
@keyframes liquidGlowPulse {
  0% {
    filter: drop-shadow(0 0 10px rgba(255, 191, 0, 0.22))
            drop-shadow(0 0 18px rgba(255, 191, 0, 0.1));
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(255, 191, 0, 0.42))
            drop-shadow(0 0 34px rgba(255, 191, 0, 0.18));
  }
  100% {
    filter: drop-shadow(0 0 10px rgba(255, 191, 0, 0.22))
            drop-shadow(0 0 18px rgba(255, 191, 0, 0.1));
  }
}

/* wave ripple */
@keyframes liquidWaveRipple {
  0% {
    transform: scale(0.7);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* click splash droplets */
@keyframes liquidSplashDrop {
  0% {
    transform: translate(0, 0) scale(0.5);
    opacity: 1;
  }
  100% {
    transform: translate(var(--dx), var(--dy)) scale(1.2);
    opacity: 0;
  }
}

/* responsive */
@media (max-width: 768px) {
  .liquid-btn {
    width: 250px;
    height: 135px;
  }

  .liquid-btn__text {
    font-size: 20px;
  }

  .liquid-btn__drop {
    width: 10px;
    height: 10px;
  }
}

/* auto scroll animation */
@keyframes aboutPosterAutoScroll {
  0% {
    transform:
      translate(-50%, -42%)
      rotateX(72deg)
      scale(1.38);
  }
  100% {
    transform:
      translate(-50%, -58%)
      rotateX(72deg)
      scale(1.38);
  }
}

/* tablet */
@media (max-width: 1024px) {
  .about-hero {
    height: 65vh;
  }

  .about-hero__poster-grid {
    width: 1600px;
    grid-template-columns: repeat(10, 120px);
    gap: 10px;
    top: 65%;
    animation: aboutPosterAutoScrollTablet 35s linear infinite;
  }

  .about-hero__poster-grid img {
    width: 120px;
    height: 180px;
  }
}

@keyframes aboutPosterAutoScrollTablet {
  0% {
    transform:
      translate(-50%, -42%)
      rotateX(72deg)
      scale(1.2);
  }
  100% {
    transform:
      translate(-50%, -58%)
      rotateX(72deg)
      scale(1.2);
  }
}

/* mobile */
@media (max-width: 768px) {
  .about-hero {
    height: 58vh;
  }

    .about-hero__poster-grid {
    width: 1200px;
    grid-template-columns: repeat(10, 100px); /* 🔥 smaller */
    gap: 8px;
    top: 70%;
    animation: aboutPosterAutoScrollMobile 30s linear infinite;
  }

  .about-hero__poster-grid img {
    width: 100px;
    height: 150px;
    border-radius: 10px;
  }

  .about-hero__title {
    font-size: clamp(34px, 8vw, 52px);
  }

  .about-hero__desc {
    font-size: 15px;
    line-height: 1.6;
  }
}

@keyframes aboutPosterAutoScrollMobile {
  0% {
    transform: translate(-50%, -42%) rotateX(72deg) scale(1.1);}
  100% {
    transform: translate(-50%, -58%) rotateX(72deg) scale(1.1);}
}

@keyframes aboutPosterAutoScrollTablet {
  0% {
    transform: translate(-50%, -42%) rotateX(72deg) scale(1.2);}
  100% {
    transform: translate(-50%, -58%) rotateX(72deg) scale(1.2);}
}


/* ========================================
   ABOUT INTRO SECTION
======================================== */
.about-intro {
  background: #000;
  padding: 80px 20px;
}

.about-intro__container {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start; /* center -> start */
}

.about-intro__text {
  margin-top: -15px;
}

/* LEFT TEXT */
.about-intro__text h2 {
  color: #ffbf00;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
}

.about-intro__text p {
  font-size: 16px;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 18px;
}

.about-intro__btn {
  display: inline-block;
  margin-top: 10px;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  background: linear-gradient(90deg, #ffbf00, #ff9f00);
  color: #000;
  transition: all 0.3s ease;
}

.about-intro__btn:hover {
  transform: translateY(-2px);
}

/* RIGHT IMAGE */
.about-intro__image img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-intro__container {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   ABOUT FEATURES (✔ list)
======================================== */
.about-intro__features {
  list-style: none;
  margin-top: 24px;
  padding: 0;
}

.about-intro__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  color: #ffffff;
}

/* icon style */
.about-intro__icon {
  width: 26px;
  height: 26px;
  background: #ffbf00;
  box-shadow: 0 0 12px rgba(255,191,0,0.6);
  color: #000;
  font-size: 14px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ========================================
   FOUNDER SECTION
======================================== */
.founder {
  background: #000000;
  padding: 80px 20px;
}

.founder__container {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE */
.founder__image img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
   /* 🔥 glow effect */
  box-shadow: 
    0 0 25px rgba(255,191,0,0.5),
    0 0 60px rgba(255,191,0,0.3),
    0 25px 60px rgba(0,0,0,0.7);
    animation: glowPulse 3s infinite ease-in-out;
}

@keyframes glowPulse {
  0% {
    box-shadow: 
      0 0 10px rgba(255,191,0,0.3),
      0 0 20px rgba(255,191,0,0.2);
  }
  50% {
    box-shadow: 
      0 0 30px rgba(255,191,0,0.6),
      0 0 60px rgba(255,191,0,0.3);
  }
  100% {
    box-shadow: 
      0 0 10px rgba(255,191,0,0.3),
      0 0 20px rgba(255,191,0,0.2);
  }
}

/* CONTENT */
.founder__name {
  color: #ffbf00 !important;
  font-size: 35px;
  font-weight: 800;
  margin-bottom: 10px;
}

.founder__role {
  color: #ffffff !important;
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 20px;
}

.founder__content p {
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .founder__container {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   ACHIEVEMENTS SECTION
======================================== */
.achievements {
  background: #000;
  padding: 80px 20px;
}

.achievements .container {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.achievements__title {
  font-size: 42px;
  margin-bottom: 50px;
  font-weight: 800;
  color: #fff;
  text-align: center;
}

.achievements__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.achievement-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 40px 20px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 191, 0, 0.2);
}

.achievement-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 10px 30px rgba(255, 191, 0, 0.2),
    0 0 20px rgba(255, 191, 0, 0.15);
}

.achievement-card__icon {
  font-size: 30px;
  margin-bottom: 15px;
}

.achievement-card__number {
  font-size: 34px;
  font-weight: 800;
  color: #ffbf00;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(255,191,0,0.4);
}

.achievement-card p {
  color: #ccc;
  font-size: 15px;
  margin: 0;
}

@media (max-width: 992px) {
  .achievements__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .achievements__title {
    font-size: 32px;
  }

  .achievements__grid {
    grid-template-columns: 1fr;
  }
}

.no-counter {
  letter-spacing: 1px;
}

/* ========================================
   TIMELINE SECTION
   - cinematic black + gold style
   - vertical line
   - glow dots
======================================== */
.timeline {
  background: #000;
  padding: 90px 20px;
  position: relative;
  overflow: hidden;
}

.timeline__container {
  width: min(1100px, 100%);
  margin: 0 auto;
}

.timeline__header {
  text-align: center;
  margin-bottom: 60px;
}

.timeline__subtitle {
  color: #ffbf00;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.timeline__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.8px;
}

.timeline__desc {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.8;
}

/* timeline wrapper */
.timeline__list {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 950px;
}

/* vertical line */
.timeline__list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 170px;
  width: 2px;
  animation: glowLine 3s ease-in-out infinite;
}

@keyframes glowLine {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* each timeline row */
.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 130px 40px 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 46px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.timeline__item.show {
  opacity: 1;
  transform: translateY(0);
}

/* year */
.timeline__year {
  font-size: 26px;
  font-weight: 800;
  color: #ffbf00;
  text-align: right;
  line-height: 1;
  padding-top: 4px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.timeline__item:hover .timeline__year {
  transform: scale(1.1);
  color: #ffd84d;
}

/* dot */
.timeline__dot {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffe38a, #ffbf00 60%, #ff9f1a);
  margin-top: 4px;
  z-index: 2;
  box-shadow:
    0 0 10px rgba(255, 191, 0, 0.55),
    0 0 22px rgba(255, 191, 0, 0.28);
}

/* optional pulse */
.timeline__dot::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 191, 0, 0.22);
  animation: timelinePulse 2.8s ease-out infinite;
}

.timeline__item:hover .timeline__dot {
  box-shadow:
    0 0 15px rgba(255, 191, 0, 0.9),
    0 0 35px rgba(255, 191, 0, 0.4);
}

/* content card */
.timeline__content {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 191, 0, 0.12);
  border-radius: 18px;
  padding: 22px 24px;
  backdrop-filter: blur(8px);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.timeline__content:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 191, 0, 0.28);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.42),
    0 0 20px rgba(255, 191, 0, 0.12);
}

.timeline__content h3 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.timeline__content p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.74);
  margin: 0;
}

/* dot pulse */
@keyframes timelinePulse {
  0% {
    transform: scale(0.85);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

/* tablet */
@media (max-width: 900px) {
  .timeline__list::before {
    left: 145px;
  }

  .timeline__item {
    grid-template-columns: 110px 34px 1fr;
    gap: 18px;
  }

  .timeline__year {
    font-size: 22px;
  }

  .timeline__content h3 {
    font-size: 20px;
  }
}

/* mobile */
@media (max-width: 768px) {
  .timeline {
    padding: 70px 16px;
  }

  .timeline__header {
    margin-bottom: 42px;
  }

  .timeline__desc {
    font-size: 14px;
    line-height: 1.7;
  }

  .timeline__list::before {
    left: 18px;
  }

  .timeline__item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-left: 44px;
    margin-bottom: 34px;
  }

  .timeline__year {
    text-align: left;
    font-size: 20px;
    padding-top: 0;
  }

  .timeline__dot {
    position: absolute;
    left: 9px;
    top: 6px;
    width: 16px;
    height: 16px;
  }

  .timeline__content {
    padding: 18px 18px;
  }

  .timeline__content h3 {
    font-size: 18px;
  }

  .timeline__content p {
    font-size: 14px;
  }
}


/* ========================================
   STRENGTHS + GROUP SECTION
======================================== */
.group-strength {
  background: #000;
  padding: 70px 20px 30px;
}

.group-strength__container {
  width: min(1250px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: start;
}

.group-strength__subtitle {
  color: #ffbf00;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.group-strength__title {
  color: #fff;
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.6px;
}

.group-strength__desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 34px;
  max-width: 620px;
}

/* ========================================
   MSK GROUP HOVER TEXT OVERLAY
======================================== */
.group-logo-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20, 15, 0, 0.82),
    rgba(255, 191, 0, 0.32)
  );
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  opacity: 0;
  transform: scale(0.96);
  transition: all 0.35s ease;
  border-radius: 18px;
  border: 1px solid rgba(255, 191, 0, 0.42);
  box-shadow:
    0 0 20px rgba(255, 191, 0, 0.28),
    0 0 50px rgba(255, 191, 0, 0.15),
    inset 0 0 30px rgba(255, 191, 0, 0.1);
  z-index: 3;
}

.group-logo-card__overlay-text {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.6;
  /* subtle glow */
  text-shadow: 0 0 10px rgba(255, 191, 0, 0.15);
}

.group-logo-card__overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;

  background: linear-gradient(
    90deg,
    #ffbf00,
    #ffd84d,
    #ffbf00
  );

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;

  opacity: 0.6;
}

.group-logo-card:hover .group-logo-card__overlay {
  opacity: 1;
  transform: scale(1);
   box-shadow:
    0 0 25px rgba(255,191,0,0.45),
    0 0 60px rgba(255,191,0,0.2);
}

.group-logo-card img,
.group-logo-card h3,
.group-logo-card p {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.group-logo-card:hover img,
.group-logo-card:hover h3,
.group-logo-card:hover p {
  opacity: 0;
  transform: scale(0.96);
}


.group-logo-card::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -120%;
  width: 70%;
  height: 140%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 230, 150, 0.12) 35%,
    rgba(255, 245, 200, 0.35) 50%,
    rgba(255, 230, 150, 0.12) 65%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(18deg);
  opacity: 0;
  pointer-events: none;
  z-index: 4;
}

.group-logo-card:hover::before {
  opacity: 1;
  animation: groupCardSweep 1.1s ease forwards;
}

@keyframes groupCardSweep {
  0% {
    left: -120%;
  }
  100% {
    left: 150%;
  }
}

/* ========================================
   MSK GROUP SPARKS
======================================== */
.group-strength__right {
  position: relative;
}

.group-strength__sparks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.group-logos {
  position: relative;
  z-index: 2;
}

/* spark base */
.group-spark {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: radial-gradient(circle, #ffe38a 0%, #ffbf00 55%, rgba(255,191,0,0) 100%);
  box-shadow:
    0 0 8px rgba(255, 191, 0, 0.45),
    0 0 18px rgba(255, 191, 0, 0.18);
  opacity: 0.7;
  animation: groupSparkFloat 7s ease-in-out infinite;
}

/* positions */
.group-spark--1 {
  width: 8px;
  height: 8px;
  top: 14%;
  left: 10%;
  animation-delay: 0s;
}

.group-spark--2 {
  width: 6px;
  height: 6px;
  top: 8%;
  right: 18%;
  animation-delay: 1s;
}

.group-spark--3 {
  width: 10px;
  height: 10px;
  top: 46%;
  right: 6%;
  animation-delay: 2s;
}

.group-spark--4 {
  width: 7px;
  height: 7px;
  bottom: 22%;
  left: 12%;
  animation-delay: 0.5s;
}

.group-spark--5 {
  width: 9px;
  height: 9px;
  bottom: 10%;
  right: 28%;
  animation-delay: 1.5s;
}

.group-spark--6 {
  width: 6px;
  height: 6px;
  top: 58%;
  left: 42%;
  animation-delay: 2.5s;
}

/* motion */
@keyframes groupSparkFloat {
  0% {
    transform: translateY(0px) scale(1);
    opacity: 0.35;
  }
  25% {
    transform: translateY(-10px) translateX(4px) scale(1.08);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-18px) translateX(-4px) scale(1.18);
    opacity: 1;
  }
  75% {
    transform: translateY(-10px) translateX(3px) scale(1.05);
    opacity: 0.75;
  }
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.35;
  }
}

/* ========================================
   OUR STRENGTHS - ORBIT STYLE
======================================== */
.strength-orbit .group-strength__title {
  margin-bottom: 26px;
}

.strength-orbit__wrap {
  position: relative;
  min-height: 680px;
  margin-top: 20px;
  --orbit-size: 460px;
  --orbit-radius: 230px;
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}
.strength-orbit__wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--orbit-size);
  height: var(--orbit-size);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed rgba(255, 191, 0, 0.14);
  box-shadow:
    0 0 120px rgba(255, 191, 0, 0.08);
}

.strength-orbit__wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--orbit-size);
  height: var(--orbit-size);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 0.7;
  background: radial-gradient(
    circle at center,
    rgba(255, 191, 0, 0.25),
    rgba(255, 191, 0, 0.12) 40%,
    rgba(255, 191, 0, 0.05) 60%,
    transparent 75%
  );
  filter: blur(40px);
  mask: radial-gradient(circle, transparent 62%, black 64%);
  animation: orbitGlowRotate 16s linear infinite;
  box-shadow:
    0 0 40px rgba(255, 191, 0, 0.25),
    0 0 80px rgba(255, 191, 0, 0.15),
    inset 0 0 30px rgba(255, 191, 0, 0.1);
}

/* center panel */
.strength-orbit__center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  height: 220px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 191, 0, 0.08), transparent 45%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 191, 0, 0.18);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px;
  z-index: 3;
   box-shadow:
    0 0 40px rgba(255, 191, 0, 0.2),
    0 0 80px rgba(255, 191, 0, 0.1),
    0 20px 50px rgba(0, 0, 0, 0.6);
}

.strength-orbit__center h3 {
  text-shadow: 0 2px 10px rgba(255,255,255,0.2);
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.2;
}

.strength-orbit__center p {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

.strength-orbit__ring {
  position: absolute;
  inset: 0;
  animation: orbitRotate 40s linear infinite;
  z-index: 2;
}

.strength-orbit__item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform:
    translate(-50%, -50%)
    rotate(var(--angle))
    translateY(calc(var(--orbit-radius) * -1));
  transform-origin: center center;
}

/* IMPORTANT */
.strength-orbit__card-rotate {
  transform: rotate(calc(-1 * var(--angle)));
  animation: orbitCounterRotate 40s linear infinite;
  transform-origin: center center;
}

.strength-orbit__card {
  width: 210px;
  min-height: 120px;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255, 191, 0, 0.14);
  backdrop-filter: blur(12px);
  padding: 18px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.4),
    0 0 10px rgba(255, 191, 0, 0.08);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.strength-orbit__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,191,0,0.15),
    transparent
  );
  opacity: 0;
  transition: 0.4s;
}

.strength-orbit__card:hover::before {
  opacity: 1;
}

/* hover card only */
.strength-orbit__card:hover {
  transform: scale(1.08);
  border-color: rgba(255, 191, 0, 0.5);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(255, 191, 0, 0.3);
}

@keyframes orbitRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes orbitCounterRotate {
  from { transform: rotate(calc(-1 * var(--angle))) rotate(0deg); }
  to { transform: rotate(calc(-1 * var(--angle))) rotate(-360deg); }
}


.strength-orbit__card:hover .strength-orbit__icon {
  box-shadow: 0 0 25px rgba(255, 191, 0, 0.6);
  transform: scale(1.1);
}

.strength-orbit__icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffd54a, #ffbf00);
  color: #111;
  font-size: 22px;
  box-shadow: 0 0 14px rgba(255, 191, 0, 0.25);
  animation: iconPulse 2.5s ease-in-out infinite;
}


@keyframes iconPulse {
  0%, 100% {
    box-shadow: 0 0 12px rgba(255, 191, 0, 0.2);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 191, 0, 0.6);
  }
}

.strength-orbit__card h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  margin: 0;
}

/* ========================================
   ORBIT PARTICLES / LIGHT SPARKS
======================================== */
.strength-orbit__sparks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* base spark */
.spark {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: radial-gradient(circle, #ffe38a 0%, #ffbf00 55%, rgba(255,191,0,0) 100%);
  box-shadow:
    0 0 8px rgba(255, 191, 0, 0.45),
    0 0 18px rgba(255, 191, 0, 0.18);
  opacity: 0.7;
  animation: sparkFloat 7s ease-in-out infinite;
}

/* individual particle positions */
.spark--1 {
  width: 8px;
  height: 8px;
  top: 12%;
  left: 32%;
  animation-delay: 0s;
}

.spark--2 {
  width: 6px;
  height: 6px;
  top: 20%;
  right: 18%;
  animation-delay: 1s;
}

.spark--3 {
  width: 10px;
  height: 10px;
  top: 45%;
  right: 6%;
  animation-delay: 2s;
}

.spark--4 {
  width: 7px;
  height: 7px;
  bottom: 18%;
  right: 22%;
  animation-delay: 0.5s;
}

.spark--5 {
  width: 9px;
  height: 9px;
  bottom: 10%;
  left: 36%;
  animation-delay: 1.5s;
}

.spark--6 {
  width: 6px;
  height: 6px;
  bottom: 26%;
  left: 8%;
  animation-delay: 2.5s;
}

.spark--7 {
  width: 8px;
  height: 8px;
  top: 38%;
  left: 6%;
  animation-delay: 3s;
}

.spark--8 {
  width: 5px;
  height: 5px;
  top: 6%;
  left: 55%;
  animation-delay: 3.5s;
}

/* movement animation */
@keyframes sparkFloat {
  0% {
    transform: translateY(0px) scale(1);
    opacity: 0.35;
  }
  25% {
    transform: translateY(-10px) translateX(4px) scale(1.08);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-18px) translateX(-4px) scale(1.18);
    opacity: 1;
  }
  75% {
    transform: translateY(-10px) translateX(3px) scale(1.05);
    opacity: 0.75;
  }
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.35;
  }
}


/* tablet */
@media (max-width: 1200px) {
  .strength-orbit__wrap {
    min-height: 700px;
  }

  .strength-orbit__center {
    width: 240px;
    height: 240px;
  }

  .strength-orbit__center h3 {
    font-size: 28px;
  }

  .strength-orbit__item {
    width: 180px;
    min-height: 110px;
  }

  .strength-orbit__item h4 {
    font-size: 16px;
  }
}

/* mobile */
@media (max-width: 768px) {
  .strength-orbit__wrap {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .strength-orbit__center,
  .strength-orbit__item {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none !important;
    width: 100%;
  }

  .strength-orbit__center {
    height: auto;
    border-radius: 24px;
    padding: 26px 20px;
  }

  .strength-orbit__item {
    min-height: auto;
  }
}

/* right side logos */
.group-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 18px;
}

.group-logo-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 191, 0, 0.14);
  padding: 28px 18px;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.group-logo-card.show {
  opacity: 1;
  transform: translateY(0);
}

.group-logo-card:hover {
  border-color: rgba(255, 191, 0, 0.28);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.45),
    0 0 24px rgba(255, 191, 0, 0.18);
}

.group-logo-card img {
  max-width: 130px;
  max-height: 95px;
  object-fit: contain;
  margin: 0 auto 18px;
  display: block;
  filter: drop-shadow(0 0 10px rgba(255, 191, 0, 0.08));
}

.group-logo-card h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.3;
}

.group-logo-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  margin: 0;
}

/* tablet */
@media (max-width: 992px) {
  .group-strength__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* mobile */
@media (max-width: 768px) {
  .group-strength {
    padding: 70px 16px;
  }

  .group-strength__desc {
    font-size: 14px;
    line-height: 1.7;
  }

  .strength-cards,
  .group-logos {
    grid-template-columns: 1fr;
  }

  .strength-card h3,
  .group-logo-card h3 {
    font-size: 18px;
  }

  .group-logo-card {
    min-height: auto;
  }
}


/* ======================================================================
   NEWSLETTER SECTION
====================================================================== */
.newsletter {
  position: relative;
  overflow: hidden;
  background: transparent;
  padding: 60px 30px;
}

/* soft ambient background glow */
.newsletter::before,
.newsletter::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.45;
}

.newsletter::before {
  width: 320px;
  height: 320px;
  left: -80px;
  top: 40px;
  background: rgba(255, 210, 70, 0.18);
}

.newsletter::after {
  width: 360px;
  height: 360px;
  right: -100px;
  bottom: -60px;
  background: rgba(80, 110, 255, 0.18);
}

/* yellow card */
.newsletter__container {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  background: linear-gradient(90deg, #fcff9e 0%, #c67700 100%);
  border-radius: 22px;
  padding: 42px 50px;
  animation: newsletterFloat 4.8s ease-in-out infinite;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.22),
    0 0 30px rgba(255, 210, 70, 0.18),
    0 0 70px rgba(255, 200, 0, 0.12);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* hover lift */
.newsletter__container:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 28px 55px rgba(0, 0, 0, 0.24),
    0 0 36px rgba(255, 220, 90, 0.28),
    0 0 90px rgba(255, 190, 0, 0.18);
}

/* animated outline glow */
.newsletter__container::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.22),
    rgba(255, 220, 90, 0.18),
    rgba(255, 170, 0, 0.18),
    rgba(255, 255, 255, 0.08)
  );
  z-index: -1;
  filter: blur(14px);
  opacity: 0.9;
}

/* subtle shine sweep */
.newsletter__container::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -20%;
  width: 35%;
  height: 180%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0)
  );
  transform: rotate(18deg) translateX(-220%);
  animation: newsletterShine 5.5s ease-in-out infinite;
  pointer-events: none;
}

.newsletter__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.newsletter__text {
  max-width: 520px;
}

.newsletter__title {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  color: #000000;
  margin-bottom: 12px;
  line-height: 1.15;
}

.newsletter__desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.92);
  max-width: 420px;
}

.newsletter__form {
  flex: 1;
  max-width: 570px;
  display: flex;
  align-items: center;
  gap: 0;
}

.newsletter__form input {
  flex: 1;
  height: 52px;
  padding: 0 20px;
  border: none;
  border-radius: 14px 0 0 14px;
  background: #ececec;
  color: #1e2430;
  font-size: 16px;
  outline: none;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.08);
}

.newsletter__form input::placeholder {
  color: #5f6673;
}

.newsletter__form button {
  height: 52px;
  padding: 0 28px;
  border: none;
  border-radius: 0 14px 14px 0;
  background: #6d3100;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, opacity 0.25s ease;
  box-shadow: 0 8px 18px rgba(2, 10, 54, 0.22);
}

.newsletter__form button:hover {
  transform: translateY(-1px);
  opacity: 0.95;
  box-shadow: 0 12px 24px rgba(2, 10, 54, 0.3);
}

/* floating animation */
@keyframes newsletterFloat {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* shine animation */
@keyframes newsletterShine {
  0% {
    transform: rotate(18deg) translateX(-220%);
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  40% {
    transform: rotate(18deg) translateX(520%);
    opacity: 0;
  }
  100% {
    transform: rotate(18deg) translateX(520%);
    opacity: 0;
  }
}


.newsletter__message {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: #3f210b;
}

/* Responsive */
@media (max-width: 900px) {
  .newsletter__container {
    padding: 30px 24px;
  }

  .newsletter__content {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter__form {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .newsletter {
    padding: 40px 16px;
  }

  .newsletter__container {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .newsletter__title {
    font-size: 28px;
  }

  .newsletter__desc {
    font-size: 15px;
  }

  .newsletter__form {
    flex-direction: column;
    gap: 12px;
  }

  .newsletter__form input,
  .newsletter__form button {
    width: 100%;
    border-radius: 12px;
  }

  .newsletter__form button {
    justify-content: center;
  }
}

/* mobile reduce motion feel */
@media (max-width: 768px) {
  .newsletter__container {
    animation: newsletterFloatMobile 5.2s ease-in-out infinite;
  }

  .newsletter__container::after {
    animation-duration: 6.5s;
  }
}

@keyframes newsletterFloatMobile {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(0px);
  }
}


/* ========================================
   FILMS PAGE
======================================== */
/* ========================================
   FILMS HERO 3D POSTER REVEAL
======================================== */
.films-hero-3d {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 191, 0, 0.12), transparent 22%),
    radial-gradient(circle at 15% 30%, rgba(120, 60, 255, 0.08), transparent 24%),
    radial-gradient(circle at 85% 20%, rgba(0, 160, 255, 0.08), transparent 22%),
    linear-gradient(180deg, #040404 0%, #070707 45%, #020202 100%);
  padding: 140px 0 70px;
}

.films-hero-3d__bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255, 215, 120, 0.08), transparent 28%);
  pointer-events: none;
  z-index: 0;
}

.films-hero-3d__noise {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, black, transparent 85%);
  pointer-events: none;
  z-index: 0;
}

.films-hero-3d__inner {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.films-hero-3d__content {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
  transform: translateY(25px);    /*text button move down abit*/
}

.films-hero-3d__desc {
  max-width: 760px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 19px;
  line-height: 1.9;
}

.films-hero-3d__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* posters section */
.films-hero-3d__posters {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 34px;
  perspective: 1800px;
  min-height: 520px;
  padding-top: 10px;
}


body.modal-open {
  overflow: hidden;
}

.btn--gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  color: #111111;
  background: linear-gradient(135deg, #ffd54a, #ffbf00, #ff9f1a);
  box-shadow: 0 14px 30px rgba(255, 191, 0, 0.22);
  border: none;
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(255, 191, 0, 0.3);
}

.films-filter {
  background: #070707;
  padding: 24px 0 10px;
}

.films-filter__inner {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.films-filter__chip {
  border: 1px solid rgba(255, 191, 0, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.28s ease;
}

.films-filter__chip:hover,
.films-filter__chip.active {
  background: linear-gradient(135deg, #ffd54a, #ffbf00, #ff9f1a);
  color: #111111;
  border-color: transparent;
}

.films-spotlight {
  background: #070707;
  padding: 48px 0 30px;
}

.films-spotlight__container {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 38px;
  align-items: center;
}

.films-spotlight__poster {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.films-spotlight__poster img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  display: block;
}

.films-spotlight__play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: transform 0.28s ease, background 0.28s ease;
}

.films-spotlight__play:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(255, 191, 0, 0.92);
  color: #111111;
}

.films-spotlight__label {
  color: #f7c948;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.8px;
  margin-bottom: 12px;
}

.films-spotlight__title {
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1;
  color: #ffffff;
  margin-bottom: 18px;
}

.films-spotlight__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 22px;
  font-size: 15px;
}

.films-spotlight__desc {
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.9;
  max-width: 640px;
  margin-bottom: 30px;
}

.films-spotlight__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.films-spotlight__stat {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 191, 0, 0.1);
}

.films-spotlight__stat strong {
  display: block;
  color: #ffd24d;
  font-size: 24px;
  margin-bottom: 6px;
}

.films-spotlight__stat span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.films-collection {
  background: #070707;
  padding: 42px 0 80px;
}

.films-collection__head {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto 28px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
}

.films-collection__eyebrow {
  color: #f7c948;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.8px;
  margin-bottom: 10px;
}

.films-collection__title {
  font-size: clamp(30px, 4vw, 48px);
  color: #ffffff;
}

.films-collection__desc {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.films-grid {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.film-card {
  background: #0d0d0d;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 191, 0, 0.08);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.film-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 191, 0, 0.24);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.34);
}

.film-card__image-wrap {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.film-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.film-card:hover .film-card__image {
  transform: scale(1.06);
}

.film-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.06)),
    linear-gradient(to bottom, rgba(255, 191, 0, 0.06), transparent);
}

.film-card__play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.48);
  color: #ffffff;
  font-size: 22px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.28s ease, transform 0.28s ease, background 0.28s ease;
}

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

.film-card__play:hover {
  background: rgba(255, 191, 0, 0.95);
  color: #111111;
}

.film-card__body {
  padding: 18px 18px 22px;
}

.film-card__title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.film-card__meta {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.film-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.film-modal.show {
  display: block;
}

.film-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

.film-modal__dialog {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: min(960px, calc(100% - 32px));
  background: #090909;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 191, 0, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.film-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.62);
  color: #ffffff;
  font-size: 18px;
}

.film-modal__video-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.film-modal__video-wrap iframe {
  width: 100%;
  height: 100%;
}

.film-modal__content {
  padding: 24px;
}

.film-modal__content h3 {
  color: #ffffff;
  font-size: 26px;
  margin-bottom: 10px;
}

.film-modal__content p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.8;
}

#filmModalMeta {
  margin-bottom: 10px;
  color: #ffd24d;
}

@media (max-width: 1100px) {
  .films-spotlight__container,
  .films-collection__head {
    grid-template-columns: 1fr;
    display: grid;
    align-items: start;
  }

  .films-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .films-spotlight__poster img {
    height: 560px;
  }
}

@media (max-width: 768px) {
  .films-hero {
    padding: 120px 20px 70px;
    min-height: 72vh;
  }

  .films-hero__desc {
    font-size: 16px;
  }

  .films-filter__inner,
  .films-spotlight__container,
  .films-collection__head,
  .films-grid {
    width: calc(100% - 24px);
  }

  .films-grid {
    grid-template-columns: 1fr;
  }

  .films-spotlight__poster img {
    height: 460px;
  }

  .films-spotlight__stats {
    grid-template-columns: 1fr;
  }

  .film-card__image-wrap {
    height: 360px;
  }
}

/* ========================================
   FILMS HERO - CINEMATIC LOOP CAROUSEL
======================================== */
.films-hero-carousel {
  position: relative;
  width: 100%;
  height: 320px;
  margin-top: 10px;
  overflow: hidden;
  padding: 10px 0 20px;
  background: transparent; /* IMPORTANT */
  transform: translateY(-35px);
}

.films-hero-carousel {
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );

  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}


.films-hero-carousel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  background: linear-gradient(
    to left,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,0.85) 20%,
    rgba(0,0,0,0.4) 50%,
    transparent 100%);
  pointer-events: none;
}

/* ========================================
   FILMS HERO - SEAMLESS CINEMATIC CAROUSEL
======================================== */
.carousel-track {
  display: flex;
  width: max-content;
  animation: seamless-marquee 28s linear infinite;
  will-change: transform;
}

.carousel-group {
  display: flex;
  align-items: stretch; /* 🔥 instead of flex-end */
  gap: 22px;
  flex-shrink: 0;
}

.carousel-item {
  flex: 0 0 auto;
  width: 200px;
  height: 380px;
  margin-right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1600px;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.85),
    0 0 40px rgba(255, 191, 0, 0.18);
  mask-image: linear-gradient(to bottom, black 78%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 78%, transparent 100%);
  transition: transform 0.45s ease, filter 0.45s ease, box-shadow 0.45s ease;
  filter: brightness(0.92) contrast(1.03);
}

/* alternating 3D tilt */
.carousel-item:nth-child(odd) .carousel-card img {
  transform: rotateY(-10deg);
}

.carousel-item:nth-child(even) .carousel-card img {
  transform: rotateY(10deg);
}

/* hover */
.carousel-item:hover {
  z-index: 4;
}

.carousel-item:hover img {
  transform: rotateY(0deg) translateY(-8px) scale(1.04);
  filter: brightness(1) contrast(1.05);
  box-shadow:
    0 34px 70px rgba(0, 0, 0, 0.82),
    0 0 34px rgba(255, 191, 0, 0.2);
}

/* seamless movement */
@keyframes seamless-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.carousel-item:nth-child(4) .carousel-card img,
.carousel-item:nth-child(5) .carousel-card img {
  transform: scale(1.05) rotateY(0deg);
  z-index: 3;
}

.carousel-card {
  background: transparent !important;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 14px;
}

.carousel-card img {
  background: transparent !important;
  width: 100%;
  height: 100%;
  object-fit: cover;   /* 🔥 IMPORTANT */
  object-position: center;
  display: block;
  transform: rotateY(-8deg);
}

/* edge fade */
.films-hero-carousel::before,
.films-hero-carousel::after {
  content: none !important;
  display: none !important;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 3;
  pointer-events: none;
  backdrop-filter: blur(6px);
}

.films-hero-carousel::before {
  left: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.8), transparent);
}

.films-hero-carousel::after {
  right: 0;
  background: linear-gradient(to left, #000 0%, rgba(0, 0, 0, 0.7) 35%, transparent 100%);
}

/* bottom fade */
.films-hero-carousel::after {
  right: 0;
  background: linear-gradient(to left, rgba(0,0,0,0.8), transparent);
}

@media (max-width: 1100px) {
  .carousel-item {
    width: 145px;
    height: 290px;
    margin-right: -16px;
  }
}

@media (max-width: 768px) {
  .films-hero-carousel {
    margin-top: 28px;
  }

  .carousel-track {
    animation-duration: 22s;
  }

  .carousel-item {
    width: 200px;
    height: 380px;
    margin-right: -12px;
    flex: 0 0 auto;
  }
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: rotateY(-40deg);
  transition: 0.5s ease;
  border-radius: 12px;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.8),
    0 0 40px rgba(255, 200, 0, 0.15);
  filter: contrast(1.05) brightness(0.9);
}

.carousel-item:hover img {
  transform: rotateY(0deg) scale(1.05);
}


.carousel-item:nth-child(odd) img {
  transform: rotateY(-35deg);
}

.carousel-item:nth-child(even) img {
  transform: rotateY(35deg);
}
