:root {
  
    --netflix-red: #e50914;
    --bg-dark: #000000;
    --bg-medium: #141414;
    --text-light: #ffffff;
    --text-muted: #aaaaaa;
    --text-grey: #cccccc;

 
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Poppins', sans-serif;

  
    --transition-fast: all 0.3s ease-in-out;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark); 
    /* overflow-x: hidden tetap diperlukan untuk mencegah goyangan horizontal */
    overflow-x: hidden; 
}

/* ======================================= */
/* SCROLL BAR CONTROL (FINAL FIX) */
/* ======================================= */

body {
    /* overflow-y: hidden DIHAPUS DARI SINI agar scrolling aktif */
    position: relative;
}

/* Menyembunyikan Tampilan Scroll Bar (Scroll Tetap Berfungsi) */

/* Untuk Chrome, Safari, dan Opera (Webkit) */
body::-webkit-scrollbar {
    display: none;
    width: 0 !important;
    height: 0 !important;
}

/* Untuk Firefox dan IE/Edge */
body {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* ======================================= */
/* COVER PAGE */
/* ======================================= */
.cover-page {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--bg-dark); color: var(--text-light); display: flex;
    justify-content: center; align-items: center; text-align: center;
    z-index: 9990; 
    transition: transform 1s ease-in-out; 
}
.cover-content { 
    max-width: 90%; display: flex; flex-direction: column; 
    align-items: center; justify-content: center; 
}
.cover-logo { width: 250px; height: auto; margin-bottom: 20px; }
.who-watching-single { 
    font-family: var(--font-sans); font-size: 1.5em; font-weight: 400; 
    color: var(--text-light); margin-bottom: 50px; 
}
.profile-icon { width: 150px; height: 150px; border-radius: 10px; object-fit: cover; margin-bottom: 15px; }
.guest-profile p.guest-name { 
    font-family: var(--font-sans); font-size: 1.5em; font-weight: 600; 
    color: var(--netflix-red); margin-bottom: 50px; 
}
.outline-btn { 
    padding: 15px 40px; font-size: 1.1em; font-family: var(--font-sans); 
    background-color: transparent; color: var(--text-light); border: 1px solid var(--text-light); 
    border-radius: 0; cursor: pointer; transition: var(--transition-fast); 
    letter-spacing: 2px; text-transform: uppercase;
}
.outline-btn:hover, .outline-btn:focus { 
    background-color: var(--netflix-red); border-color: var(--netflix-red); color: var(--text-light); 
}
.main-invitation {
    width: 100%; min-height: 100vh; background-color: var(--bg-medium); color: var(--text-light);
    padding: 0; box-sizing: border-box; position: relative; z-index: 1; 
    /* 🔥 FIX 1: Memastikan tidak ada padding di bagian bawah container utama */
    padding-bottom: 0; 
}


/* ======================================= */
/* HERO SECTION & TRAILER */
/* ======================================= */
@keyframes fadeInSlideUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.netflix-trailer-hero {
    background-image: url('Slide 1.jpg');
    background-size: cover; background-position: center top; height: 100vh; 
    width: 100%; position: relative; display: flex; align-items: flex-end; 
    color: var(--text-light); padding-bottom: 50px; z-index: 10; 
    opacity: 0; 
    animation: fadeIn 1s ease-out 0.5s forwards; 
}
.netflix-trailer-hero::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 11;
}
.hero-content-overlay { position: relative; z-index: 12; padding: 0 20px; width: 100%; text-align: left; }
.small-logo-netflix { 
    font-family: var(--font-sans); font-size: 2em; font-weight: 700; color: var(--netflix-red); 
    margin-bottom: -25px; letter-spacing: 1px;
    opacity: 0; animation: fadeInSlideUp 0.8s ease-out 1.2s forwards; 
}
.hero-content-overlay h1 { 
    font-family: var(--font-serif); font-size: 2.2em; line-height: 1.2; 
    font-weight: 700; margin-bottom: 20px; color: var(--text-light);
    opacity: 0; animation: fadeInSlideUp 0.8s ease-out 1.4s forwards; 
}
.date-status-bar { 
    display: flex; align-items: center; margin-bottom: 40px; 
    font-family: var(--font-sans);
    opacity: 0; animation: fadeInSlideUp 0.8s ease-out 1.6s forwards; 
}
.status-coming-soon { background-color: var(--netflix-red); padding: 3px 8px; font-size: 0.8em; font-weight: 600; border-radius: 3px; margin-right: 15px; }
.date-time { font-size: 1em; font-weight: 400; color: var(--text-grey); }
.genre-tags {
    opacity: 0; animation: fadeInSlideUp 0.8s ease-out 1.8s forwards; 
}
.genre-tags button { 
    background-color: rgba(255, 255, 255, 0.3); color: var(--text-light); border: none; 
    padding: 5px 10px; margin-right: 8px; margin-bottom: 15px; 
    border-radius: 20px; font-size: 0.8em; font-family: var(--font-sans); 
    cursor: pointer; transition: background-color 0.2s;
}
.genre-tags button:hover { background-color: rgba(255, 255, 255, 0.5); }
.trailer-call-to-action { 
    background-color: rgba(0, 0, 0, 0.5); padding: 15px; border-radius: 5px; 
    margin-top: -5px; 
    opacity: 0; animation: fadeIn 1s ease-out 2s forwards; 
}
.trailer-call-to-action h3 { color: var(--netflix-red); font-size: 1.2em; font-family: var(--font-serif); font-style: italic; margin-bottom: 5px; }
.trailer-call-to-action p { color: var(--text-light); font-size: 1em; line-height: 1.4; margin-bottom: 5px; }
.sloka-source { color: var(--text-muted); font-size: 0.8em; font-style: italic; margin-top: 5px; }


