/* ================================================================
   FILMALP PRODUCTION – Cinematic Website Theme
   Custom CSS – Dark Cinematic Design with Gold Accents
   ================================================================ */

/* ---- CSS Variables ---- */
:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --bg-card-hover: #1c1c1c;
  --gold: #d4a853;
  --gold-light: #e8c97a;
  --gold-dark: #b8922f;
  --text-primary: #f0ece4;
  --text-secondary: #a8a299;
  --text-muted: #6b6560;
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 0 40px rgba(212, 168, 83, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, sans-serif;
}

/* ---- Global Resets ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body.filmalp-body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--gold);
  color: var(--bg-primary);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

/* ---- Preloader ---- */
.preloader {
  background: var(--bg-primary) !important;
  z-index: 99999;
}

/* ---- Section Shared ---- */
.section-padding {
  padding: 120px 0;
  position: relative;
}

.section-dark {
  background: var(--bg-secondary);
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
  padding-left: 50px;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ================================================================
   NAVBAR
   ================================================================ */
#filmalp-navbar {
  padding: 20px 0;
  transition: all 0.5s ease;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
}

#filmalp-navbar.scrolled {
  padding: 10px 0;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.navbar-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--gold) !important;
  letter-spacing: 6px;
}

.brand-sub {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 8px;
  color: var(--text-secondary);
  margin-top: 2px;
}

#filmalp-navbar .nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary) !important;
  padding: 8px 16px !important;
  position: relative;
  transition: color var(--transition);
}

#filmalp-navbar .nav-link:hover,
#filmalp-navbar .nav-link.active {
  color: var(--gold) !important;
}

#filmalp-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

#filmalp-navbar .nav-link:hover::after,
#filmalp-navbar .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all var(--transition);
}

.lang-btn.active {
  color: var(--gold);
  background: rgba(212, 168, 83, 0.12);
}

.lang-btn:hover {
  color: var(--gold-light);
}

.lang-divider {
  color: var(--text-muted);
  font-size: 12px;
  opacity: 0.4;
}

/* Nav Social */
.nav-social {
  display: flex;
  gap: 16px;
}

.nav-social a {
  color: var(--text-secondary);
  font-size: 18px;
  transition: all var(--transition);
}

.nav-social a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

/* Navbar toggler */
.navbar-toggler {
  border: 1px solid var(--glass-border);
  padding: 6px 10px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Hero Background Image */
.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  animation: heroZoom 30s ease infinite alternate;
}

@keyframes heroZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.08);
  }
}


.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(10, 10, 10, 0.5) 0%,
      rgba(10, 10, 10, 0.3) 40%,
      rgba(10, 10, 10, 0.4) 70%,
      rgba(10, 10, 10, 0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 6px;
  color: var(--gold);
  border: 1px solid rgba(212, 168, 83, 0.3);
  padding: 10px 24px;
  margin-bottom: 32px;
  border-radius: 40px;
  animation: fadeInDown 1s ease 0.2s both;
}

.hero-title {
  margin-bottom: 28px;
  animation: fadeInUp 1s ease 0.4s both;
}

.title-line {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
}

.title-line:first-child {
  font-size: clamp(60px, 12vw, 120px);
  letter-spacing: 12px;
  color: var(--text-primary);
}

.title-outline {
  font-size: clamp(24px, 4vw, 46px);
  letter-spacing: 20px;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  margin-top: 8px;
}

.hero-subtitle {
  font-size: clamp(15px, 2vw, 19px);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 300;
  animation: fadeInUp 1s ease 0.6s both;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.8s both;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--bg-primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 40px;
  transition: all var(--transition);
}

.btn-hero-primary:hover {
  background: var(--gold-light);
  color: var(--bg-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  padding: 14px 36px;
  background: transparent;
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--glass-border);
  border-radius: 40px;
  transition: all var(--transition);
}

.btn-hero-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: fadeInUp 1s ease 1.2s both;
}

.scroll-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(212, 168, 83, 0.4);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-wheel {
  width: 3px;
  height: 10px;
  background: var(--gold);
  border-radius: 3px;
  animation: scrollWheel 2s ease infinite;
}

@keyframes scrollWheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(12px);
    opacity: 0;
  }
}

/* ================================================================
   ABOUT SECTION
   ================================================================ */
.about-logo-box {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.about-logo-box::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.2) 0%, transparent 40%, transparent 60%, rgba(212, 168, 83, 0.1) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.about-logo-box:hover::before {
  opacity: 1;
}

.about-logo-box:hover {
  border-color: rgba(212, 168, 83, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.about-logo-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.about-logo-box:hover .about-logo-img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 20px rgba(212, 168, 83, 0.15));
}

