.gs-movie-hero {
  position: relative;
  padding: 80px 20px;
  background: radial-gradient(circle at top left, #3d3656, #3d3656);
  color: #fff;
  overflow: hidden;
  margin-top: 39px;
}

.gs-bg-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle,#6c6cff,transparent 70%);
  top: -150px;
  left: -150px;
  opacity: 0.35;
}

.gs-hero-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Poster */
.gs-poster-wrap {
  position: relative;
}

.gs-poster-wrap img {
  width: 260px;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  transform: perspective(900px) rotateY(-8deg);
}

.gs-poster-ring {
  position: absolute;
  inset: -14px;
  border-radius: 22px;
  border: 2px solid rgba(255,255,255,0.15);
  animation: floatRing 6s infinite ease-in-out;
}

@keyframes floatRing {
  0% { transform: translateY(0); }
  50% { transform: translateY(10px); }
  100% { transform: translateY(0); }
}

/* Content */
.gs-title {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.1;
}

.gs-subline {
  margin: 12px 0 30px;
  font-size: 18px;
  color: #c7c9ff;
}

/* Stats */
.gs-stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
  margin-bottom: 26px;
}

.gs-stat {
  background: rgba(255,255,255,0.08);
  padding: 16px;
  border-radius: 14px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: transform .3s ease;
}

.gs-stat:hover {
  transform: translateY(-6px);
}

.gs-stat strong {
  display: block;
  font-size: 22px;
}

.gs-stat span {
  font-size: 13px;
  color: #cfd2ff;
}

/* Mood */
.gs-mood span {
  display: inline-block;
  margin: 6px 8px 0 0;
  padding: 8px 14px;
  border-radius: 30px;
  background: rgba(255,255,255,0.12);
  font-size: 14px;
}

/* Buttons */
.gs-actions {
  margin-top: 34px;
  display: flex;
  gap: 16px;
}

.gs-btn-primary {
  padding: 14px 26px;
  background: linear-gradient(135deg,#6c6cff,#8a8aff);
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(108,108,255,.45);
}

.gs-btn-secondary {
    padding: 14px 22px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    color: #000000;
    text-decoration: none;
    background: #ffd200;
    font-weight: 500;
}
.gs-ico {
  display: inline-block;
  margin-bottom: 6px;
  animation: softPulse 2.8s infinite ease-in-out;
}

@keyframes softPulse {
  0% { opacity: .6; }
  50% { opacity: 1; }
  100% { opacity: .6; }
}
/* =========================
   MOBILE OPTIMIZATION
========================= */
@media (max-width: 768px) {

  .gs-movie-hero {
    padding: 48px 16px 56px;
  }

  .gs-hero-inner {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  /* Poster */
  .gs-poster-wrap img {
    width: 190px;
    transform: none;
  }

  .gs-poster-ring {
    inset: -10px;
  }

  /* Title */
  .gs-title {
    font-size: 30px;
    line-height: 1.25;
  }

  .gs-subline {
    font-size: 15px;
    margin-bottom: 22px;
  }

  /* Stats → 2x2 grid */
  .gs-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .gs-stat {
    padding: 14px 10px;
  }

  .gs-stat strong {
    font-size: 18px;
  }

  /* Mood tags */
  .gs-mood {
    margin-top: 18px;
  }

  .gs-mood span {
    font-size: 13px;
    padding: 7px 12px;
  }

  /* Buttons */
  .gs-actions {
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
  }

  .gs-btn-primary,
  .gs-btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px 0;
    font-size: 16px;
  }

  /* Reduce animation on mobile */
  .gs-ico {
    animation: none;
  }

  .gs-poster-ring {
    animation: none;
  }
}
@media (max-width: 768px) {
  .gs-actions {
    position: sticky;
    
  }
}
@media (max-width: 360px) {
  .gs-title {
    font-size: 26px;
  }
}
.gs-scroll-nav-wrap {
  position: sticky;
  top: 0;
  z-index: 99;
 
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

.gs-scroll-nav {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 10px;
  padding: 10px 14px;
  overflow-x: auto;
  scrollbar-width: none;
}

.gs-scroll-nav::-webkit-scrollbar {
  display: none;
}

/* Buttons */
.gs-scroll-nav button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: all .25s ease;
}

.gs-scroll-nav button i {
  font-size: 18px;
  opacity: .9;
}

/* Hover / Active */
.gs-scroll-nav button:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-1px);
}

