 <style> 
        body { background-color: #0D1117; } 
        .bg-header { background-color: #161B22; }
        .ad-container {
            margin: 2rem auto;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* PERBAIKAN: Menghapus tinggi tetap dan menggunakan aspect-ratio */
        .swiper-slide {
            position: relative;
            overflow: hidden;
            border-radius: 0.5rem;
            background-color: #1f1f1f;
            /* Menetapkan rasio aspek 2:3 (lebar:tinggi) untuk poster */
            aspect-ratio: 2 / 3; 
        }
        .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        .swiper-slide:hover img {
            transform: scale(1.05);
        }
        .swiper-slide .slide-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1rem;
            background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0));
            color: white;
        }
        .swiper-slide .slide-title {
            font-weight: bold;
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
        }
        .swiper-slide .slide-genre {
            font-size: 0.8rem;
            color: #a0aec0;
        }
        /* Styling untuk tombol navigasi Swiper */
        .swiper-button-next, .swiper-button-prev {
            color: #ffffff;
            background-color: rgba(0, 0, 0, 0.5);
            width: 44px;
            height: 44px;
            border-radius: 50%;
        }
        .swiper-button-next:after, .swiper-button-prev:after {
            font-size: 1.2rem;
            font-weight: bold;
        }
		        body { background-color: #0D1117; } 
        
        /* Style untuk backdrop/latar belakang blur */
        .backdrop-container {
            position: relative;
            width: 100%;
            height: 50vh; /* Tinggi 50% dari viewport */
            overflow: hidden;
        }
        .backdrop-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            filter: blur(16px) brightness(0.4); /* Efek blur dan gelap */
            transform: scale(1.1); /* Sedikit zoom untuk menghilangkan tepi blur */
        }
        .backdrop-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(13, 17, 23, 1) 5%, rgba(13, 17, 23, 0.5) 100%);
        }
		  body { background-color: #0D1117; }
        .video-container {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%; /* Aspect Ratio 16:9 */
            background-color: #000;
        }
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
		/* Tambahkan ini di styles/main.css */

/* Membuat kontainer utama sebagai acuan posisi */
.detail-wrapper {
  position: relative;
  padding-top: 1rem; /* Memberi sedikit jarak dari iklan di atas */
}

/* Mengubah backdrop agar 'melayang' di belakang */
.detail-wrapper .backdrop-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1; /* Posisikan di lapisan belakang */
}

/* Memastikan konten utama berada di atas backdrop */
.detail-wrapper .content-container {
  position: relative;
  z-index: 2; /* Posisikan di lapisan depan */
}

    </style>