.about-text p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-text p:first-child {
  font-size: 18px;
  color: var(--text-primary);
  font-weight: 400;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.stat-item:hover {
  border-color: rgba(212, 168, 83, 0.3);
  background: rgba(212, 168, 83, 0.05);
  transform: translateY(-2px);
}

.stat-item i {
  font-size: 22px;
  color: var(--gold);
  width: 28px;
  text-align: center;
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

/* ================================================================
   PROJECTS SECTION
   ================================================================ */
.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  transition: all var(--transition);
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 168, 83, 0.2);
  box-shadow: var(--shadow-lg);
}

.project-video {
  position: relative;
  overflow: hidden;
}

.video-thumbnail {
  position: relative;
  padding-top: 56.25%;
  cursor: pointer;
  overflow: hidden;
}

.video-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover .video-thumbnail img {
  transform: scale(1.08);
}

.play-btn-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.3);
  transition: background var(--transition);
}

.project-card:hover .play-btn-overlay {
  background: rgba(10, 10, 10, 0.5);
}

.play-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: 0 0 30px rgba(212, 168, 83, 0.3);
}

.play-btn i {
  color: var(--bg-primary);
  font-size: 22px;
  margin-left: 3px;
}

.project-card:hover .play-btn {
  transform: scale(1.12);
  box-shadow: 0 0 50px rgba(212, 168, 83, 0.5);
}

.project-info {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.project-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.project-cat {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 168, 83, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
}

/* YouTube Channel Button */
.btn-channel {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: transparent;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid var(--glass-border);
  border-radius: 40px;
  transition: all var(--transition);
}

.btn-channel i {
  font-size: 22px;
  color: #ff0000;
}

.btn-channel:hover {
  border-color: #ff0000;
  color: #ff0000;
  background: rgba(255, 0, 0, 0.05);
  transform: translateY(-3px);
}

/* ================================================================
   CHARACTERS SECTION
   ================================================================ */
.characters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.character-card {
  border-radius: var(--radius);
  overflow: hidden;
}

.character-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3 / 4;
}

.character-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.character-card:hover .character-img-wrap img {
  transform: scale(1.1);
}

.character-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 24px;
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.9) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.character-card:hover .character-overlay {
  transform: translateY(0);
}

.character-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3px;
  text-align: center;
}

/* ================================================================
   SERVICES SECTION
   ================================================================ */
.service-card {
  padding: 40px 32px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 168, 83, 0.3);
  background: rgba(212, 168, 83, 0.04);
  box-shadow: var(--shadow-gold);
}

.service-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: rgba(212, 168, 83, 0.08);
  border: 1px solid rgba(212, 168, 83, 0.15);
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gold);
  border-color: var(--gold);
}

.service-icon i {
  font-size: 26px;
  color: var(--gold);
  transition: color var(--transition);
}

.service-card:hover .service-icon i {
  color: var(--bg-primary);
}

.service-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.service-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer-section {
  background: var(--bg-primary);
  border-top: 1px solid var(--glass-border);
}

.footer-top {
  padding: 100px 0 60px;
}

.footer-title {
  font-size: clamp(28px, 4vw, 44px);
}

.footer-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 16px;
}

.footer-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.contact-card:hover {
  border-color: rgba(212, 168, 83, 0.3);
  background: rgba(212, 168, 83, 0.05);
  transform: translateX(8px);
}

.contact-card i {
  font-size: 28px;
  color: var(--gold);
  width: 36px;
  text-align: center;
}

.contact-card strong {
  display: block;
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.contact-card span {
  font-size: 13px;
  color: var(--text-secondary);
}

.footer-bottom {
  padding: 30px 0;
  border-top: 1px solid var(--glass-border);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.footer-brand .brand-text {
  font-size: 20px;
  letter-spacing: 4px;
}

.footer-brand .brand-sub {
  font-size: 7px;
  letter-spacing: 6px;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* ================================================================
   BACK TO TOP
   ================================================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--bg-primary);
  font-size: 16px;
  border-radius: 50%;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(212, 168, 83, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold-light);
  color: var(--bg-primary);
  transform: translateY(-4px);
}

/* ================================================================
   VIDEO MODAL
   ================================================================ */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}

.video-modal.active {
  display: flex;
}

.video-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  animation: fadeIn 0.3s ease;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  z-index: 1;
  animation: scaleIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.video-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 36px;
  cursor: pointer;
  transition: all var(--transition);
  line-height: 1;
}

.video-modal-close:hover {
  color: var(--gold);
  transform: rotate(90deg);
}

