        @font-face {
            font-family: 'JawaPalsu';
            src: url('../font/JAWAPALSU.TTF') format('truetype');
        }

        /* --- Definisi Animasi --- */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-100px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }



        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(100px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.8);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-50px) translateX(-50%);
            }

            to {
                opacity: 1;
                transform: translateY(0) translateX(-50%);
            }
        }

        /* Animasi Pohon Melambai (Swaying) */
        @keyframes sway {
            0% {
                transform: rotate(0deg);
            }

            50% {
                transform: rotate(2deg);
            }

            /* Goyang sedikit ke kanan */
            100% {
                transform: rotate(0deg);
            }
        }

        /* Animasi Masuk Pohon Kanan 2 (Rotasi 346deg) */
        @keyframes slideInTreeRight2 {
            from {
                opacity: 0;
                transform: translateX(100px) rotate(346deg);
            }

            to {
                opacity: 1;
                transform: translateX(0) rotate(346deg);
            }
        }

        /* Animasi Masuk Pohon Kanan 3 (Rotasi -15deg) */
        @keyframes slideInTreeRight3 {
            from {
                opacity: 0;
                transform: translateX(100px) rotate(-15deg);
            }

            to {
                opacity: 1;
                transform: translateX(0) rotate(-15deg);
            }
        }

        @keyframes slideInFlower3 {
            from {
                opacity: 0;
                transform: translateY(100px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Animasi Sway (Goyang) tetap menggunakan variabel agar fleksibel */
        @keyframes swayMirror {
            0% {
                transform: rotate(var(--rotasi-asal));
            }

            50% {
                transform: rotate(calc(var(--rotasi-asal) + 2deg));
            }

            100% {
                transform: rotate(var(--rotasi-asal));
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mengaktifkan scroll halus untuk seluruh halaman */
        html {
            scroll-behavior: smooth;
        }

        /* --- CUSTOM SCROLLBAR --- */
        /* Ukuran scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        /* Bagian jalur (track) scrollbar */
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        /* Bagian batang (thumb) scrollbar */
        ::-webkit-scrollbar-thumb {
            background: #8da1b9;
            /* Warna biru sesuai Save The Date Anda */
            border-radius: 10px;
        }

        /* Batang scrollbar saat diarahkan kursor (hover) */
        ::-webkit-scrollbar-thumb:hover {
            background: #343638;
            /* Warna gelap sesuai tema card Anda */
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            margin: 0;
            padding: 0;
            color: #4a4a4a;
        }

        .wrapper {
            display: flex;
            height: 100vh;
            overflow: hidden;
        }

        /* --- BAGIAN KIRI (DESKTOP VIEW) --- */
        .left-section {
            flex: 1.4;

            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 80px 60px;
            position: relative;
            overflow: hidden;
        }

        /* Overlay Gradasi: Cokelat Jawa ke Transparan */
        .left-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* Gradasi gelap di bawah agar teks putih/emas tetap terbaca */
            background: linear-gradient(to bottom,
                    rgba(0, 0, 0, 0.2) 0%,
                    transparent 50%,
                    rgba(70, 40, 30, 0.9) 100%);
            z-index: 1;
        }

        .left-content {
            position: relative;
            z-index: 3;
            color: white;
            text-align: center;
            animation: fadeInUp 1.5s ease;
        }

        /* Dekorasi Gunungan di Pojok Atas */
        .left-decor {
            position: absolute;
            top: -20px;
            right: -50px;
            width: 350px;
            /* Diperbesar agar megah */
            z-index: 2;
            opacity: 0.6;
            transform: rotate(-10deg);
            pointer-events: none;
        }

        .left-javanese-ornament {
            width: 100%;
            /* Memberikan efek siluet emas halus */
            filter: drop-shadow(0px 0px 15px rgba(255, 215, 0, 0.3));
        }

        .left-content h2 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 300;
            letter-spacing: 8px;
            font-size: 1rem;
            margin-bottom: 0;
            text-transform: uppercase;
            color: #FFD700;
            /* Kuning Emas */
        }

        /* Menggunakan Font Jawa Palsu untuk Nama */
        .bride-name-jawa {
            font-family: 'JawaPalsu', serif;
            font-size: 5rem;
            margin: 5px 0;
            font-weight: 400;
            color: white;
            text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.7);
            line-height: 1.2;
        }

        /* Divider: Gunakan Bunga Betawi kecil di tengah */
        .left-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin: 15px 0;
        }

        .gold-line {
            width: 100px;
            height: 1px;
            background: linear-gradient(to right, transparent, #FFD700, transparent);
        }

        .divider-icon {
            width: 35px;
            height: auto;
        }

        .wedding-date {
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 6px;
            font-weight: 400;
            font-size: 1.1rem;
            text-transform: uppercase;
            margin: 10px 0;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Responsif: Tetap disembunyikan di mobile agar fokus ke undangan */
        @media (max-width: 1024px) {
            .left-section {
                display: none;
            }
        }

        /* --- BAGIAN KANAN (SAMPUL ELEGAN) --- */
        .right-section {
            flex: 1;
            overflow-y: auto;
            overflow-x: hidden;
            background: url('../images/bg-sampul-javabetawi.webp') no-repeat center center;
            background-size: cover;
            scroll-behavior: smooth;
        }

        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 1s ease-out;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* State Awal (Tersembunyi) */
        .reveal-up,
        .reveal-left,
        .reveal-right {
            opacity: 0;
            visibility: hidden;
            transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: transform, opacity;
        }

        .reveal-up {
            transform: translateY(50px);
        }

        .reveal-left {
            transform: translateX(-50px);
        }

        .reveal-right {
            transform: translateX(50px);
        }

        /* State Akhir (Muncul) */
        .active {
            opacity: 1 !important;
            visibility: visible !important;
            transform: translate(0, 0) !important;
        }

        .section {
            min-height: 100vh;
            display: flex;
            position: relative;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 20px;
        }

        .first-screen {
            position: relative;
            width: 100%;
            height: 100vh;
            /* Full screen height */
            aspect-ratio: 9/16;
            /* Menjaga rasio 9:16 */
            background-color: #46281e;
            /* Cokelat Jawa Utama */
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #ffffff;
            text-align: center;
        }

        /* Animasi masuk awal */
        @keyframes fadeInUpScale {
            0% {
                opacity: 0;
                transform: translateY(50px) scale(1.5);
            }

            100% {
                opacity: 1;
                transform: translateY(0) scale(1.05);
                /* Berhenti di 1.05 untuk menyambung ke animasi breathing */
            }
        }

        /* Animasi skala kontinu (Breathing effect) */
        @keyframes breathing {

            0%,
            100% {
                transform: scale(1.05);
            }

            50% {
                transform: scale(1.0);
            }
        }

        .bg-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('../images/bg2-javabetawi.webp');
            background-size: cover;
            background-position: center;
            z-index: 1;

            /* 1. fadeInUpScale berjalan selama 5 detik.
       2. breathing dimulai setelah 5 detik (delay 5s) agar transisinya mulus.
    */
            animation:
                fadeInUpScale 5s ease-out forwards,
                breathing 8s ease-in-out 5s infinite;

            will-change: transform, opacity;
        }

        @keyframes slideInUpTree {
            0% {
                opacity: 0;
                transform: translateY(100%);
                /* Mulai sepenuhnya dari luar layar bawah */
            }

            100% {
                opacity: 1;
                transform: translateY(0);
                /* Berhenti di posisi asli */
            }
        }

        @keyframes swayOndel {

            0%,
            100% {
                transform: rotate(0deg);
                transform-origin: bottom center;
            }

            50% {
                transform: rotate(3deg);
                /* Goyangan tipis agar tetap elegan */
                transform-origin: bottom center;
            }
        }

        .tree {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            pointer-events: none;
            opacity: 0;

            /* Gabungan: slideIn selama 1.5s, lalu sway selama 4s (infinite) */
            /* Kita beri jeda sway agar muncul setelah slideIn selesai */
        }

        /* Update Spesifik per Pohon dengan Delay yang Disesuaikan */

        .tree-1 {
            background-image: url('../images/pohon1-javabetawi.webp');
            z-index: 2;
            animation:
                slideInUpTree 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 3s forwards,
                sway 4s ease-in-out 4.5s infinite;
            /* Delay sway = delay slide (3s) + durasi slide (1.5s) */
        }

        .tree-2 {
            background-image: url('../images/pohon2-javabetawi.webp');
            z-index: 3;
            animation:
                slideInUpTree 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 4s forwards,
                sway 4.5s ease-in-out 5.5s infinite;
            /* Delay sway = delay slide (4s) + durasi slide (1.5s) */
        }

        .tree-3 {
            background-image: url('../images/pohon3-javabetawi.webp');
            z-index: 4;
            animation:
                slideInUpTree 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 3s forwards,
                sway 5s ease-in-out 4.5s infinite;
        }

        .tree-4 {
            background-image: url('../images/pohon4-javabetawi.webp');
            z-index: 5;
            animation:
                slideInUpTree 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 4s forwards,
                sway 5.5s ease-in-out 5.5s infinite;
        }

        /* Animasi Gate: Turun dan mengecil ke ukuran asli */
        @keyframes fadeInDownScale {
            0% {
                opacity: 0;
                transform: translateY(-50px) scale(1.5);
            }

            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Animasi Janur: Muncul dari arah samping */
        @keyframes slideInLeft {
            0% {
                opacity: 0;
                transform: translateX(-100%);
            }

            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            0% {
                opacity: 0;
                transform: translateX(100%);
            }

            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Animasi Sway khusus Janur (lebih lentur/lebar dibanding pohon) */
        @keyframes swayJanur {

            0%,
            100% {
                transform: rotate(0deg);
                transform-origin: top center;
            }

            50% {
                transform: rotate(1deg);
                transform-origin: top center;
            }
        }

        /* Animasi Move Gunungan 1 */
        @keyframes moveGunungan1 {
            0% {
                opacity: 0;
                transform: translate(67px, -200px);
            }

            100% {
                opacity: 1;
                transform: translate(0, 0);
            }
        }

        /* Animasi Move Gunungan 2 */
        @keyframes moveGunungan2 {
            0% {
                opacity: 0;
                transform: translate(-74px, -164px);
            }

            100% {
                opacity: 1;
                transform: translate(0, 0);
            }
        }

        .asset {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            pointer-events: none;
            opacity: 0;
            /* Tetap bisa klik tombol di bawahnya */
        }

        /* Spesifik Urutan Z-Index dan File (Mulai dari 6) */
        .gate {
            background-image: url('../images/gate-javabetawi.webp');
            z-index: 6;
            animation: fadeInDownScale 2s ease-out 1s forwards;
        }

        .janur-1 {
            background-image: url('../images/janur1-javabetawi.webp');
            z-index: 7;
            animation:
                slideInLeft 1.5s ease-out 2.2s forwards,
                swayJanur 5s ease-in-out 4.7s infinite;
        }

        /* 3. JANUR 2 - Delay 6.2s (Muncul dari Kanan + Sway) */
        .janur-2 {
            background-image: url('../images/janur2-javabetawi.webp');
            z-index: 8;
            animation:
                slideInRight 1.5s ease-out 2.2s forwards,
                swayJanur 5.5s ease-in-out 4.7s infinite;
        }

        /* 4. RUMAH JOGLO - Delay 7.2s (Slide In Up) */
        .rumah-joglo {
            background-image: url('../images/rumah-joglo.webp');
            z-index: 9;
            animation: slideInUpTree 1.5s ease-out 3.2s forwards;
            /* Menggunakan keyframe slideUp yang sudah dibuat sebelumnya */
        }

        /* Melanjutkan urutan z-index sebelumnya */
        /* 1. GUNUNGAN 1 - Delay 8.2s (X:67, Y:-200 ke 0,0) */
        .gunungan-1 {
            background-image: url('../images/gunungan-1.webp');
            z-index: 10;
            animation: moveGunungan1 2s ease-out 3.2s forwards;
        }

        /* 2. GUNUNGAN 2 - Delay 9.2s (X:-74, Y:-164 ke 0,0) */
        .gunungan-2 {
            background-image: url('../images/gunungan-2.webp');
            z-index: 11;
            animation: moveGunungan2 2s ease-out 3.2s forwards;
        }

        /* 3. ONDEL-ONDEL 1 - Delay 10.2s (Muncul dari KANAN) */
        .ondel-1 {
            background-image: url('../images/ondel-ondel-1.webp');
            z-index: 12;
            animation: slideInRight 1.5s ease-out 3.4s forwards;
        }

        /* 4. ONDEL-ONDEL 2 - Delay 11.2s (Muncul dari KIRI) */
        .ondel-2 {
            background-image: url('../images/ondel-ondel-2.webp');
            z-index: 13;
            animation: slideInLeft 1.5s ease-out 3.4s forwards;
        }

        /* Animasi masuk khusus bunga & rumput */
        @keyframes flowerPopUp {
            0% {
                opacity: 0;
                transform: translateY(50%);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Animasi sway yang lebih ringan untuk bunga */
        @keyframes flowerSway {

            0%,
            100% {
                transform: rotate(0deg);
                transform-origin: bottom center;
            }

            50% {
                transform: rotate(2deg);
                transform-origin: bottom center;
            }
        }

        /* Kita mulai hitungan delay dari 12.2s (melanjutkan ondel-ondel) */
        .flower-1 {
            background-image: url('../images/flower1-javabetawi.webp');
            z-index: 14;
        }

        .flower-2 {
            background-image: url('../images/flower2-javabetawi.webp');
            z-index: 15;
        }

        .flower-3 {
            background-image: url('../images/flower3-javabetawi.webp');
            z-index: 16;
        }

        .flower-4 {
            background-image: url('../images/flower4-javabetawi.webp');
            z-index: 17;
        }

        .flower-5 {
            background-image: url('../images/flower5-javabetawi.webp');
            z-index: 18;
        }

        .flower-6 {
            background-image: url('../images/flower6-javabetawi.webp');
            z-index: 19;
        }

        .flower-7 {
            background-image: url('../images/flower7-javabetawi.webp');
            z-index: 20;
        }

        .flower-8 {
            background-image: url('../images/flower8-javabetawi.webp');
            z-index: 21;
        }

        .grass-1 {
            background-image: url('../images/rumput1-javabetawi.webp');
            z-index: 22;
        }

        .grass-2 {
            background-image: url('../images/rumput2-javabetawi.webp');
            z-index: 23;
        }

        /* Grup 1: Muncul di detik ke-2 */
        .flower-1,
        .flower-2 {
            animation: flowerPopUp 2s ease-out 3s forwards, flowerSway 3s ease-in-out 3s infinite;
        }

        /* Grup 2: Muncul di detik ke-2.4 */
        .flower-3,
        .flower-4 {
            animation: flowerPopUp 2s ease-out 3.4s forwards, flowerSway 3.4s ease-in-out 3.4s infinite;
        }

        /* Grup 3: Muncul di detik ke-2.8 */
        .flower-5,
        .flower-6 {
            animation: flowerPopUp 2s ease-out 3.8s forwards, flowerSway 3.8s ease-in-out 3.8s infinite;
        }

        /* Grup 4: Muncul di detik ke-3.2 */
        .flower-7,
        .flower-8 {
            animation: flowerPopUp 2s ease-out 3.2s forwards, flowerSway 4.2s ease-in-out 4.2s infinite;
        }

        /* Rumput Muncul Paralel di akhir sekuens bunga */
        .grass-1 {
            background-image: url('../images/rumput1-javabetawi.webp');
            animation: flowerPopUp 1s ease-out 4s forwards, flowerSway 5s ease-in-out 5s infinite;
        }

        .grass-2 {
            background-image: url('../images/rumput-javabetawi.webp');
            animation: flowerPopUp 1s ease-out 4s forwards, flowerSway 5s ease-in-out 5s infinite;
        }

        /* Content Wrapper di lapisan paling atas */

        /* Naikkan z-index content agar tidak tertutup ondel-ondel */

        /* Tipografi - Gunakan font Serif untuk kesan mewah */


        .content-wrapper {
            position: relative;
            z-index: 30;
            padding: 106px 20px 40px;
            display: flex;
            flex-direction: column;
            height: 88%;
            justify-content: space-around;
            opacity: 0;
            animation: fadeInUpContent 1.5s ease-out 4s forwards;
        }

        @keyframes fadeInUpContent {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Penyesuaian margin agar teks nama tidak terlalu rapat ke atas */
        .header-title {
            margin-bottom: -5px;
            /* Angka negatif untuk menarik teks nama lebih ke atas */
        }

        .header-title .sub-title {
            display: block;
            letter-spacing: 4px;
            font-size: 0.8rem;
            margin-top: 45px;
            font-weight: 300;
            opacity: 0.9;
        }

        .couple-names h1 {
            font-family: 'JawaPalsu', serif;
            font-size: 2.5rem;
            font-weight: 300;
            font-style: normal;
            margin: 0;
            padding: 10px 0;
            line-height: 1;
            color: #FFD700;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
            letter-spacing: 1px;
            line-height: 55px;
        }

        /* Animasi Floating untuk Tombol agar lebih menarik perhatian */
        .button-wrapper {
            margin-bottom: 30px;
            /* Jarak dari bawah layar */
        }

        .btn-open {
            background-image: linear-gradient(90deg, #D7BB83 0%, #A38C5E 100%);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            animation: pulseButton 2s infinite 5.5s;
            /* Mulai berdenyut setelah teks muncul */
        }

        .guest-info {
            margin: 30px 0;
        }

        .guest-name {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
            display: inline-block;
            padding-bottom: 5px;
        }

        @keyframes pulseButton {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
                box-shadow: 0 6px 20px rgba(212, 127, 1, 0.4);
            }

            100% {
                transform: scale(1);
            }
        }

        /* /opening */
        .opening-section {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            background-color: #46281e;
            /* Warna cokelat dasar agar tidak kedip saat loading */
        }

        .video-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .opening-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
        }

        /* Tipografi dengan Font Jawa Palsu */
        .couple-names-opening {
            font-family: 'JawaPalsu', serif;
            font-size: 3rem;
            padding: 0 33px;
            color: #efbc4b;
            text-shadow: 2px 2px 10px rgb(68 39 29 / 64%);
            opacity: 0;
            transform: translateY(20px);

        }

        .wedding-date-opening {
            color: #ffffff;
            /* font-family: 'Montserrat', sans-serif; */
            letter-spacing: 2px;
            font-size: 1.1rem;
            text-transform: uppercase;
            margin-top: 10px;
            opacity: 0;

            /* Delay sedikit lebih lama dari nama */
        }

        .mouse {
            width: 26px;
            height: 42px;
            border: 2px solid #efbc4b;
            border-radius: 15px;
            position: relative;
            justify-self: center;
            margin-bottom: 10px;
        }

        .wheel {
            width: 4px;
            height: 8px;
            background: #ffffff;
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
            animation: scrollMouse 2s infinite;
        }

        /* Keyframes */
        @keyframes scrollMouse {
            0% {
                opacity: 1;
                transform: translate(-50%, 0);
            }

            100% {
                opacity: 0;
                transform: translate(-50%, 15px);
            }
        }

        /* Sembunyikan konten secara default */
        .opening-text-wrapper,
        .scroll-indicator {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 1s ease, transform 1s ease;
        }

        .opening-section.active .couple-names-opening {
            animation: fadeInUpOpening 1.5s ease-out 5s forwards;
        }

        .opening-section.active .wedding-date-opening {
            animation: fadeInUpOpening 1.5s ease-out 5.3s forwards;
        }

        .opening-section.active .scroll-indicator {
            animation: fadeInOpening 1s ease-out 6s forwards;
        }

        /* Keyframes tetap sama */
        @keyframes fadeInUpOpening {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInOpening {
            to {
                opacity: 1;
            }
        }

        /* quotes/ */
        .quotes-section {
            min-height: 70vh;
            padding: 40px 0px;
            /* background-color: #361e16; */
            /* Warna gelap agar kontras dengan container putih/krem */
            display: flex;
            justify-content: center;
            background-image: url('../images/coklat-3.jpg');
            /* Masukkan link foto pengantin */
            background-size: cover;
            background-position: center;
        }

        .overlay-quotes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgb(255 255 255) 0%, #ffffffa8 50%, rgb(255 255 255 / 60%) 100%);
            z-index: 0;
        }

        .quotes-container {
            max-width: 500px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px;
            /* Jarak aman */
        }

        .quotes-image-wrapper {
            width: 100%;
            max-height: 450px;
            /* BATAS MAKSIMAL TINGGI GAMBAR */
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(158, 114, 80, 0.5);
            margin-bottom: -40px;
            /* Overlap lebih dalam agar transisi mulus */
            z-index: 2;
            position: relative;
        }

        .quotes-img {
            width: 100%;
            height: 300px;
            /* Menyamakan dengan max-height wrapper */
            object-fit: cover;
            /* Foto menyesuaikan area tanpa distorsi */
            object-position: center;
            /* Fokus ke tengah foto */
            display: block;
            transform: scale(1);
            transition: transform 2s ease;
        }

        /* Content Wrapper dengan Background Webp */
        .quotes-content-wrapper {
            position: relative;
            width: 95%;
            padding: 60px 30px 40px;
            border-radius: 0 0 30px 30px;
            z-index: 1;
            overflow: hidden;
            text-align: center;
        }

        .bg-garden-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('../images/bg-sampul-javabetawi.webp');
            background-size: cover;
            background-position: center;
            opacity: 1;
            /* Tipis-tipis agar teks tetap terbaca */
            z-index: -1;
        }

        .quotes-text-inner {
            position: relative;
        }

        .initials {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: #efbc4b;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .ampersand {
            font-family: 'Great Vibes', cursive;
            font-size: 1.8rem;
            color: var(--maroon-solid);
            /* Maroon */
        }

        .quote-verse {
            font-style: italic;
            color: #444;
            line-height: 1.3;
            font-size: 0.8rem;
            margin-bottom: 20px;
        }

        .quote-source {
            font-weight: 700;
            color: var(--maroon-solid);
            /* Maroon */
            letter-spacing: 2px;
            font-size: 0.9rem;
        }

        /* couple/ */
        /* couple/ */
        .couple-section {
            position: relative;
            padding: 80px 20px;
            /* background-color: #fff; */
            overflow: hidden;
            text-align: center;
        }

        .card-couple {
            background: rgb(255 255 255 / 84%);
            backdrop-filter: blur(10px);
            padding: 60px 30px;
            border-radius: 200px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
            max-width: 800px;
            width: 100%;
            text-align: center;
            border: 2px solid rgb(223 192 117);
            z-index: 5;
        }

        .couple-bg-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('../images/bg-sampul-javabetawi.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
            /* Transparan agar konten tetap fokus */
            z-index: 1;
        }

        .couple-container {
            position: relative;
            z-index: 2;
            max-width: 600px;
            margin: 0 auto;
        }

        .flower-top {
            width: 120px;
            margin-bottom: 20px;
            display: block;
            margin-left: auto;
            margin-right: auto;
            transform-origin: bottom center;
            /* Animasi sway terus menerus */
            animation: sway 4s ease-in-out infinite alternate;
        }


        .title-married {
            font-family: 'Pinyon Script', cursive;
            font-size: 2rem;
            color: #efbc4b;
            margin-bottom: 15px;
        }

        .intro-text {
            font-size: 0.95rem;
            color: #555;
            line-height: 1.6;
            margin-bottom: 50px;
            padding: 0 10px;
        }

        /* Photo Frame Oval */
        .photo-frame {
            position: relative;
            width: 200px;
            height: 280px;
            margin: 0 auto 20px;
            border: 3px solid #4f392e;
            border-radius: 100px;
            /* Bentuk Oval */
            overflow: visible;
            /* Biar bunga bisa keluar dari frame */
        }

        .mempelai-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 100px;
        }

        .flower-decor-photo {
            position: absolute;
            width: 77px;
            bottom: -10px;
            right: -20px;
            z-index: 3;
            transform-origin: bottom left;
            /* Ayunan berpusat di sudut kiri bawah bunga */
            animation: swayOndel 3.5s ease-in-out infinite alternate-reverse;
            /* Kecepatan berbeda agar lebih dinamis */
        }

        /* Mempelai Detail */
        .mempelai-name {
            font-family: 'Pinyon Script', cursive;
            font-size: 3rem;
            color: #efbc4b;
            margin-bottom: 5px;
        }

        .full-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            /* letter-spacing: 2px; */
            color: #333;
            margin-bottom: 10px;
        }

        .parent-info {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 15px;
        }

        .btn-instagram {
            display: inline-block;
            padding: 6px 15px;
            background: #c097894a;
            color: #4f392e;
            border-radius: 20px;
            text-decoration: none;
            font-size: 0.8rem;
            font-weight: bold;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .separator-ampersand {
            font-family: 'Great Vibes', cursive;
            font-size: 4rem;
            color: var(--gold-text);
            margin: 40px 0;
        }

        .save-the-date {
            position: relative;
            background-color: #46281e;
            /* Warna gelap Betawi/Jawa */
            padding: 0;
            min-height: 100vh;
            overflow: hidden;
            padding-bottom: 60px;
        }

        /* Slider Style */
        .slider-wrapper {
            position: relative;
            width: 100%;
            /* Gunakan height yang lebih besar agar transisi gradient punya ruang */
            height: 70vh;
            margin-bottom: -100px;
            /* Menarik konten bawah lebih naik agar menumpuk di atas foto */
        }

        .slider-container {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .slider-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            z-index: 1;
        }

        .slider-img.active {
            opacity: 1;
            z-index: 2;
        }

        /* Gradient Overlay: Menyambungkan foto dengan background cokelat di bawah */
        .slider-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            /* Perbesar tinggi gradient menjadi 60-70% untuk transisi yang sangat halus */
            height: 70%;
            /* Gradasi dari transparan ke warna background solid #46281e */
            background: linear-gradient(to bottom,
                    rgba(70, 40, 30, 0) 0%,
                    rgba(70, 40, 30, 0.4) 30%,
                    rgba(70, 40, 30, 0.8) 70%,
                    #46281e 100%);
            z-index: 3;
        }

        /* Countdown Section */
        .countdown-container {
            position: relative;
            /* Hilangkan margin-top negatif jika sudah menggunakan margin-bottom negatif pada slider-wrapper */
            z-index: 4;
            text-align: center;
            padding: 0 20px;
        }

        .flower-mini {
            width: 80px;
            margin-bottom: 10px;
        }

        .std-title {
            font-family: 'Pinyon Script', cursive;
            font-style: italic;
            font-size: 2.2rem;
            color: #efbc4b;
            margin-bottom: 30px;
            letter-spacing: 2px;
        }

        /* Timer Box Style (Adopsi dari gambar referensi) */
        .timer-wrapper {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 40px;
        }

        .timer-box {
            background-color: #d4b581;
            /* Warna krem emas sesuai referensi */
            width: 70px;
            height: 70px;
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .timer-box span {
            font-size: 1.5rem;
            font-weight: 700;
            color: #46281e;
        }

        .timer-box p {
            font-size: 0.7rem;
            margin: 0;
            text-transform: uppercase;
            color: #46281e;
        }

        /* Button & Text */
        .btn-calendar {
            background-color: white;
            color: #333;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }

        .btn-calendar:hover {
            background-color: #e91e63;
            color: white;
        }

        .std-invitation-text {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9rem;
            line-height: 1.6;
            max-width: 320px;
            margin: 0 auto;
        }

        /* Reveal Animation (Sesuai Observer Anda) */
        .reveal-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 1s ease-out;
        }

        .reveal-up.active {
            opacity: 1;
            transform: translateY(0);
        }

        .event-section {
            position: relative;
            padding: 0px 20px;
            background-color: #46281e;
            overflow: hidden;
            text-align: center;
            min-height: 50vh;
        }

        .event-container {
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .event-header {
            margin-bottom: 50px;
        }

        .event-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            color: #1a2a4e;
            margin-bottom: 15px;
        }

        .event-divider {
            width: 60px;
            height: 2px;
            background-color: #bfa37e;
            /* Aksen Gold */
            margin: 0 auto;
        }

        /* --- Penyesuaian Card Modern --- */
        .event-card-modern {
            display: flex;
            background: #fff;
            min-width: 320px;
            max-width: 400px;
            border: 2px solid rgb(223 192 117);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-radius: 4px;
            /* Sudut lebih tajam sesuai referensi gambar */
            overflow: hidden;
            text-align: left;
            margin-bottom: 30px;
        }

        /* Sisi Berwarna (Navy/Blue Gradient) */
        .card-side-label {
            background: linear-gradient(to bottom, #46281eb5, #46281e);
            width: 80px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .card-side-label span {
            transform: rotate(-90deg);
            color: #efbc4b;
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            white-space: nowrap;
            text-transform: capitalize;
        }

        /* Konten Utama (Putih) */
        .card-main-content {
            flex: 1;
            padding: 30px;
            display: flex;
            flex-direction: column;
        }

        .date-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 10px;
        }

        .big-date {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            line-height: 1;
            color: #1a2a4e;
        }

        .date-meta p {
            margin: 0;
            font-weight: 600;
            color: #666;
            text-transform: uppercase;
        }

        .card-divider {
            border: 0;
            border-top: 2px solid #bfa37e;
            /* Aksen Gold sesuai tema sebelumnya */
            width: 100%;
            margin: 15px 0;
        }

        .event-time {
            font-size: 1rem;
            color: #555;
            margin-bottom: 20px;
        }

        .loc-title {
            font-size: 1.2rem;
            color: #1a2a4e;
            margin-bottom: 15px;
        }

        .loc-name {
            font-weight: 700;
            margin-bottom: 5px;
        }

        .loc-detail {
            font-size: 0.9rem;
            color: #777;
            line-height: 1.4;
            margin-bottom: 25px;
        }

        /* Tombol Lokasi */
        .btn-location {
            display: inline-block;
            padding: 10px 20px;
            background: #1a2a4e;
            background: linear-gradient(195deg, #46281e4f, #46281e);
            color: #fff;
            text-decoration: none;
            border-radius: 20px;
            font-size: 0.85rem;
            text-align: center;
            transition: 0.3s;
            align-self: flex-start;
        }

        .btn-location:hover {
            filter: brightness(1.2);
            transform: translateY(-2px);
        }


        /* --- Dekorasi --- */
        .event-decor {
            position: absolute;
            width: 200px;
            opacity: 0.6;
            z-index: 1;
        }

        .top-left {
            top: 33px;
            left: -100px;
            /* transform: rotate(-15deg); */
        }

        .bottom-right {
            bottom: 24px;
            right: -70px;
            transform: rotate(3deg);
        }

        /* story */
        .section-story {
            padding: 80px 15px;
            /* background-color: #46281e; */
            /* Cokelat Jawa Utama */
            position: relative;
        }

        .story-container {
            position: relative;
            max-width: 450px;
            border: 2px solid rgb(223 192 117);
            margin: 0 auto;
            border-radius: 20px;
            padding: 20px 0;
            background-image: url('../images/bg-sampul-javabetawi.webp');
            background-position: bottom center;
            background-size: cover;
            overflow: hidden;
            z-index: 1;
        }

        /* Lapisan khusus untuk Background Image dengan Opacity */
        .story-container::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* background-image: url(javabetawi/images/bg-sampul-javabetawi.webp); */
            background-position: bottom center;
            background-size: cover;
            background-color: #43271da8;
            opacity: 0.8;
            z-index: -1;
            /* Meletakkan background di belakang konten */
        }

        .story-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .story-flower {
            width: 60px;
            margin-bottom: 10px;
        }

        .story-title {
            font-family: 'Pinyon Script', cursive;
            font-size: 2.5rem;
            color: #efbc4b;
            /* Kuning Betawi */
            font-style: italic;
        }

        /* Card Styling */
        .story-card {
            margin-bottom: 60px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .story-image-wrapper {
            width: 90%;
            /* padding: 0 30px; */
            height: 250px;
            /* border-radius: 25px; */
            overflow: hidden;
            z-index: 2;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        .story-img {
            width: 100%;
            height: 100%;
            border-radius: 25px;
            object-fit: cover;
        }

        .story-content-box {
            position: relative;
            width: 90%;
            margin-top: -30px;
            /* Efek Overlap sesuai referensi */
            padding: 50px 25px 30px;
            background-color: #fff;
            border-radius: 25px 25px;
            text-align: center;
            z-index: 1;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            overflow: hidden;
        }

        /* Layer Background Kartu (Gunakan bg-sampul-javabetawi.webp) */
        .bg-card-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('../images/bg-sampul-javabetawi.webp');
            background-size: cover;
            opacity: 0.15;
            /* Tipis saja agar teks tetap terbaca */
            z-index: -1;
        }

        .story-subtitle {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.1rem;
            color: #c9982c;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

        .story-text {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.85rem;
            line-height: 1.6;
            color: #555;
        }

        /* gallery/ */
        .gallery-section {
            padding: 60px 0px;
            background-image: url('../images/coklat-3.jpg');
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }

        .gallery-container {
            max-width: 500px;
            margin: 0 auto;
        }

        /* Jika dibuka di HP */
        @media (max-width: 768px) {
            .gallery-container {
                width: 350px;
            }
        }

        .gallery-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .gallery-icon {
            width: 50px;
            margin-bottom: 10px;
        }

        .gallery-title {
            font-family: 'Pinyon Script', cursive;
            font-size: 2.2rem;
            color: #efbc4b;
            /* Emas */
            font-style: italic;
        }

        /* Video Wrapper (Rasio 16:9) */
        .video-wrapper {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            /* 16:9 */
            height: 0;
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 2px solid rgb(223 192 117);
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        /* Photo Grid Styling */
        .photo-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            /* 2 kolom untuk mobile */
            gap: 15px;
        }

        .photo-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            height: 200px;
            /* Tinggi seragam atau bisa auto */
            border: 2px solid rgba(255, 215, 0, 0.3);
            transition: transform 0.3s ease;
        }

        .photo-item:hover {
            transform: scale(1.03);
            border-color: #FFD700;
        }

        .photo-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            cursor: pointer;
        }

        /* Dekorasi Bunga */
        .gallery-decor-bottom {
            margin-top: 30px;
            text-align: center;
        }

        .decor-flower {
            width: 100px;
            opacity: 0.8;
        }

        .gift-section {
            padding: 80px 20px;
            /* background: #e8ebef; */
            background-image: url('../images/coklat-3.jpg');
            background-size: cover;
            background-position: center;
            /* position: relative; */
            overflow: hidden;
            text-align: center;
            min-height: 60vh;
        }

        .gift-content {
            border-radius: 20px 20px 20px 20px;
            background-color: #fff;
            border-style: solid;
            border-width: 4px 4px 4px 4px;
            border-color: #D7BB83;
            padding: 20px;

        }

        .gift-content::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 20px 20px 20px 20px;
            background-image: url('../images/bg-sampul-javabetawi.webp');
            background-position: center center;
            background-size: cover;
            opacity: 0.2;
        }

        .gift-container {
            width: 340px;
            margin: 0 auto;
            position: relative;
            z-index: 5;
        }

        .gift-shadow-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 140%;
            z-index: -1;
            opacity: 0.8;
        }

        .gift-title {
            font-family: 'Pinyon Script', cursive;
            font-size: 2.5rem;
            color: #c9982c;
            font-style: italic;
        }

        .gift-divider {
            width: 50px;
            height: 3px;
            background: #b5905d;
            margin: 15px auto 25px;
        }

        .gift-intro {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #46281e;
            margin-bottom: 30px;
        }

        /* Tombol Klik Disini */
        .btn-show-gift {
            padding: 12px 35px;
            background: linear-gradient(195deg, #46281e82, #46281e);
            color: white;
            border: none;
            border-radius: 25px;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(44, 74, 94, 0.2);
        }

        .btn-show-gift:hover {
            background: #b5905d;
            transform: scale(1.05);
        }

        /* Wrapper Kartu Rekening */
        .gift-card-wrapper {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.8s ease-in-out, opacity 0.5s;
            opacity: 1;
            margin-top: 20px;
        }

        .gift-card-wrapper.active {
            max-height: 1000px;
            opacity: 1;
        }

        .account-card {
            background: white;
            padding: 30px 20px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(44, 74, 94, 0.1);
        }

        .account-item {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px dashed #eee;
        }

        .bank-logo {
            height: 30px;
            margin-bottom: 15px;
        }

        .account-number {
            font-size: 1.3rem;
            font-weight: 700;
            color: #2c4a5e;
            letter-spacing: 2px;
        }

        .account-name {
            font-size: 0.9rem;
            color: #3d637c;
            margin-bottom: 10px;
        }

        .btn-copy {
            background: #f0f4f8;
            border: 1px solid #2c4a5e;
            color: #2c4a5e;
            padding: 5px 15px;
            border-radius: 15px;
            font-size: 0.75rem;
            cursor: pointer;
            transition: 0.3s;
        }

        .btn-copy:hover {
            background: #2c4a5e;
            color: white;
        }

        /* Alamat */
        .address-item {
            margin-top: 10px;
        }

        .address-title {
            font-size: 1rem;
            color: #2c4a5e;
            margin-bottom: 5px;
        }

        .address-text {
            font-size: 0.9rem;
            margin-bottom: 10px;
            opacity: 0.8;
        }

        /* Decor */
        .g-flower-left {
            position: absolute;
            bottom: -30px;
            left: -50px;
            width: 200px;
            opacity: 0.5;
            z-index: 2;
            transform: rotate(348deg);
        }

        .gift-icon {
            font-size: 50px;
            line-height: 1;
            text-align: center;
            height: 1em;
            margin-bottom: 27px;
        }

        /* rsvp/ */
        .rsvp-section {
            padding: 80px 20px;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(70, 40, 30, 0.8));
        }

        .rsvp-container {
            max-width: 450px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .wishes-title {
            font-family: 'Pinyon Script', cursive;
            font-style: italic;
            text-shadow: 0px 5px 11px #ddbeb3;
            font-size: 2.5rem;
            color: #efbc4b;
            margin-bottom: 5px;
        }

        .wishes-subtitle {
            font-family: 'Montserrat', sans-serif;
            color: #ffffff;
            letter-spacing: 1px;
        }

        .decor-line {
            margin: 15px 0 30px;
        }

        .flower-mini {
            width: 80px;
        }

        /* Card Style */
        .rsvp-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 30px 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 2px solid rgb(223 192 117);
        }

        /* Hadir/Tidak Counter */
        .rsvp-counter {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
        }

        .count-box {
            flex: 1;
            padding: 15px;
            border-radius: 12px;
            color: white;
        }

        .count-box.hadir {
            background-color: #2e7d32;
        }

        /* Hijau Betawi */
        .count-box.tidak-hadir {
            background-color: #c62828;
        }

        /* Merah Betawi */

        .count-num {
            font-size: 1.5rem;
            font-weight: 700;
        }

        /* Form Styling */
        .form-group {
            margin-bottom: 15px;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: 'Montserrat', sans-serif;
            background: #f9f9f9;
        }

        .btn-kirim {
            width: 100%;
            background-color: #d4b581;
            /* Warna Emas Jawa */
            color: #46281e;
            border: none;
            padding: 12px;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }

        .btn-kirim:hover {
            background-color: #46281e;
            color: white;
        }

        /* Guestbook List */
        .wishes-list {
            margin-top: 30px;
            max-height: 400px;
            overflow-y: auto;
            text-align: left;
            padding-right: 5px;
        }

        .wish-item {
            display: flex;
            gap: 15px;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }

        .wish-avatar {
            width: 40px;
            height: 40px;
            background: #46281e;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .wish-name {
            font-weight: 700;
            color: #46281e;
            margin-bottom: 3px;
        }

        .verified {
            color: #2e7d32;
            font-size: 0.8rem;
        }

        .wish-text {
            font-size: 0.85rem;
            color: #666;
            line-height: 1.4;
        }

        .wish-time {
            color: #aaa;
            font-size: 0.75rem;
        }

        .footer-grass {
            width: 100%;
            opacity: 0.8;
            margin-top: 0px;
            margin-bottom: -91px;
        }

        .closing-section {
            position: relative;
            width: 100%;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: #ffffff;
            overflow: hidden;
        }

        /* Background & Overlay */
        .closing-bg-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .closing-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .closing-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* Gradasi gelap agar teks terbaca, seperti di referensi */
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(70, 40, 30, 0.8));
            z-index: 2;
        }

        /* Content Area */
        .closing-content {
            position: relative;
            z-index: 10;
            padding: 0 30px;
            max-width: 450px;
        }

        .closing-text {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.9rem;
            line-height: 1.8;
            margin-bottom: 40px;
            font-weight: 300;
        }

        .closing-greet p {
            font-family: 'Pinyon Script', cursive;
            font-size: 1.8rem;
            margin-bottom: 10px;
        }

        .couple-names-closing {
            font-family: 'JawaPalsu', serif;
            font-size: 2.8rem;
            color: #efbc4b;
            /* Kuning Betawi/Gold */
            margin-bottom: 30px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
        }

        .hashtag-wrapper {
            margin-bottom: 40px;
        }

        .hashtag-wrapper span {
            font-family: 'Montserrat', sans-serif;
            background: rgba(255, 215, 0, 0.2);
            border: 1px solid #FFD700;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            letter-spacing: 1px;
        }

        .mini-gunungan {
            width: 50px;
            opacity: 0.7;
            margin-bottom: 20px;
        }

        .credit-text p {
            font-size: 0.7rem;
            opacity: 0.6;
            letter-spacing: 2px;
        }