/* ======================================= */
/* OPENING & CAST */
/* ======================================= */
.short-opening-section { 
    background-color: var(--bg-dark); color: var(--text-light); padding: 60px 20px; text-align: center; 
}
.opening-mantra { 
    font-family: var(--font-serif); font-size: 1.8em; font-style: italic; 
    color: var(--text-grey); margin-bottom: 10px; 
}
.opening-text { 
    font-family: var(--font-sans); font-size: 1em; line-height: 1.6; 
    max-width: 600px; margin: 0 auto 30px auto; color: var(--text-muted); 
}
.line-separator-red { width: 80px; height: 3px; background-color: var(--netflix-red); margin: 0 auto; }
.netflix-cast-section {
    background-color: var(--bg-dark); padding: 50px 20px; text-align: center;
}
.section-title-netflix {
    font-family: var(--font-sans); font-size: 1.8em; font-weight: 700;
    color: var(--netflix-red); margin-bottom: 50px;
}
.mempelai-profile {
    display: flex; 
    flex-direction: column-reverse; 
    align-items: center; 
    gap: 30px;
    margin-bottom: 40px; 
    text-align: left;
}
@media (min-width: 768px) {
    .profile-pria { flex-direction: row; justify-content: center; }
    .profile-wanita { flex-direction: row-reverse; justify-content: center; }
}
.profile-image-container, 
.profile-details {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.profile-image-container { 
    width: 250px; height: 350px; position: relative; overflow: hidden; 
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.4); border-radius: 5px; 
}
.profile-image-container img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.profile-image-container:hover img { transform: scale(1.05); }

.character-label { 
    position: absolute; bottom: 0; left: 0; width: 100%; 
    display: flex; justify-content: center; align-items: center; 
    background-color: rgba(229, 9, 20, 0.8); color: var(--text-light); 
    padding-top: 8px; padding-bottom: 8px; 
    font-family: var(--font-sans); font-size: 0.9em; font-weight: 600; 
}
.profile-details { max-width: 350px; }
.profile-details .role { font-family: var(--font-sans); font-size: 0.8em; color: var(--text-muted); text-transform: uppercase; margin-bottom: 5px; }
.profile-details h3 { font-family: var(--font-serif); font-size: 2em; color: var(--text-light); margin-bottom: 10px; }
.profile-details .quote { font-style: italic; color: var(--netflix-red); border-left: 3px solid var(--netflix-red); padding-left: 10px; margin-bottom: 25px; }
.ig-link {
    color: var(--netflix-red); 
    text-decoration: none; 
    transition: all 0.3s ease-in-out; 
    border: 1px solid var(--netflix-red); 
    padding: 2px 8px; 
    border-radius: 3px;
    display: inline-block; 
}
.ig-link:hover {
    color: var(--text-light); 
    background-color: var(--netflix-red); 
    border-color: var(--netflix-red);
}
.detail-list { margin-top: 20px; padding-left: 0; }
.detail-list div { 
    display: grid; 
    grid-template-columns: max-content 1fr; 
    gap: 10px; 
    margin-bottom: 8px; 
    line-height: 1.6; 
    text-align: left; 
    padding-left: 10px; 
}
.detail-list span { 
    font-weight: 600; 
    color: var(--text-light); 
    text-align: right; 
    padding-right: 10px; 
    position: relative; 
    font-family: var(--font-sans); 
    font-size: 0.9em; 
    white-space: normal;
}
.detail-list div:first-child span {
    text-align: left; 
    font-weight: 400;
}
.detail-list div:first-child span::after {
    content: "";
}
.detail-list div:nth-child(2) span::before {
    content: "Sosial Media";
    font-weight: 600;
}
.detail-list div:nth-child(2) span::after {
    content: ":";
    position: absolute; right: 5px; 
}
.detail-list p { 
    font-family: var(--font-sans); 
    font-size: 0.9em; 
    color: var(--text-grey); 
    text-align: left; 
    margin: 0; 
    padding: 0; 
}
@media (min-width: 601px) {
    .detail-list p { padding-top: 2px; }
}
.timeline-separator { 
    width: 80%; height: 2px; background-color: #333333; margin: 40px auto; 
    position: relative; 
}
.timeline-separator::before { 
    content: '&'; position: absolute; top: 50%; left: 50%; 
    transform: translate(-50%, -50%); background-color: var(--netflix-red); color: var(--text-light); 
    width: 30px; height: 30px; line-height: 30px; border-radius: 50%; 
    font-weight: bold; font-size: 0.9em; 
}
.closing-narasi { 
    font-family: var(--font-sans); font-size: 1.1em; color: var(--text-muted); 
    margin-top: 40px; font-style: italic; 
}