/* Active state (JS will add this) */
.gs-scroll-nav button.active {
  background: linear-gradient(135deg,#6c6cff,#8a8aff);
  box-shadow: 0 6px 20px rgba(108,108,255,.45);
}
.gs-scroll-nav button i {
  animation: iconPulse 3s infinite ease-in-out;
}

@keyframes iconPulse {
  0% { opacity: .6; }
  50% { opacity: 1; }
  100% { opacity: .6; }
}
.gs-trailer-section {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 16px;
}

/* Header */
.gs-trailer-header {
  text-align: center;
  margin-bottom: 26px;
}

.gs-trailer-badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  background: linear-gradient(135deg,#ff4d4d,#ff7a7a);
  color: #fff;
  margin-bottom: 12px;
}

.gs-trailer-header h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #1f1f2e;
}

.gs-trailer-header p {
  font-size: 15px;
  color: #666;
}

/* Frame */
.gs-trailer-frame {
  position: relative;
  border-radius: 22px;
  padding: 14px;
  background: linear-gradient(135deg,#1c1f3a,#0e1025);
  box-shadow: 
    0 30px 60px rgba(0,0,0,.25),
    inset 0 0 0 1px rgba(255,255,255,.08);
  overflow: hidden;
}

/* Glow */
.gs-trailer-glow {
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle,#6c6cff,transparent 65%);
  opacity: .25;
  z-index: 0;
}

/* Video wrapper */
.gs-video-wrapper {
  position: relative;
  z-index: 2;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
}

.gs-video-wrapper iframe {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

/* Hover depth */
.gs-trailer-frame:hover {
  transform: translateY(-2px);
  transition: transform .3s ease;
}
@media (max-width: 768px) {

  .gs-trailer-section {
    margin: 50px auto;
  }

  .gs-trailer-header h2 {
    font-size: 24px;
  }

  .gs-trailer-frame {
    padding: 10px;
    border-radius: 16px;
  }

  .gs-video-wrapper {
    border-radius: 12px;
  }
}
/* ============================
   GS CONTENT SECTIONS (NEW)
============================ */

.gs-sec {
  max-width: 1100px;
  margin: 42px auto;
  padding: 30px 30px 34px;
  background: #ffffff;
  border-radius: 18px;
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(0,0,0,0.18);
  position: relative;
  overflow: hidden;
}

/* subtle texture */
.gs-sec::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 12px 12px;
  opacity: .35;
  pointer-events: none;
}

/* Title */
.gs-sec-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 18px;
  padding-bottom: 6px;
  border-bottom: 3px solid transparent;
  display: inline-block;
  position: relative;
  z-index: 1;
  color: #3d3656;
}

/* Accent colors */
.gs-crew-title { border-color: #ffb703; }
.gs-summary-title { border-color: #4cc9f0; }
.gs-teach-title { border-color: #80ed99; }
.gs-award-title { border-color: #ffd166; }
.gs-iconic-title { border-color: #f72585; }
.gs-contro-title { border-color: #ff6b6b; }

/* Body / Markdown */
.gs-sec-body {
  font-size: 15.5px;
  line-height: 1.75;
  color: #3d3a3a;
  position: relative;
  z-index: 1;
}

.gs-sec-body p {
  margin-bottom: 14px;
}

.gs-sec-body ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.gs-sec-body li {
  margin-bottom: 8px;
}

.gs-sec-body strong {
  font-weight: 700;
  color: #3d3a3a;
}

.gs-sec-body h4 {
  font-size: 17px;
  font-weight: 700;
  margin: 18px 0 10px;
  color: #fff;
}

/* ============================
   MOBILE
============================ */

@media (max-width: 768px) {

  .gs-sec {
    padding: 22px 18px;
    margin: 28px 14px;
  }

  .gs-sec-title {
    font-size: 19px;
  }

  .gs-sec-body {
    font-size: 14.5px;
  }
}