.video-modal-player {
  position: relative;
  padding-top: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.video-modal-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Scroll Animations */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease calc(var(--delay, 0s)),
    transform 0.8s ease calc(var(--delay, 0s));
}

[data-animate="fade-right"] {
  transform: translateX(-40px);
}

[data-animate="fade-left"] {
  transform: translateX(40px);
}

[data-animate].animated {
  opacity: 1;
  transform: translate(0, 0);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }

  .hero-section {
    min-height: 600px;
  }

  .title-line:first-child {
    letter-spacing: 6px;
  }

  .title-outline {
    letter-spacing: 10px;
  }

  .characters-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
  }

  .about-poster {
    max-width: 400px;
    margin: 0 auto 40px;
  }

  #filmalp-navbar .collapse {
    background: rgba(10, 10, 10, 0.98);
    padding: 20px;
    border-radius: var(--radius);
    margin-top: 12px;
    border: 1px solid var(--glass-border);
  }

  .lang-switcher {
    margin-top: 16px;
    margin-bottom: 16px;
    justify-content: center;
  }

  .nav-social {
    justify-content: center;
  }

  .footer-top {
    padding: 60px 0 40px;
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 60px 0;
  }

  .hero-section {
    min-height: 100svh;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .characters-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .character-overlay {
    transform: translateY(0);
    padding: 20px 12px 14px;
  }

  .character-name {
    font-size: 14px;
    letter-spacing: 1px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .project-info {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .contact-card:hover {
    transform: translateX(0);
    transform: translateY(-4px);
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-brand {
    margin-bottom: 12px;
    align-items: center;
  }

  .footer-copy {
    text-align: center !important;
  }
}

@media (max-width: 480px) {
  .characters-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .character-img-wrap {
    aspect-ratio: 2 / 3;
  }

  .play-btn {
    width: 54px;
    height: 54px;
  }

  .play-btn i {
    font-size: 18px;
  }
}

/* ================================================================
   TENASÜH PROJECT – Side-by-side Layout (Main Page)
   ================================================================ */
.tenasuh-poster-link {
  display: block;
  text-decoration: none;
}

.tenasuh-poster-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  transition: all 0.5s ease;
}

.tenasuh-poster-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
}

.tenasuh-poster-link:hover .tenasuh-poster-wrap {
  border-color: rgba(212, 168, 83, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 168, 83, 0.1);
}

.tenasuh-poster-link:hover .tenasuh-poster-wrap img {
  transform: scale(1.04);
}

.tenasuh-poster-glow {
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.15) 0%, transparent 50%, rgba(212, 168, 83, 0.1) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.tenasuh-poster-link:hover .tenasuh-poster-glow {
  opacity: 1;
}

.tenasuh-info {
  padding: 10px 0;
}

.tenasuh-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  color: var(--gold);
  border: 1px solid rgba(212, 168, 83, 0.4);
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.tenasuh-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 8px;
  line-height: 1;
  margin-bottom: 20px;
}

.tenasuh-desc-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 28px;
}

.tenasuh-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.meta-item i {
  color: var(--gold);
  font-size: 18px;
}

.btn-tenasuh {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--bg-primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 40px;
  transition: all var(--transition);
}

.btn-tenasuh:hover {
  background: var(--gold-light);
  color: var(--bg-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-tenasuh i {
  transition: transform var(--transition);
}

.btn-tenasuh:hover i {
  transform: translateX(4px);
}

@media (max-width: 991px) {
  .tenasuh-poster-wrap {
    max-width: 400px;
    margin: 0 auto;
  }

  .tenasuh-info {
    text-align: center;
    padding-top: 20px;
  }

  .tenasuh-meta {
    justify-content: center;
  }
}

/* ================================================================
   TENASÜH DETAIL PAGE HERO
   ================================================================ */
.tenasuh-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tenasuh-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.tenasuh-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 30s ease infinite alternate;
}

.tenasuh-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  animation: fadeInUp 1s ease both;
}

.tenasuh-hero-title {
  font-family: var(--font-display);
  font-size: clamp(60px, 14vw, 140px);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 14px;
  line-height: 1;
  margin-bottom: 16px;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}

@media (max-width: 767px) {
  .tenasuh-poster {
    aspect-ratio: 3 / 4;
  }

  .tenasuh-title {
    letter-spacing: 4px;
  }

  .tenasuh-hero-title {
    letter-spacing: 6px;
  }

  .tenasuh-poster-overlay {
    padding: 20px;
    justify-content: flex-end;
  }
}

/* ---- Grain Texture Overlay (Cinematic Feel) ---- */
body.filmalp-body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
}