/* ======================================= */
/* GALLERY & VIDEO */
/* ======================================= */
.prewedding-section {
    padding: 40px 0;
    text-align: center;
}
.prewedding-section .section-title-netflix {
    color: var(--netflix-red); 
    margin-bottom: 30px;
    font-size: 1.8em;
}
.photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 10px;
    padding: 0 15px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.photo-grid .gallery-item {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    aspect-ratio: 4 / 3; 
    cursor: pointer; 
    opacity: 0; 
    transform: scale(0.95) translateY(30px); 
    transition: opacity 0.8s ease-out, transform 0.8s ease-out; 
}

.photo-grid .gallery-item.animated {
    opacity: 1; 
    transform: scale(1) translateY(0); 
}

.video-container {
    padding: 0 15px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    
    opacity: 0; 
    transform: translateY(20px); 
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ======================================= */
/* MODAL / LIGHTBOX */
/* ======================================= */
.modal {
    display: none; 
    position: fixed; 
    z-index: 99999; 
    padding-top: 60px; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.95); 
    opacity: 1 !important; 
    transform: none !important;
}

.modal-content {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 800px;
    background-color: transparent; 
    padding: 0;
    animation: zoom 0.6s;
}

.modal-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}
.modal-title, .modal-caption {
    margin: 15px 0;
    color: white;
    text-align: center;
    font-family: var(--font-sans);
}
.modal-title {
    font-size: 1.5em;
    font-weight: 600;
}
.modal-caption {
    font-size: 1em;
    font-weight: 400;
    padding: 0 20px;
}
.close-btn {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}
.close-btn:hover,
.close-btn:focus {
    color: var(--netflix-red); 
    text-decoration: none;
    cursor: pointer;
}
@keyframes zoom {
    from {transform:scale(0.8)} 
    to {transform:scale(1)}
}

/* ======================================= */
/* MUSIC TOGGLE */
/* ======================================= */
.music-toggle {
    position: fixed; top: 20px; right: 20px; 
    z-index: 9999; 
    width: 40px; height: 40px; background-color: rgba(229, 9, 20, 0.8);
    border-radius: 50%; border: none; color: var(--text-light); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2em; transition: background-color 0.3s;
}
.music-toggle:hover { background-color: var(--netflix-red); }

/* ======================================= */
/* EVENT, GIFT & FOOTER */
/* ======================================= */
.event-details-section {
    background-color: var(--bg-medium); 
    padding: 60px 20px;
    text-align: center;
    color: var(--text-light);
}
.countdown-container {
    margin-bottom: 40px;
    background-color: var(--bg-dark);
    padding: 20px 10px;
    border-radius: 8px;
    border: 1px solid #333333;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out; 
}
.countdown-label {
    font-family: var(--font-sans);
    font-size: 1.1em;
    font-weight: 600;
    color: var(--netflix-red);
    margin-bottom: 15px;
}
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.time-block {
    background-color: var(--netflix-red);
    color: var(--text-light);
    padding: 10px 5px;
    border-radius: 5px;
    width: 22%; 
    font-size: 0.7em;
    font-family: var(--font-sans);
}
.time-block span {
    display: block;
    font-size: 1.8em;
    font-weight: 700;
    line-height: 1.1;
    font-family: var(--font-serif);
}
.event-info-grid {
    display: flex;
    flex-direction: column; 
    gap: 30px;
    margin-top: 30px;
    align-items: center; 
}
.event-block {
    background-color: var(--bg-dark);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    flex: 1;
    max-width: 400px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out; 
}
.event-title {
    font-family: var(--font-serif);
    font-size: 1.5em;
    color: var(--text-light);
    margin-bottom: 20px;
    border-bottom: 1px solid #333333;
    padding-bottom: 10px;
}
.event-block h2 {
    font-family: var(--font-sans);
    font-size: 1.2em;
    color: var(--netflix-red);
    margin-bottom: 10px;
}
.event-block p {
    font-family: var(--font-sans);
    font-size: 0.95em;
    color: var(--text-grey);
    line-height: 1.6;
    margin-bottom: 10px;
}
.action-buttons {
    display: flex; 
    flex-direction: column; 
    gap: 10px; 
    margin-top: 20px;
    align-items: center;
    justify-content: center;
    width: 100%; 
    padding: 0 15px; 
    box-sizing: border-box; 
}
.action-buttons .map-link,
.action-buttons .calendar-link {
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-family: var(--font-sans);
    font-size: 0.9em;
    transition: background-color 0.3s;
    text-align: center;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    flex: 1 1 50%; 
    box-sizing: border-box; 
    width: 100%; 
    margin: 0; 
}
.action-buttons .map-link {
    background-color: var(--netflix-red);
    color: var(--text-light);
}
.action-buttons .calendar-link {
    background-color: var(--text-light);
    color: var(--bg-medium);
}
.action-buttons .calendar-link:hover {
    background-color: var(--text-grey);
}
.action-buttons .map-link i,
.action-buttons .calendar-link i {
    margin-right: 5px;
    vertical-align: middle; 
}
.digital-gift-section {
    padding: 40px 20px;
    text-align: center;
}
.digital-gift-section .section-title-netflix {
    color: var(--netflix-red); 
    margin-bottom: 30px;
    font-size: 1.8em;
}
.gift-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 450px;
    margin: 0 auto;
}
.bank-block {
    background-color: #222222;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    color: var(--text-light);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0; 
    transform: translateY(20px); 
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.bank-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}
.bank-logo {
    width: 40px; 
    height: auto;
    margin-right: 15px;
    background-color: var(--text-light); 
    padding: 3px;
    border-radius: 3px;
}
.bank-block h4 {
    margin: 0;
    color: #f7a0a5;
    font-size: 1.2em;
    font-weight: 600;
}
.bank-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; 
    margin-top: 10px;
}
.bank-details {
    flex-grow: 1;
}
.bank-block .copy-btn {
    background-color: var(--netflix-red);
    color: var(--text-light);
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9em;
    transition: var(--transition-fast);
}
.bank-block .copy-btn:hover {
    background-color: #b70711;
}
.bank-note {
    margin-top: 20px;
    font-size: 0.85em;
    color: var(--text-muted);
}


/* ======================================= */
/* FOOTER (BLOK KRITIKAL) */
/* ======================================= */

.closing-msg { 
    background-color: var(--bg-dark); 
    color: var(--text-muted); 
    padding: 40px 20px; 
    text-align: center; 
    border-top: 5px solid var(--netflix-red);
    
    /* 🔥 FIX: Hapus positioning absolute */
    /* position: absolute; <--- HAPUS BARIS INI */
    /* bottom: 0;          <--- HAPUS BARIS INI */
    left: 0;
    width: 100%;        
    box-sizing: border-box; 
    z-index: 10; 

}
.closing-msg .signature { color: var(--text-light); font-weight: 600; }



/* ======================================= */
/* ANIMASI SCROLL REVEAL (Tampilan Awal) */
/* ======================================= */
/* Target semua elemen yang ingin dianimasikan agar tersembunyi */
.short-opening-section h2, 
.short-opening-section p, 
.short-opening-section .line-separator-red, 
.netflix-cast-section .section-title-netflix, 
.mempelai-profile .profile-image-container, 
.mempelai-profile .profile-details,       
.timeline-separator, 
.closing-narasi, 
.prewedding-section .section-title-netflix, 
.prewedding-section p:not(.sloka-source),
.video-container, 
.event-details-section .section-title-netflix,
.countdown-container, 
.event-info-grid .event-block,
.digital-gift-section .section-title-netflix, 
.digital-gift-section p,
.bank-block,
.bank-note,
.closing-msg 
.footer-logo, 
.footer-slideshow-container, 
.closing-msg p, 
.closing-msg h1,
.closing-msg .copyright-info    
{
    opacity: 0;
    transform: translateY(30px); /* Posisikan 30px ke bawah */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out; /* Transisi untuk animasi */
}

/* Ketika kelas .animated ditambahkan oleh JS, kembalikan ke posisi normal */
.animated {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* --- SLIDESHOW DI FOOTER --- */
.footer-slideshow-container {
    width: 100%;
    max-width: 250px; 
    height: 150px; 
    margin: 20px auto;
    overflow: hidden; 
    position: relative;
    border-radius: 8px;
    border: 3px solid var(--netflix-red);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.footer-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.footer-slide-img.active-slide {
    opacity: 1;
}

.footer-logo {
    color: var(--netflix-red); 
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 4px; 
    text-shadow: 0 0 5px rgba(229, 9, 20, 0.5);
    margin-bottom: 20px; 
}

/* ======================================= */
/* FOOTER (FIXED & VISIBLE) */
/* ======================================= */
.closing-msg { 
    background-color: var(--bg-dark); 
    color: var(--text-muted); 
    padding: 40px 20px; 
    text-align: center; 
    border-top: 5px solid var(--netflix-red);
    width: 100%;        
    box-sizing: border-box; 
    z-index: 10; 
}

.closing-msg .signature { 
    color: var(--text-light); 
    font-weight: 600; 
}

/* Footer content */
.footer-logo, 
.footer-slideshow-container, 
.closing-msg p, 
.closing-msg h1,
.closing-msg .copyright-info {
    opacity: 1 !important; /* Paksa muncul */
    transform: none !important; /* Reset posisi */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Slideshow footer */
.footer-slideshow-container {
    width: 100%;
    max-width: 250px; 
    height: 150px; 
    margin: 20px auto;
    overflow: hidden; 
    position: relative;
    border-radius: 8px;
    border: 3px solid var(--netflix-red);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.footer-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.footer-slide-img.active-slide {
    opacity: 1;
}

.footer-logo {
    color: var(--netflix-red); 
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 4px; 
    text-shadow: 0 0 5px rgba(229, 9, 20, 0.5);
    margin-bottom: 20px; 
}


/* ======================================= */
/* MEDIA QUERIES */
/* ======================================= */
@media (min-width: 768px) {
    .profile-image-container { 
        width: 300px; 
        height: 400px; 
    }
    .profile-details { 
        max-width: 450px; 
    }
    .hero-content-overlay h1 { 
        font-size: 3em; 
    }
    .photo-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr; 
        gap: 20px;
    }
    .action-buttons {
        flex-direction: row; 
        gap: 15px;
        padding: 0;
    }
    .action-buttons .map-link,
    .action-buttons .calendar-link {
        width: auto;
    }
    .event-info-grid {
        flex-direction: row; 
        justify-content: center;
    }
}
@media (max-width: 600px) {

    .netflix-trailer-hero { padding-bottom: 30px; }
    .hero-content-overlay { padding: 0 15px; }
    .hero-content-overlay h1 { 
        font-size: 1.7em; 
        line-height: 1.1; 
        margin-bottom: 15px;
    }
    .small-logo-netflix { 
        font-size: 1.8em; 
        margin-bottom: -15px;
    }
    .profile-image-container { 
        width: 200px; 
        height: 300px; 
    }
    .profile-details {
        max-width: 100%;
        padding: 0 15px;
    }
    .detail-list div { 
        padding-left: 0;
        grid-template-columns: 1fr; 
        gap: 0;
        margin-bottom: 15px;
        border-left: 3px solid var(--netflix-red);
        padding-left: 10px;
    }
    .detail-list span, .detail-list p { 
        font-size: 0.85em;
        text-align: left; 
        padding-right: 0;
    }
    .detail-list div:first-child span {
        font-weight: 400; 
    }
    
    .detail-list div:nth-child(2) span::before {
        content: "Sosial Media:"; 
        display: block;
        font-weight: 600;
        color: var(--netflix-red);
        margin-bottom: 5px;
    }
    .detail-list div:nth-child(2) span::after {
        content: ""; /* Menghilangkan titik dua di mobile */
    }
    
    .time-block { padding: 8px 3px; font-size: 0.6em; }
    .time-block span { font-size: 1.5em; }
    
    .close-btn {
        font-size: 30px;
        right: 15px;
        top: 15px;
    }
}

.netflix-trailer-section {
    padding: 60px 0;
    background-color: #000; /* Latar belakang hitam pekat */
    text-align: center;
}

.video-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 10px;
    background: #141414;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.9);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* Rasio 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-narration {
    margin-top: 25px;
    font-style: italic;
    color: #e5e5e5;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    padding: 0 20px;
}

.video-info-overlay {
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.video-info-overlay p { color: #e50914; font-weight: bold; margin: 0; }
