       /* ============================================
            RESET & BASE STYLES
        ============================================ */
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }
        
        html {
            height: -webkit-fill-available;
        }
        
        body {
            /*font-family: 'Marion Regular', serif;*/
            font-size: clamp(14px, 4vw, 16px); /* Ukuran font responsif */
            overflow-x: hidden;
            scroll-behavior: smooth;
            background: linear-gradient(135deg, #fce4ec 0%, #ffffff 100%);
            -webkit-text-size-adjust: 100%; /* Mencegah iOS mengubah ukuran font */
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            min-height: 100vh;
            min-height: -webkit-fill-available;
        
        }

        /* Fallback untuk browser yang tidak mendukung linear-gradient */
        @supports not (background: linear-gradient(135deg, #fce4ec 0%, #ffffff 100%)) {
            body {
                background: #fce4ec;
            }
        }

        /* Portrait Container */
        .portrait-wrapper {
            width: 100%;
            max-width: 100%;
            /* Menghapus max-width yang membatasi di desktop */
            margin: 0 auto;
            background: white;
            box-shadow: 0 0 50px rgba(255, 182, 193, 0.3);
            position: relative;
            min-height: 100vh;
        }

        /* ============================================
           KEYFRAME ANIMATIONS
        ============================================ */

        /* Ken Burns Effects - dengan fallback untuk browser lama */
        @keyframes kenBurns1 {
            0% {
                transform: scale(1) translate(0, 0);
            }

            50% {
                transform: scale(1.15) translate(-3%, 2%);
            }

            100% {
                transform: scale(1) translate(0, 0);
            }
        }

        @keyframes kenBurns2 {
            0% {
                transform: scale(1.1) translate(0, 0);
            }

            50% {
                transform: scale(1) translate(3%, -2%);
            }

            100% {
                transform: scale(1.1) translate(0, 0);
            }
        }

        @keyframes kenBurns3 {
            0% {
                transform: scale(1) translate(0, 0);
            }

            33% {
                transform: scale(1.12) translate(2%, 3%);
            }

            66% {
                transform: scale(1.08) translate(-2%, -1%);
            }

            100% {
                transform: scale(1) translate(0, 0);
            }
        }

        @keyframes kenBurnsMusic {
            0% {
                transform: scale(1) translate(0, 0);
            }

            25% {
                transform: scale(1.12) translate(-3%, 2%);
            }

            50% {
                transform: scale(1.06) translate(2%, -3%);
            }

            75% {
                transform: scale(1.10) translate(-2%, 1%);
            }

            100% {
                transform: scale(1) translate(0, 0);
            }
        }

        /* Parallax & Float Effects */
        @keyframes parallaxFloat {

            0%,
            100% {
                transform: translateY(0) scale(1);
            }

            50% {
                transform: translateY(-20px) scale(1.02);
            }
        }

        @keyframes particleFloat {
            0% {
                transform: translateY(100vh) translateX(0) rotate(0deg);
                opacity: 0;
            }

            10%,
            90% {
                opacity: 0.8;
            }

            100% {
                transform: translateY(-100vh) translateX(100px) rotate(360deg);
                opacity: 0;
            }
        }

        @keyframes bokehFloat {

            0%,
            100% {
                transform: translateY(0);
                opacity: 0.6;
            }

            50% {
                transform: translateY(-30px);
                opacity: 0.8;
            }
        }

        /* Gradient & Shine Effects */
        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        @keyframes shine {
            0% {
                left: -100%;
            }

            50%,
            100% {
                left: 150%;
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -1000px 0;
            }

            100% {
                background-position: 1000px 0;
            }
        }

        /* Zoom & Scale Effects */
        @keyframes zoomInFade {
            0% {
                transform: scale(1.3);
                opacity: 0;
            }

            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        @keyframes heartBeat {

            0%,
            100% {
                transform: scale(1);
            }

            10%,
            30% {
                transform: scale(0.9);
            }

            20%,
            40% {
                transform: scale(1.1);
            }
        }

        /* Fade & Slide Effects */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-100px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(100px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(100%);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Other Effects */
        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes rotateIn {
            from {
                opacity: 0;
                transform: rotate(-180deg) scale(0.5);
            }

            to {
                opacity: 1;
                transform: rotate(0deg) scale(1);
            }
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        @keyframes falling {
            0% {
                transform: translateY(-50px) rotate(0deg);
                opacity: 1;
            }

            100% {
                transform: translateY(100vh) rotate(360deg);
                opacity: 0;
            }
        }

        /* ============================================
        COVER SECTION
        ============================================ */
        #cover {
            
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;

            min-height: 100vh;
            min-height: calc(var(--vh, 1vh) * 100);
            min-height: -webkit-fill-available; /* Safari iOS fix */
            padding-top: env(safe-area-inset-top);
            padding-bottom: env(safe-area-inset-bottom);
            padding-left: env(safe-area-inset-left);
            padding-right: env(safe-area-inset-right);
            box-sizing: border-box;
            
            /* Urutan penting — browser pakai nilai terakhir yang didukung */
            height: 100vh;
            height: calc(var(--vh, 1vh) * 100);  /* JS fallback iOS lama */
            height: 100vh;                        /* iOS Safari 15.4+ & Chrome modern */

            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            color: white;
            text-align: center;
            transition: opacity 0.8s ease, transform 0.8s ease;
            overflow: hidden;
            will-change: transform, opacity;

            
        }

        #cover::before {
            content: '';
            position: absolute;
            top: 0;
            left: -0%;
            width: 100%;
            height: 100vh;
            /*background: */
            /*    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),*/
            /*    url('/img/cover-1.jpg') center center / cover no-repeat;*/
            
            /*background: */
            /*    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),*/
            /*    url('/img/cover-2.jpg') center center / cover no-repeat;*/
            
            background: 
                linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('/img/cover-3.jpg') center center / cover no-repeat;
            
            z-index: 0;
            will-change: transform;
            transform: translateZ(0);
        }

        #cover::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: 100% 100%;
            z-index: 1;
            pointer-events: none;
        }

        #cover.hidden {
            opacity: 0;
            transform: scale(1.1);
            pointer-events: none;
        }

        /* ============================================
        COVER CONTENT
        ============================================ */
        .cover-content {
            position: relative;
            z-index: 2;
            width: 100%;
            height: 100%;
            padding: 0 1rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;   /* tombol & teks di tengah */
            gap: 0.3rem;
            overflow: hidden;
        }

        .cover-subtitle {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(0.75rem, 2.5vw, 1.1rem);
            font-weight: 300;
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 0.3rem;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
        }

        .cover-names {
            font-family: 'Amsterdam Signature', cursive;
            font-size: clamp(2.8rem, 10vw, 4.8rem);
            font-weight: 400;
            margin-bottom: 0.8rem;
            color: #ffffff;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4),
                        0 0 20px rgba(255, 192, 203, 0.8);
            line-height: 1.1;
        }

        .guest-name {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(0.7rem, 2vw, 0.85rem);
            letter-spacing: 2px;
            opacity: 0.9;
            margin-bottom: 0.2rem;
        }

        #guestNameDisplay {
            color: #ffffff !important;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
            font-size: clamp(0.85rem, 2.5vw, 1rem) !important;
            padding: 0 1rem;
            line-height: 1.4;
            margin-bottom: 1.5rem !important;  /* jarak antara nama tamu & tombol */
        }

        /* ============================================
        TOMBOL OPEN INVITATION
        ============================================ */
        .btn-open {
            flex-shrink: 0;
            margin-top: 0;
            margin-bottom: 0;

            background: rgba(17, 17, 17, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.4);
            color: #fff;
            padding: clamp(8px, 2vh, 12px) clamp(24px, 6vw, 40px);
            border-radius: 50px;
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(0.8rem, 2.5vw, 0.95rem);
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.4s ease;
            z-index: 100;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            position: relative;
            min-height: 44px;
            min-width: 140px;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }

        .btn-open:hover {
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.8);
            transform: translateY(-2px);
        }

        .btn-open::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 182, 193, 0.1);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-open:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-open:active {
            transform: translateY(-2px);
            background: rgba(255, 255, 255, 0.15);
        }

        /* ============================================
           iPhone SE / layar kecil (≤375px)
        ============================================ */
        @media (max-width: 375px) {
            .cover-names {
                font-size: clamp(2.4rem, 9vw, 3rem);
                margin-bottom: 0.6rem;
            }
        }

        /* ============================================
           Mobile umum (≤768px)
        ============================================ */
        @media (max-width: 768px) {
            #cover::before {
                background-position: top center;
            }
        }

        /* ============================================
           Landscape
        ============================================ */
        @media (max-height: 500px) and (orientation: landscape) {
            .cover-names {
                font-size: clamp(2rem, 7vh, 3rem);
                margin-bottom: 0.4rem;
            }
            #guestNameDisplay {
                margin-bottom: 0.8rem !important;
            }
        }

        /* ============================================
           FONT SIZE BASE
        ============================================ */
        html {
            scroll-behavior: smooth;
        }
        @media (max-width: 768px) { html { font-size: 14px; } }
        @media (max-width: 480px) { html { font-size: 13px; } }
        @media (max-width: 375px) { html { font-size: 12px; } }



        /* ============================================
           MAIN CONTENT
        ============================================ */
        #main-content {
            display: none;
            opacity: 0;
            transition: opacity 0.8s ease;
        }

        #main-content.active {
            display: block;
            animation: fadeIn 0.8s ease forwards;
        }

        /* ============================================
           HERO SECTION
        ============================================ */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            color: white;
            text-align: left;
            position: relative;
            overflow: hidden;
            padding-left: 0;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding-left: 5%;
            margin-left: 0px;
            text-align: left;
            margin-top: -15vh;
            width: 90%;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -10%;
            left: -20%;
            width: 120%;
            height: 120%;
            background:
                linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('/img/cover_hero/HERO.jpg') center center / cover no-repeat;
            animation: kenBurns2 30s ease-in-out infinite;
            z-index: 0;

            /* GPU acceleration — cegah repaint tiap frame */
            will-change: transform;
            transform: translateZ(0);
        }

        /* Hero Text */
        .hero-subtitle {
            font-family: 'Montserrat Black', serif;
            font-size: clamp(0.7rem, 2vw, 0.8rem);
            font-weight: 400;
            letter-spacing: 0px;
            margin-bottom: 0;
            opacity: 0.9;
        }

        .hero-names {
            font-family: 'Amsterdam Signature', cursive;
            font-size: clamp(2.2rem, 3.5vw, 2.5rem);
            font-weight: 300;
            letter-spacing: 1px;
            margin-bottom: 0.4rem;
        }

        .hero-content h1 {
            font-size: clamp(1.2rem, 4vw, 1.5rem);
            font-weight: 300;
            margin-bottom: 1rem;
            opacity: 0;
        }

        .hero-content.show h1 {
            animation: fadeInDown 1s ease 0.2s forwards;
        }

        .hero-content h2 {
            font-size: clamp(2rem, 6vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
            opacity: 0;
            /* Shimmer hanya pakai background-position, lebih ringan */
            background: linear-gradient(45deg, #fff, #ffc0cb, #fff);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            will-change: background-position;
        }

        .hero-content.show h2 {
            animation: scaleIn 1s ease 0.4s forwards, shimmer 3s linear infinite;
        }

        .hero-date {
            margin-top: 1rem;
            font-size: clamp(0.7rem, 2vw, 0.75rem);
            letter-spacing: 2px;
            opacity: 0;
        }

        .hero-content.show .hero-date {
            animation: fadeInUp 1s ease 0.6s forwards;
        }

        .hero-note {
            margin-top: 1rem;
            font-size: clamp(0.7rem, 2vw, 0.75rem);
            opacity: 0.8;
        }

        /* Shine Overlay
           — pakai opacity instead of left movement (lebih ringan di GPU) */
        .shine-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg,
                    transparent 0%,
                    rgba(255, 182, 193, 0.18) 50%,
                    transparent 100%);
            background-size: 200% 100%;
            z-index: 1;
            animation: shineFast 8s ease-in-out infinite;
            /* pointer-events off agar tidak ganggu klik */
            pointer-events: none;
            will-change: background-position;
        }

        .hero-section .shine-overlay {
            animation-delay: 2s;
        }

        /* Ganti animasi shine lama (left: -100% → 100%) ke background-position
           jauh lebih ringan karena tidak trigger layout */
        @keyframes shineFast {
            0%   { background-position: 200% center; }
            100% { background-position: -200% center; }
        }

        /* ============================================
           MOBILE
        ============================================ */
        @media (max-width: 768px) {
            #cover .hero-content,
            .hero-content {
                margin-top: 5vh;
                padding: 1.5rem 1rem;
            }

            /* Matikan animasi berat di mobile lemah */
            .hero-section::before {
                animation: none;
            }

            .shine-overlay {
                display: none;
            }

            .particle {
                display: none;
            }
        }

        /* ============================================
           FONT SIZE BASE
        ============================================ */
        @media (max-width: 768px) { html { font-size: 14px; } }
        @media (max-width: 480px) { html { font-size: 13px; } }


        /* ============================================
           QUOTE SECTION
        ============================================ */
        .quote-section {
            background: #eeeeee;
            text-align: center;
            position: relative;
            overflow: hidden;
            padding: 3rem 1rem;
        }

        .quote-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 60%;
            height: 60%;
            animation: gradientShift 15s ease infinite;
            z-index: 0;
        }

        .quote-text {
            font-size: clamp(0.8rem, 2.5vw, 2.9rem);
            /* Ukuran font responsif */
            font-style: italic;
            color: #1b1b1b;
            max-width: 100%;
            margin: 0 auto;
            line-height: 1.6;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
            padding: 0 1rem;
            position: relative;
            z-index: 2;
        }


        .quote-text.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* ============================================
           OPTIMISASI UNTUK MOBILE
        ============================================ */
        @media (max-width: 768px) {
            #cover .hero-content {
                margin-top: 5vh;
                padding: 1.5rem 1rem;
            }

            .particle {
                display: none;
            }
        }

        /* ============================================
           PERBAIKAN FONT MOBILE (TAMBAHAN)
        ============================================ */
        @media (max-width: 768px) {
            html {
                font-size: 14px;
                /* Ukuran font dasar yang lebih kecil untuk mobile */
            }
        }

        @media (max-width: 480px) {
            html {
                font-size: 13px;
                /* Ukuran font dasar yang bahkan lebih kecil untuk layar sangat kecil */
            }
        }

        /* ============================================
           COUPLE SECTION
        ============================================ */
        .couple-section {
            position: relative;
            overflow: hidden;
            padding: 3rem 1rem;
        }

        .couple-section::before {
            content: '';
            position: absolute;
            top: -10%;
            left: -10%;
            width: 120%;
            height: 110%;
            background:
                linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('/img/gallery/asset-12.jpg') center center / cover no-repeat;
            animation: kenBurns3 35s ease-in-out infinite;
            z-index: 0;
        }

        .couple-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg,
                    rgba(255, 182, 193, 0.2),
                    transparent 50%,
                    rgba(255, 192, 203, 0.2));
            background-size: 200% 200%;
            animation: gradientShift 12s ease infinite;
            z-index: 0;
        }

        .couple-section p {
            color: #fff;
        }

        .couple-card {
            text-align: center;
            padding: 1.5rem;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            margin-bottom: 0rem;
            position: relative;
            z-index: 2;
        }

        .couple-card.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .couple-card:nth-child(2) {
            transition-delay: 0.2s;
        }

        .couple-card:nth-child(3) {
            transition-delay: 0.4s;
        }

        /* ── Wrapper foto (baru) ── */
        .couple-photo-wrap {
            position: relative;
            display: inline-block;
            cursor: zoom-in;
            margin: 0 auto 1.5rem;
        }

        .couple-photo {
            width: clamp(100px, 20vw, 120px);
            height: clamp(100px, 20vw, 120px);
            border-radius: 50%;
            object-fit: cover;
            margin: 0;                          /* margin dipindah ke wrapper */
            border: 2px solid #ffffff;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 30px rgba(255, 182, 193, 0.2);
            display: block;
        }

        .couple-photo-wrap:hover .couple-photo {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 20px 40px rgba(255, 182, 193, 0.3);
        }

        /* ikon zoom kecil saat hover */
        .zoom-hint {
            position: absolute;
            bottom: 4px;
            right: 4px;
            width: 26px;
            height: 26px;
            background: rgba(255, 255, 255, 0.85);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: scale(0.7);
            transition: opacity 0.25s ease, transform 0.25s ease;
            pointer-events: none;
            color: #333;
        }

        .couple-photo-wrap:hover .zoom-hint {
            opacity: 1;
            transform: scale(1);
        }

        .couple-name {
            font-family: 'Amsterdam Signature', cursive;
            font-size: clamp(2.2rem, 3.5vw, 2.5rem);
            font-weight: 300;
            letter-spacing: 1px;
            margin-bottom: 1.4rem;
            color: #ffffff;
        }

        .couple-card:hover .couple-name {
            transform: scale(1.05);
        }

        /* ============================================
           MODAL PREVIEW FOTO
        ============================================ */
        .photo-modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.82);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            cursor: zoom-out;
        }

        .photo-modal-overlay.active {
            opacity: 1;
            pointer-events: all;
        }

        .photo-modal-inner {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 14px;
            transform: scale(0.88) translateY(16px);
            transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
            cursor: default;
        }

        .photo-modal-overlay.active .photo-modal-inner {
            transform: scale(1) translateY(0);
        }

        .photo-modal-img {
            width: min(80vw, 380px);
            height: min(80vw, 380px);
            object-fit: cover;
            border-radius: 50%;
            border: 3px solid rgba(255, 182, 193, 0.7);
            box-shadow:
                0 0 0 6px rgba(255, 182, 193, 0.15),
                0 20px 60px rgba(0, 0, 0, 0.7);
        }

        .photo-modal-name {
            font-family: 'Amsterdam Signature', cursive;
            font-size: clamp(2rem, 5vw, 2.8rem);
            font-weight: 300;
            color: #ffffff;
            letter-spacing: 1px;
            text-shadow: 0 2px 12px rgba(255, 182, 193, 0.5);
        }

        .photo-modal-close {
            position: absolute;
            top: -12px;
            right: -12px;
            width: 34px;
            height: 34px;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #333;
            transition: background 0.2s, transform 0.25s;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .photo-modal-close:hover {
            background: #fff;
            transform: rotate(90deg);
        }

        /* ============================================
           TURUT MENGUNDANG SECTION
        ============================================ */
        .inviting-section {
            padding: 3rem 1rem;
            background: none;
            position: relative;
            overflow: hidden;
        }

        .inviting-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .inviting-section .container {
            position: relative;
            z-index: 10;
            max-width: 100%;
        }

        .section-title-inviting {
            font-size: clamp(1.2rem, 4vw, 1.5rem);
            /* Ukuran font responsif */
            font-weight: 700;
            color: #222;
            font-family: 'Marion Regular', serif;
            text-align: center;
        }

        .section-subtitle-inviting {
            text-align: center;
            color: #222222;
            font-style: italic;
            margin-bottom: 2rem;
        }

        .inviting-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-top: 1rem;
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
        }

        .inviting-card {
            background: rgba(255, 255, 255, 0.8);
            padding: 1.5rem;
            border-radius: 5px;
            text-align: left;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: slideInUp 1s ease-out;
            backdrop-filter: blur(10px);
        }

        .inviting-card:hover {
            transform: translateY(-5px) scale(1.02);
        }

        .inviting-list {
            list-style: none;
            padding-left: 0;
            margin: 0;
        }

        .inviting-list li {
            margin-bottom: 0.6rem;
            color: #222;
            font-size: clamp(0.8rem, 2.5vw, 0.9rem);
            /* Ukuran font responsif */
            line-height: 1.6;
        }

        .inviting-list strong {
            color: #0A1527;
        }

        .inviting-title {
            font-size: clamp(0.9rem, 3vw, 1rem);
            /* Ukuran font responsif */
            font-weight: 700;
            color: #222;
            margin-bottom: 0.5rem;
        }

        .inviting-subtitle {
            font-size: clamp(0.8rem, 2.5vw, 0.9rem);
            /* Ukuran font responsif */
            color: #444;
            font-style: italic;
        }

        .inviting-note {
            font-size: clamp(0.75rem, 2.2vw, 0.85rem);
            /* Ukuran font responsif */
            color: #555;
            margin-top: 0.5rem;
        }

        /* Animasi ringan */
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


        /* ============================================
           COUNTDOWN SECTION
        ============================================ */
        .countdown-section {
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
            padding: 3rem 1rem;
        }

        .countdown-section::before {
            content: '';
            position: absolute;
            top: -10%;
            left: -10%;
            width: 120%;
            height: 120%;
            background: #eeeeee;
            animation: kenBurns1 28s ease-in-out infinite;
            z-index: 0;
        }

        .countdown-section::after {
            content: '';
            position: absolute;
            top: -10%;
            left: -10%;
            width: 120%;
            height: 120%;
            background:
                linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.0)),
                url('/img/basic-template-img/bg-video.JPEG') center center / cover no-repeat;
            animation: kenBurns2 32s ease-in-out infinite;
            z-index: 0;
        }

        .countdown-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            max-width: 100%;
            margin: 0 auto;
            padding: 0 1rem;
            position: relative;
            z-index: 2;
        }

        .countdown-item {
            background: rgba(85, 85, 85, 0);
            padding: 1.5rem 1rem;
            border-radius: 15px;
            backdrop-filter: blur(3px);
            border: 2px solid rgba(255, 182, 193, 0.2);
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .countdown-item.animated {
            opacity: 1;
            transform: scale(1);
        }

        .countdown-item:nth-child(1) {
            transition-delay: 0.1s;
        }

        .countdown-item:nth-child(2) {
            transition-delay: 0.2s;
        }

        .countdown-item:nth-child(3) {
            transition-delay: 0.3s;
        }

        .countdown-item:nth-child(4) {
            transition-delay: 0.4s;
        }

        .countdown-item:hover {
            transform: translateY(-10px) scale(1.05);
            background: rgba(29, 29, 29, 0.2);
            box-shadow: 0 15px 40px rgba(24, 24, 24, 0.3);
        }

        .countdown-number {
            font-size: clamp(1.2rem, 4vw, 1.5rem);
            /* Ukuran font responsif */
            font-weight: 700;
            display: block;
            animation: pulse 2s ease-in-out infinite;
        }

        .countdown-label {
            font-size: clamp(0.7rem, 2.2vw, 0.8rem);
            /* Ukuran font responsif */
            text-transform: none;
            letter-spacing: 2px;
        }

        .gallerySwiper {
            width: 100%;
            height: clamp(40vh, 60vw, 60vh);
            /* Tinggi responsif */
            max-width: 900px;
            margin: 0 auto;
            border-radius: 12px;
            overflow: hidden;
        }

        .gallerySwiper .swiper-slide {
            text-align: center;
            font-size: 18px;
            background: #000;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .gallerySwiper .swiper-slide img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Warna navigasi agar terlihat di background gelap */
        .gallerySwiper .swiper-button-next,
        .gallerySwiper .swiper-button-prev {
            color: #fff;
        }

        .gallerySwiper .swiper-pagination-bullet-active {
            background: #fff;
        }

        /* ============================================
           EVENT SECTION
        ============================================ */
        .event-section {
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
            padding: 3rem 1rem;
        }

        .event-section::before {
            content: '';
            position: absolute;
            top: -10%;
            left: -10%;
            width: 120%;
            height: 120%;
            background:
                linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('/img/gallery/asset-17.jpg') center center / cover no-repeat;
            animation: kenBurns2 32s ease-in-out infinite;
            z-index: 0;
        }

        .event-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg,
                    transparent,
                    rgba(24, 24, 24, 0.0),
                    transparent);
            background-size: 100% 200%;
            animation: gradientShift 10s ease infinite;
            z-index: 1;
        }

        .event-card {
            background: linear-gradient(rgba(36, 35, 35, 0.1), rgba(20, 20, 20, 0.1));
            padding: 1.5rem;
            border-radius: 20px;
            text-align: center;
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 30px rgba(255, 182, 193, 0.1);
            position: relative;
            z-index: 2;
        }

        .event-card.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .event-card:nth-child(2) {
            transition-delay: 0.2s;
        }

        .event-card:nth-child(3) {
            transition-delay: 0.4s;
        }

        .event-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(255, 182, 193, 0.2);
        }

        .event-icon {
            font-size: clamp(1.5rem, 4vw, 2rem);
            /* Ukuran font responsif */
            color: #762B4C;
            margin-bottom: 1rem;
            display: inline-block;
            animation: heartBeat 1.5s ease-in-out infinite;
        }

        .event-card:hover .event-icon {
            animation: float 1s ease-in-out infinite;
        }


        /* ============================================
           CONTAINER & LAYOUT
        ============================================ */
        .container {
            max-width: 100%;
            margin: 0 auto;
            padding: 0 15px;
            position: relative;
            z-index: 1;
            width: 100%;
            pointer-events: auto;
        }

        /* Section Title Styles */
        .section-title {
            font-size: clamp(1.2rem, 4vw, 1.5rem);
            /* Ukuran font responsif */
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
            color: #2c3e50;
            position: relative;
            letter-spacing: -1px;
        }

        /* ================================
               VIDEO SECTION STYLES - FIXED
            ================================ */
        .video-section {
            padding: 3rem 1rem;
            background: #ffffff;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .video-section::before {
            content: '';
            position: absolute;
            top: -10%;
            left: -10%;
            width: 120%;
            height: 120%;
            background:
                linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.0)),
                url('/img/basic-template-img/bg-video.JPEG') center center / cover no-repeat;
            animation: kenBurns2 32s ease-in-out infinite;
            z-index: 0;
        }

        @keyframes videoGlow {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }

            50% {
                transform: translate(50px, 50px) scale(1.1);
            }
        }

        .video-section .container {
            position: relative;
            z-index: 2;
            max-width: 100%;
        }

        .section-title-video {
            font-family: 'Montserrat Black', cursive;
            /* Ganti serif menjadi cursive untuk font yang lebih sesuai */
            font-size: clamp(2.2rem, 3.5vw, 2.5rem);
            font-weight: 300;
            letter-spacing: 1px;
            margin-bottom: 1.4rem;
            color: #222222;
            text-align: center
        }

        .section-title-video::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #ffffff, transparent);
        }

        .section-title-video i {
            color: #222222;
            margin-right: 10px;
            animation: playPulse 2s ease-in-out infinite;
        }

        @keyframes playPulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }
        }

        .section-subtitle-video {
            text-align: center;
            font-size: clamp(0.8rem, 2.5vw, 0.9rem);
            /* Ukuran font responsif */
            color: #222222;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .video-container {
            max-width: 100%;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 20px 60px rgba(255, 182, 193, 0.2);
            background: #000;
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .video-wrapper.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .video-wrapper:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(255, 182, 193, 0.3);
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 15px;
            border: none;
            display: block;
        }

        .video-caption {
            text-align: center;
            margin-top: 20px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(255, 182, 193, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .video-caption i {
            color: #222222;
            font-size: 1.3rem;
            margin-bottom: 10px;
            display: block;
            animation: heartBeat 1.5s ease-in-out infinite;
        }

        @keyframes heartBeat {

            0%,
            100% {
                transform: scale(1);
            }

            25% {
                transform: scale(1.1);
            }

            50% {
                transform: scale(1);
            }
        }

        .video-caption p {
            font-size: 1rem;
            color: #222222;
            font-family: 'Marion Regular', serif;
            font-style: italic;
            margin: 0;
            opacity: 0.9;
        }

        /* ============================================
           ENHANCED TURUT MENGUNDANG SECTION
        ============================================ */
        .inviting-section {
            padding: 3rem 1rem;
            background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .inviting-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                radial-gradient(circle at 20% 50%, rgba(255, 182, 193, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 192, 203, 0.05) 0%, transparent 50%);
            z-index: 1;
            pointer-events: none;
        }

        .inviting-section .container {
            position: relative;
            z-index: 2;
            max-width: 100%;
        }

        .section-title-inviting {
            font-size: clamp(1.1rem, 3.5vw, 1.3rem);
            /* Ukuran font responsif */
            font-weight: 700;
            color: #2c3e50;
            font-family: 'Marion Regular', serif;
            text-align: center;
            margin-bottom: 0.5rem;
        }

        .section-title-inviting i {
            color: #0A1527;
            margin-right: 10px;
        }

        .section-title-inviting::after {
            content: '';
            display: block;
            margin: 1rem auto 0;
            height: 2px;
            width: 100px;
            background: linear-gradient(90deg, transparent, #0A1527, transparent);
        }

        .section-subtitle-inviting {
            text-align: center;
            color: #222;
            font-style: italic;
            margin-bottom: 2rem;
            font-size: clamp(0.8rem, 2.5vw, 0.9rem);
            /* Ukuran font responsif */
        }

        .inviting-grid {
            max-width: 100%;
            margin: 0 auto;
        }

        .inviting-card {
            background: #ffffff;
            border-radius: 15px;
            padding: 0;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            animation: fadeInUp 0.8s ease;
        }

        .inviting-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
        }

        .card-header-inviting {
            background: linear-gradient(135deg, #0A1527 0%, #1a2940 100%);
            padding: 1.5rem;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .card-header-inviting::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: shine 8s ease-in-out infinite;
        }

        .header-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .header-icon i {
            font-size: 1.8rem;
            color: #ffffff;
            animation: pulse 2s ease-in-out infinite;
        }

        .card-header-inviting h3 {
            margin: 0;
            font-size: clamp(1.1rem, 3.5vw, 1.3rem);
            /* Ukuran font responsif */
            font-weight: 600;
            letter-spacing: 0.5px;
            position: relative;
            z-index: 1;
        }

        .inviting-content {
            padding: 1.5rem;
        }

        .inviting-category {
            margin-bottom: 2rem;
        }

        .inviting-category:last-child {
            margin-bottom: 0;
        }

        .category-title {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: clamp(0.9rem, 3vw, 1rem);
            /* Ukuran font responsif */
            font-weight: 600;
            color: #0A1527;
            margin-bottom: 1rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid #f0f0f0;
        }

        .category-title i {
            font-size: 0.9rem;
            color: #0A1527;
        }

        .inviting-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .inviting-list li {
            display: flex;
            flex-direction: column;
            padding: 0.8rem;
            margin-bottom: 0.75rem;
            background: #f8f9fa;
            border-radius: 12px;
            border-left: 4px solid #0A1527;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .inviting-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(90deg, rgba(10, 21, 39, 0.05), transparent);
            transition: width 0.3s ease;
        }

        .inviting-list li:hover {
            background: #ffffff;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transform: translateX(5px);
        }

        .inviting-list li:hover::before {
            width: 100%;
        }

        .guest-name {
            font-weight: 600;
            color: #ffffff;
            font-size: clamp(0.8rem, 2.5vw, 0.9rem);
            /* Ukuran font responsif */
            margin-bottom: 0.25rem;
            position: relative;
            z-index: 1;
        }

        .guest-title {
            font-size: clamp(0.7rem, 2.2vw, 0.8rem);
            /* Ukuran font responsif */
            color: #7f8c8d;
            font-style: italic;
            position: relative;
            z-index: 1;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        @keyframes shine {
            0% {
                transform: translate(-50%, -50%) rotate(0deg);
            }

            100% {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 2px;
            box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
        }

        .section-subtitle {
            text-align: center;
            font-size: clamp(0.9rem, 3vw, 1rem);
            /* Ukuran font responsif */
            color: #6c757d;
            margin-bottom: 2rem;
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
            font-style: italic;
            opacity: 0.9;
        }

        /* ============================================
           MAPS SECTION
        ============================================ */
        .maps-section {
            padding: 3rem 1rem;
            background: #eeeeee;
            position: relative;
            overflow: hidden;
        }

        .maps-section::before {
            content: '';
            position: absolute;
            top: -10%;
            left: -10%;
            width: 110%;
            height: 100%;
            /* background:
                linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('/img/basic-template-img/maps.JPEG') center center / cover no-repeat;
            animation: kenBurns2 32s ease-in-out infinite; */
            z-index: 0;
        }

        .section-subtitle {
            text-align: center;
            color: #1d1d1d;
            margin-bottom: 2rem;
            font-size: clamp(0.9rem, 3vw, 1rem);
            /* Ukuran font responsif */
            position: relative;
            z-index: 2;
        }

        .maps-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            max-width: 100%;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .map-card {
            background: transparent;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(255, 182, 193, 0.2);
            transition: all 0.3s ease;
        }

        .map-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(255, 182, 193, 0.15);
        }

        .map-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            color: #1d1d1d;
            font-size: 1.5rem;
        }

        .map-title {
            text-align: center;
            color: #ffffff;
            margin-bottom: 1rem;
            font-size: clamp(1.1rem, 3.5vw, 1.3rem);
            /* Ukuran font responsif */
        }

        .map-details {
            margin-bottom: 1rem;
        }

        .map-details p {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #1b1b1b;
            margin-bottom: 0.8rem;
            font-size: clamp(0.8rem, 2.5vw, 0.9rem);
            /* Ukuran font responsif */
        }

        .map-details i {
            color: #1b1b1b;
            font-size: 1rem;
        }

        .map-container {
            margin-bottom: 1rem;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(255, 182, 193, 0.1);
        }

        .map-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            width: 100%;
            padding: 0.6rem;
            background: linear-gradient(135deg, #ffffff, #ffffff);
            color: #1a1a1a;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: clamp(0.8rem, 2.5vw, 0.9rem);
            /* Ukuran font responsif */
            min-height: 44px;
            /* Minimum touch target size for iOS */
            min-width: 44px;
        }

        .map-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 182, 193, 0.3);
            color: white;
        }

        /* ============================================
           MUSIC SECTION
        ============================================ */
        .music-section {
            padding: 3rem 1rem;
            color: white;
            position: relative;
            overflow: hidden;
        }

        /* Layer 1: Animated Background with Ken Burns */
        .music-section::before {
            content: '';
            position: absolute;
            top: -10%;
            left: -10%;
            width: 120%;
            height: 120%;
            background:
                linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('https://images.unsplash.com/photo-1606216794074-735e91aa2c92?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center center / cover no-repeat;
            animation:
                kenBurnsMusic 30s ease-in-out infinite,
                zoomInFade 1.5s ease-out;
            z-index: 0;
        }

        /* Layer 2: Bokeh Effect Overlay */
        .music-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                radial-gradient(circle, rgba(255, 182, 193, 0.15) 2px, transparent 2px),
                radial-gradient(circle, rgba(255, 192, 203, 0.1) 3px, transparent 3px),
                radial-gradient(circle, rgba(255, 182, 193, 0.08) 4px, transparent 4px);
            background-size: 150px 150px, 200px 200px, 250px 250px;
            background-position: 0 0, 75px 75px, 125px 125px;
            animation: bokehFloat 30s ease-in-out infinite;
            opacity: 0.6;
            z-index: 1;
        }

        /* Layer 3: Shine Effect */
        .music-section .container::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg,
                    transparent,
                    rgba(255, 182, 193, 0.2),
                    transparent);
            animation: shine 12s ease-in-out infinite;
            z-index: 1;
            pointer-events: none;
        }

        .music-section>* {
            position: relative;
            z-index: 2;
        }

        .playlist-container {
            max-width: 100%;
            margin: 0 auto;
            background: transparent;
            border-radius: 20px;
            padding: 1.5rem;
            box-shadow: 0 15px 50px rgba(255, 182, 193, 0.1);
        }

        .playlist-header {
            margin-bottom: 1.5rem;
        }

        .now-playing {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .vinyl-animation {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #ffffff, #762B4C);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            animation: rotate 4s linear infinite;
            animation-play-state: paused;
        }

        .track-info h4 {
            margin: 0 0 0.3rem 0;
            color: #ffffff;
            font-size: clamp(1rem, 3vw, 1.1rem);
            /* Ukuran font responsif */
        }

        .track-info p {
            margin: 0;
            color: #ffffff;
            font-size: clamp(0.8rem, 2.5vw, 0.9rem);
            /* Ukuran font responsif */
        }

        .player-controls {
            display: flex;
            justify-content: center;
            gap: 0.8rem;
        }

        .control-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: none;
            background: #0A1527;
            color: #333;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 44px;
            /* Minimum touch target size for iOS */
            min-width: 44px;
        }

        .control-btn.play-btn {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #762B4C, #ffc0cb);
            color: white;
            font-size: 1.2rem;
        }

        .control-btn:hover {
            transform: scale(1.1);
        }

        .playlist-tracks {
            margin: 1.5rem 0;
            max-height: 200px;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            /* For smooth scrolling on iOS */
        }

        .track-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 0.8rem;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 0.5rem;
        }

        .track-item:hover {
            background: rgba(255, 182, 193, 0.1);
        }

        .track-item.active {
            background: #0A1527;
            color: white;
        }

        .track-number {
            font-weight: 600;
            opacity: 0.7;
            font-size: clamp(0.8rem, 2.5vw, 0.9rem);
            /* Ukuran font responsif */
        }

        .track-details {
            flex: 1;
        }

        .track-details h5 {
            margin: 0 0 0.2rem 0;
            font-size: clamp(0.8rem, 2.5vw, 0.9rem);
            /* Ukuran font responsif */
        }

        .track-details p {
            margin: 0;
            font-size: clamp(0.7rem, 2.2vw, 0.8rem);
            /* Ukuran font responsif */
            opacity: 0.8;
        }

        .track-duration {
            opacity: 0.7;
            font-size: clamp(0.7rem, 2.2vw, 0.8rem);
            /* Ukuran font responsif */
        }

        .volume-control {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-top: 1rem;
        }

        .volume-control i {
            color: #ffffff;
            font-size: 1.1rem;
        }

        .volume-slider {
            flex: 1;
            height: 5px;
            border-radius: 5px;
            outline: none;
            -webkit-appearance: none;
            background: rgba(255, 182, 193, 0.3);
        }

        .volume-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: #0A1527;
            cursor: pointer;
        }

        .volume-slider::-moz-range-thumb {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: #0A1527;
            cursor: pointer;
            border: none;
        }

       /* ============ RSVP SECTION ============ */
        .rsvp-section {
            background: #eeeeee;
            color: #222222;
            text-align: center;
            padding: 3rem 1rem;
        }

        .rsvp-form {
            max-width: 100%;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.08);
            padding: 1.5rem;
            border-radius: 15px;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .form-group {
            margin-bottom: 1.2rem;
            text-align: left;
        }

        .form-group label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #222222;
            margin-bottom: 0.5rem;
            font-weight: 600;
            font-size: clamp(0.8rem, 2.5vw, 0.9rem);
        }

        .form-control {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #cccccc;         /* border abu-abu, terlihat di bg putih */
            border-radius: 6px;
            background: #ffffff;               /* bg putih solid */
            color: #222222;                    /* teks input gelap */
            font-family: inherit;
            transition: all 0.3s ease;
            font-size: clamp(0.8rem, 2.5vw, 0.9rem);
            min-height: 44px;
        }

        .form-control::placeholder {
            color: #aaaaaa;                    /* placeholder abu-abu, terbaca di bg putih */
        }

        /* Khusus select — warna option */
        .form-control option {
            color: #222222;
            background: #ffffff;
        }

        .form-control:focus {
            outline: none;
            border-color: #8b7355;             /* border coklat saat fokus */
            color: #222222;
            box-shadow: 0 0 0 0.25rem rgba(139, 115, 85, 0.2);
            transform: translateY(-2px);
        }

        .btn-submit {
            width: 100%;
            padding: 0.8rem;
            background: #ffffff;
            color: #1a1a1a;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            font-size: clamp(0.8rem, 2.5vw, 0.9rem);
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            min-height: 44px;
        }

        .btn-submit::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-submit:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-submit:hover {
            background: #111111;
            color: #ffffff;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(139, 115, 85, 0.3);
        }

        .gift-section {
            background: #ffffff;
            color: #1d1d1d;
            text-align: center;
            position: relative;
            overflow: hidden;
            padding: 3rem 1rem;
        }

        .gift-section::before {
            content: '';
            position: absolute;
            top: -10%;
            left: -10%;
            width: 120%;
            height: 120%;
            background:
                radial-gradient(circle at 20% 50%, rgba(255, 182, 193, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 192, 203, 0.08) 0%, transparent 50%);
            animation: kenBurns3 25s ease-in-out infinite;
            z-index: 0;
        }

        .gift-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                radial-gradient(circle, rgba(255, 182, 193, 0.1) 15%, transparent 15%),
                radial-gradient(circle, rgba(255, 192, 203, 0.05) 25%, transparent 25%);
            background-size: 180px 180px, 280px 280px;
            background-position: 0 0, 90px 90px;
            animation: parallaxFloat 35s ease-in-out infinite;
            z-index: 1;
        }

        .gift-section .container {
            position: relative;
            z-index: 2;
            max-width: 100%;
        }

        .gift-subtitle {
            font-size: clamp(0.8rem, 2.5vw, 0.9rem);
            /* Ukuran font responsif */
            line-height: 1.6;
            margin-bottom: 2rem;
            opacity: 0.95;
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
            font-weight: 300;
        }

        .gift-cards {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            max-width: 100%;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .gift-card {
            background: transparent;
            border-radius: 15px;
            padding: 2rem 1.5rem;
            box-shadow: 0 10px 40px rgba(255, 182, 193, 0.15);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

        .gift-card:nth-child(1) {
            animation-delay: 0.2s;
        }

        .gift-card:nth-child(2) {
            animation-delay: 0.4s;
        }

        .gift-card:nth-child(3) {
            animation-delay: 0.6s;
        }

        .gift-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #ffffff, #0A1527);
        }

        .gift-card:hover {
            transform: translateY(-10px);
        }

        .gift-icon {
            color: #762B4C;
            margin-bottom: 1rem;
            display: inline-block;
        }

        .gift-bank-name {
            font-family: 'Montserrat Black', cursive;
            /* Ganti serif menjadi cursive untuk font yang lebih sesuai */
            font-size: clamp(2.2rem, 3.5vw, 2.5rem);
            font-weight: 300;
            letter-spacing: 1px;
            margin-bottom: 1.4rem;
            color: #222222;
        }

        .gift-account-name {
            font-size: clamp(0.8rem, 2.5vw, 0.9rem);
            /* Ukuran font responsif */
            color: #1d1d1d;
            margin-bottom: 1rem;
            font-weight: 400;
        }

        .gift-account-number {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            background: #ffffff;
            padding: 0.8rem 1rem;
            border-radius: 12px;
            border: 0px solid #762B4C;
            margin-top: 0.8rem;
        }

        .gift-account-number span {
            font-size: clamp(0.9rem, 3vw, 1rem);
            /* Ukuran font responsif */
            font-weight: 600;
            color: #2c2c2c;
            letter-spacing: 1px;
        }

        .copy-btn {
            background: #0A1527;
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: clamp(0.7rem, 2.2vw, 0.8rem);
            /* Ukuran font responsif */
            font-weight: 500;
            transition: all 0.3s ease;
            white-space: nowrap;
            min-height: 44px;
            /* Minimum touch target size for iOS */
            min-width: 44px;
        }

        .copy-btn:hover {
            background: #762B4C;
            transform: scale(1.05);
        }

        .copy-btn:active {
            transform: scale(0.95);
        }

        .copy-btn.copied {
            background: #ffffff;
            color: #762B4C;
        }

        .copy-btn.copied .copy-text::after {
            content: ' ✓';
        }

        .copy-btn.full-width {
            width: 100%;
            justify-content: center;
            margin-top: 0.8rem;
        }

        /* Address Card */
        .address-card .gift-address {
            font-size: clamp(0.8rem, 2.5vw, 0.9rem);
            /* Ukuran font responsif */
            color: #555;
            line-height: 1.6;
            margin-top: 0.8rem;
        }


        /* Sosial Media Section Styles */
        .sosmed-section {
            padding: 3rem 1rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            position: relative;
            overflow: hidden;
        }

        .sosmed-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="social-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23social-pattern)"/></svg>');
            pointer-events: none;
        }

        .sosmed-section::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(180deg);
            }
        }

        .sosmed-section .container {
            max-width: 100%;
            margin: 0 auto;
            padding: 0 15px;
            position: relative;
            z-index: 1;
        }

        /* Section Title Styles untuk Sosmed */
        .section-title-sosmed {
            font-size: clamp(1.2rem, 4vw, 1.5rem);
            /* Ukuran font responsif */
            font-weight: 800;
            text-align: center;
            margin-bottom: 1.5rem;
            color: #ffffff;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            position: relative;
            letter-spacing: -0.5px;
        }

        .section-title-sosmed::before {
            content: '📱';
            position: absolute;
            top: -40px;
            left: 50%;
            transform: translateX(-50%);
            font-size: clamp(1.2rem, 3.5vw, 1.5rem);
            /* Ukuran font responsif */
            animation: bounce 2s infinite;
        }

        .section-title-sosmed::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ffeaa7);
            border-radius: 2px;
            animation: rainbow 3s linear infinite;
        }

        @keyframes bounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateX(-50%) translateY(0);
            }

            40% {
                transform: translateX(-50%) translateY(-10px);
            }

            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }

        @keyframes rainbow {
            0% {
                background-position: 0% 50%;
            }

            100% {
                background-position: 100% 50%;
            }
        }

        /* Sosmed Text Container */
        .sosmed-text {
            text-align: center;
            color: #ffffff;
            font-size: clamp(0.9rem, 3vw, 1rem);
            /* Ukuran font responsif */
            line-height: 1.6;
            max-width: 100%;
            margin: 0 auto;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .sosmed-text::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ffeaa7);
            border-radius: 17px;
            z-index: -1;
            opacity: 0.8;
            animation: rotate 4s linear infinite;
        }

        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        /* Social Media Icons Grid */
        .sosmed-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            margin-top: 2rem;
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
        }

        .sosmed-item {
            background: rgba(255, 255, 255, 0.15);
            border-radius: 15px;
            padding: 1.5rem 0.5rem;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
        }

        .sosmed-item:hover {
            transform: translateY(-10px) scale(1.05);
            background: rgba(255, 255, 255, 0.25);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

        .sosmed-item i {
            font-size: clamp(1.5rem, 4vw, 1.8rem);
            /* Ukuran font responsif */
            color: #ffffff;
            margin-bottom: 0.5rem;
            display: block;
            transition: all 0.3s ease;
        }

        .sosmed-item:hover i {
            transform: scale(1.2);
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
        }

        .sosmed-item span {
            color: #ffffff;
            font-weight: 100;
            font-size: clamp(0.6rem, 2vw, 0.7rem);
            /* Ukuran font responsif */
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        /* Call to Action Button */
        .sosmed-cta {
            margin-top: 2rem;
            text-align: center;
        }

        .sosmed-btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
            color: #ffffff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: clamp(0.8rem, 2.5vw, 1rem);
            /* Ukuran font responsif */
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
            min-height: 44px;
            /* Minimum touch target size for iOS */
            min-width: 44px;
        }

        .sosmed-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .sosmed-btn:hover::before {
            left: 100%;
        }

        .sosmed-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
            background: linear-gradient(45deg, #ff5252, #26a69a);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .sosmed-section {
                padding: 2.5rem 0.8rem;
            }

            .section-title-sosmed {
                font-size: clamp(1.1rem, 3.5vw, 1.3rem);
                /* Ukuran font responsif */
            }

            .section-title-sosmed::before {
                top: -35px;
                font-size: clamp(1.1rem, 3vw, 1.3rem);
                /* Ukuran font responsif */
            }

            .sosmed-text {
                padding: 1.2rem;
                font-size: clamp(0.8rem, 2.5vw, 0.9rem);
                /* Ukuran font responsif */
            }

            .sosmed-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 0.8rem;
            }

            .sosmed-item {
                padding: 1.2rem 0.3rem;
            }

            .sosmed-item i {
                font-size: clamp(1.3rem, 3.5vw, 1.5rem);
                /* Ukuran font responsif */
            }
        }

        @media (max-width: 480px) {
            .section-title-sosmed {
                font-size: clamp(1rem, 3vw, 1.2rem);
            }

            .sosmed-text {
                padding: 1rem;
                font-size: clamp(0.8rem, 2.5vw, 0.9rem);
            }

            .sosmed-btn {
                padding: 10px 25px;
                font-size: clamp(0.8rem, 2.5vw, 0.9rem);
            }

            .sosmed-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 0.5rem;
            }

            .sosmed-item {
                padding: 1rem 0.2rem;
            }

            .sosmed-item i {
                font-size: clamp(1.2rem, 3vw, 1.3rem);
            }

            .sosmed-item span {
                font-size: clamp(0.5rem, 1.5vw, 0.6rem);
            }
        }

        /* Animation untuk loading */
        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.8);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .sosmed-text {
            animation: fadeInScale 0.8s ease forwards;
        }

        .sosmed-item {
            animation: fadeInScale 0.6s ease forwards;
        }

        /* Focus states for accessibility */
        .sosmed-item:focus-within,
        .sosmed-btn:focus {
            outline: 3px solid #ffffff;
            outline-offset: 2px;
        }

        /* ============================================
           WISHES SECTION
        ============================================ */
        .wishes-section {
            padding: 3rem 1rem;
            background: #ffffff;
        }

        .wishes-stats {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .stat-box {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            background: white;
            padding: 1rem 1.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(255, 182, 193, 0.1);
        }

        .stat-box i {
            font-size: clamp(1.5rem, 4vw, 2rem);
            /* Ukuran font responsif */
            color: #762B4C;
        }

        .stat-info h3 {
            margin: 0;
            font-size: clamp(1.2rem, 4vw, 1.5rem);
            /* Ukuran font responsif */
            color: #333;
        }

        .stat-info p {
            margin: 0;
            color: #666;
            font-size: clamp(0.8rem, 2.5vw, 0.9rem);
            /* Ukuran font responsif */
        }

        .wishes-container {
            max-width: 100%;
            margin: 0 auto 1.5rem;
        }

        .wish-card {
            background: white;
            padding: 1.2rem;
            border-radius: 12px;
            margin-bottom: 0.8rem;
            box-shadow: 0 5px 15px rgba(255, 182, 193, 0.08);
            animation: fadeInUp 0.5s ease;
        }

        .wish-header {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-bottom: 0.8rem;
        }

        .wish-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, #762B4C, #ffc0cb);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }

        .wish-info {
            flex: 1;
        }

        .wish-info h4 {
            margin: 0 0 0.2rem 0;
            color: #333;
            font-size: clamp(0.9rem, 2.5vw, 1rem);
            /* Ukuran font responsif */
        }

        .wish-time {
            font-size: clamp(0.7rem, 2vw, 0.8rem);
            /* Ukuran font responsif */
            color: #999;
        }

        .wish-status {
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: clamp(0.7rem, 2vw, 0.8rem);
            /* Ukuran font responsif */
            font-weight: 600;
        }

        .wish-status.attending {
            background: #d4edda;
            color: #155724;
        }

        .wish-message {
            color: #555;
            line-height: 1.6;
            margin: 0;
            font-size: clamp(0.8rem, 2.5vw, 0.9rem);
            /* Ukuran font responsif */
        }

        .load-more-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            margin: 0 auto;
            padding: 0.8rem 2rem;
            background: #222222;
            border: 2px solid #762B4C;
            color: #1f1f1f;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: clamp(0.8rem, 2.5vw, 0.9rem);
            /* Ukuran font responsif */
            min-height: 44px;
            /* Minimum touch target size for iOS */
            min-width: 44px;
        }

        .load-more-btn:hover {
            background: #762B4C;
            color: white;
            border-color: #762B4C;
        }

        /* ============================================
           CLOSING SECTION
        ============================================ */
        .closing-section {
            padding: 4rem 1rem;
            background: linear-gradient(135deg, #222222 0%, #222222 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .closing-section::after {
            content: '';
            position: absolute;
            top: -0%;
            left: -0%;
            width: 120%;
            height: 60vh;
            background:
                linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('/img/gallery/asset-14.jpg') center center / cover no-repeat;
            animation: kenBurns2 32s ease-in-out infinite;
            z-index: 0;
        }

        .falling-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .fall-item {
            position: absolute;
            top: -50px;
            animation: falling linear infinite;
        }

        .fall-item.flower::before {
            content: '🌸';
            font-size: 1.5rem;
        }

        .fall-item.leaf::before {
            content: '🍃';
            font-size: 1.5rem;
        }

        .fall-item.heart::before {
            content: '💕';
            font-size: 1.2rem;
        }

        .fall-item:nth-child(1) {
            left: 10%;
            animation-duration: 15s;
            animation-delay: 0s;
        }

        .fall-item:nth-child(2) {
            left: 25%;
            animation-duration: 18s;
            animation-delay: 2s;
        }

        .fall-item:nth-child(3) {
            left: 40%;
            animation-duration: 20s;
            animation-delay: 4s;
        }

        .fall-item:nth-child(4) {
            left: 55%;
            animation-duration: 17s;
            animation-delay: 1s;
        }

        .fall-item:nth-child(5) {
            left: 70%;
            animation-duration: 19s;
            animation-delay: 3s;
        }

        .fall-item:nth-child(6) {
            left: 15%;
            animation-duration: 22s;
            animation-delay: 5s;
        }

        .fall-item:nth-child(7) {
            left: 45%;
            animation-duration: 16s;
            animation-delay: 2.5s;
        }

        .fall-item:nth-child(8) {
            left: 80%;
            animation-duration: 21s;
            animation-delay: 4.5s;
        }

        .fall-item:nth-child(9) {
            left: 35%;
            animation-duration: 14s;
            animation-delay: 1.5s;
        }

        .fall-item:nth-child(10) {
            left: 90%;
            animation-duration: 23s;
            animation-delay: 3.5s;
        }

        .closing-content {
            position: relative;
            z-index: 2;
            max-width: 100%;
            margin: 0 auto;
        }

        .closing-icon {
            font-size: clamp(2.5rem, 6vw, 3rem);
            /* Ukuran font responsif */
            margin-bottom: 1rem;
            animation: heartBeat 2s ease-in-out infinite;
        }

        .closing-title {
            font-family: 'Montserrat Black', cursive;
            /* Ganti serif menjadi cursive untuk font yang lebih sesuai */
            font-size: clamp(2.4rem, 3.5vw, 2.8rem);
            font-weight: 300;
            letter-spacing: 1px;
            margin-bottom: 1.4rem;
            color: #ffffff;
        }

        .closing-message {
            font-size: clamp(0.9rem, 3vw, 1rem);
            /* Ukuran font responsif */
            line-height: 1.6;
            margin-bottom: 1.5rem;
            opacity: 0.95;
        }

        .closing-divider {
            margin: 1.5rem 0;
            font-size: clamp(1rem, 3vw, 1.2rem);
            /* Ukuran font responsif */
        }

        .closing-names h3 {
            font-size: clamp(1.2rem, 4vw, 1.5rem);
            /* Ukuran font responsif */
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .closing-date {
            font-size: clamp(0.9rem, 3vw, 1rem);
            /* Ukuran font responsif */
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        .closing-socials {
            display: flex;
            justify-content: center;
            gap: 0.8rem;
            margin-bottom: 1.5rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            min-height: 44px;
            /* Minimum touch target size for iOS */
            min-width: 44px;
        }

        .social-link:hover {
            background: white;
            color: #762B4C;
            transform: translateY(-5px);
        }

        .closing-credit {
            font-size: clamp(0.7rem, 2vw, 0.8rem);
            /* Ukuran font responsif */
            opacity: 0.7;
            margin: 0;
        }

        /* --- Gallery Section & Swiper Styles --- */
        .gallery-section {
            position: relative;
            overflow: hidden;
            padding: 3rem 1rem;
        }

        .gallery-section::before {
            content: '';
            position: absolute;
            top: -10%;
            left: -10%;
            width: 120%;
            height: 120vh;
            background:
                linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('/img/gallery/asset-17.png') center center / cover no-repeat;
            animation: kenBurns3 35s ease-in-out infinite;
            z-index: 0;
        }

        .gallerySwiper {
            width: 100%;
            height: clamp(600vh, 80vw, 80vh);
            /* Tinggi responsif */
            max-width: 1200px;
            margin: 0 auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .swiper-slide {
            position: relative;
            /* Penting untuk posisi icon */
            text-align: center;
            font-size: 18px;
            background: #000;
            cursor: pointer;
            /* Ubah kursor menjadi tangan */
            overflow: hidden;
        }

        .swiper-slide img {
            display: block;
            width: 100%;
            height: 120vh;
            object-fit: cover;
            /* Gambar menutupi area slide */
            transition: transform 0.4s ease, filter 0.4s ease;
        }

        /* Efek zoom dan sedikit gelap saat hover */
        .swiper-slide:hover img {
            transform: scale(1.1);
            filter: brightness(0.85);
        }

        /* --- Preview Icon Styles --- */
        .preview-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.8);
            /* Awalnya sedikit lebih kecil */
            display: flex;
            flex-direction: column;
            /* Susun secara vertikal */
            align-items: center;
            justify-content: center;
            opacity: 0;
            /* Sembunyikan icon secara default */
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            /* Animasi yang lebih halus */
            z-index: 10;
            pointer-events: none;
            /* Agar tidak mengganggu klik pada slide */
        }

        /* Tampilkan icon saat hover dengan efek zoom */
        .swiper-slide:hover .preview-icon {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
            /* Kembali ke ukuran normal */
        }

        .preview-icon svg {
            width: 48px;
            height: 48px;
            fill: white;
            filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.7));
            margin-bottom: 5px;
            /* Jarak antara ikon dan teks */
        }

        .preview-icon span {
            color: white;
            font-size: 14px;
            font-weight: 600;
            text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.7);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Warna navigasi Swiper agar terlihat di background gelap */
        .gallerySwiper .swiper-button-next,
        .gallerySwiper .swiper-button-prev {
            color: #fff;
        }

        .gallerySwiper .swiper-pagination-bullet-active {
            background: #fff;
        }

        /* --- Lightbox Styles --- */
        .lightbox {
            display: none;
            /* Sembunyikan secara default */
            position: fixed;
            /* Tetap di layar meski di-scroll */
            z-index: 9999;
            /* Pastikan berada di atas konten lainnya */
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            /* Aktifkan scroll jika diperlukan */
            background-color: rgba(0, 0, 0, 0.95);
            /* Background hitam transparan */
            cursor: pointer;
        }

        .lightbox-content {
            margin: auto;
            display: block;
            width: 80%;
            max-width: 900px;
            max-height: 90vh;
            /* Maksimal tinggi 90% dari layar */
            object-fit: contain;
            /* Pastikan gambar utuh tanpa terpotong */
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .close-lightbox {
            position: absolute;
            top: 25px;
            right: 45px;
            color: #f1f1f1;
            font-size: 50px;
            font-weight: bold;
            transition: 0.3s;
            cursor: pointer;
        }

        .close-lightbox:hover {
            color: #bbb;
        }

        /* --- Responsive Design --- */
        @media only screen and (max-width: 768px) {
            .gallerySwiper {
                height: 50vh;
                /* Tinggi slider lebih kecil di tablet */
            }

            .lightbox-content {
                width: 95%;
            }

            .close-lightbox {
                font-size: 40px;
                right: 20px;
                top: 20px;
            }

            .preview-icon svg {
                width: 40px;
                height: 40px;
            }
        }

        @media only screen and (max-width: 480px) {
            .gallerySwiper {
                height: 40vh;
                /* Tinggi slider lebih kecil di mobile */
            }
        }

        /* ============================================
           COMMON SECTION STYLES
        ============================================ */
        section {
            padding: 3rem 1rem;
            min-height: auto;
            display: flex;
            align-items: center;
        }

        /* Base Section Title */
        .section-title {
            font-size: clamp(1.1rem, 3.5vw, 1.3rem);
            /* Ukuran font responsif */
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
            color: #2c3e50;
            position: relative;
            letter-spacing: -1px;
        }

        .section-title.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 60px;
            height: 1px;
            background: linear-gradient(90deg, transparent, #762B4C, transparent);
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
        }

        .section-title.animated::after {
            transform: translateX(-50%) scaleX(1);
        }

        /* Quote Section Title */
        .section-title-quote {
            font-family: 'Montserrat Black', cursive;
            /* Ganti serif menjadi cursive untuk font yang lebih sesuai */
            font-size: clamp(2.2rem, 3.5vw, 2.5rem);
            font-weight: 300;
            letter-spacing: 1px;
            margin-bottom: 1.4rem;
            color: #1b1b1b;
        }

        .section-title-quote::after {
            background: linear-gradient(90deg, transparent, #1a1a1a, transparent);
            height: 2px;
        }

        /* Couple Section Title */
        .section-title-couple {
            font-family: 'Montserrat Black', cursive;
            /* Ganti serif menjadi cursive untuk font yang lebih sesuai */
            font-size: clamp(2.2rem, 3.5vw, 2.5rem);
            font-weight: 300;
            letter-spacing: 1px;
            margin-bottom: 1.4rem;
            color: #ffffff;

        }

        .section-title-couple::after {
            background: linear-gradient(90deg, transparent, #fff, transparent);
            width: 100px;
            height: 2px;
        }

        .section-title-history {
            font-family: 'Montserrat Black', cursive;
            /* Ganti serif menjadi cursive untuk font yang lebih sesuai */
            font-size: clamp(2.4rem, 3.5vw, 2.7rem);
            font-weight: 300;
            letter-spacing: 1px;
            margin-bottom: 1.4rem;
            color: #ffffff;
        }

        .section-title-history::after {
            background: linear-gradient(90deg, transparent, #ffffff, transparent);
            width: 100px;
        }

        /* Countdown Section Title */
        .section-title-countdown {
            font-family: 'Montserrat Black', cursive;
            /* Ganti serif menjadi cursive untuk font yang lebih sesuai */
            font-size: clamp(2.2rem, 3.5vw, 2.5rem);
            font-weight: 300;
            letter-spacing: 1px;
            margin-bottom: 1.4rem;
            color: #ffffff;
        }

        .section-title-countdown::after {
            background: linear-gradient(90deg, transparent, #1a1a1a, transparent);
            width: 80px;
        }

        /* Events Section Title */
        .section-title-events {
            font-family: 'Montserrat Black', cursive;
            /* Ganti serif menjadi cursive untuk font yang lebih sesuai */
            font-size: clamp(2.2rem, 3.5vw, 2.5rem);
            font-weight: 300;
            letter-spacing: 1px;
            margin-bottom: 1.4rem;
            color: #ffffff;
        }

        .section-title-events::after {
            background: linear-gradient(90deg, transparent, #ffffff, transparent);
            width: 80px;
        }

        /* Maps Section Title */
        .section-title-maps {
            font-family: 'Montserrat Black', cursive;
            /* Ganti serif menjadi cursive untuk font yang lebih sesuai */
            font-size: clamp(2.2rem, 3.5vw, 2.5rem);
            font-weight: 300;
            letter-spacing: 1px;
            margin-bottom: 1.4rem;
            color: #1b1b1b;
        }

        .section-title-maps::after {
            background: linear-gradient(90deg, transparent, #1b1b1b, transparent);
            height: 2px;
        }

        /* RSVP Section Title */
        .section-title-rsvp {
            font-family: 'Montserrat Black', cursive;
            /* Ganti serif menjadi cursive untuk font yang lebih sesuai */
            font-size: clamp(2.2rem, 3.5vw, 2.5rem);
            font-weight: 300;
            letter-spacing: 1px;
            margin-bottom: 1.4rem;
            color: #222222;
        }

        .section-title-rsvp::after {
            background: linear-gradient(90deg, transparent, #222222, transparent);
            width: 80px;
            height: 2px;
        }

        /* Gift Section Title */
        .section-title-gift {
            font-family: 'Montserrat Black', cursive;
            /* Ganti serif menjadi cursive untuk font yang lebih sesuai */
            font-size: clamp(2.2rem, 3.5vw, 2.5rem);
            font-weight: 300;
            letter-spacing: 1px;
            margin-bottom: 1.4rem;
            color: #222222;
        }

        .section-title-gift::after {
            background: linear-gradient(90deg, transparent, #0A1527, transparent);
            height: 2px;
            width: 80px;
        }

        /* Wishes Section Title */
        .section-title-wishes {
            font-family: 'Montserrat Black', cursive;
            /* Ganti serif menjadi cursive untuk font yang lebih sesuai */
            font-size: clamp(2.2rem, 3.5vw, 2.5rem);
            font-weight: 300;
            letter-spacing: 1px;
            margin-bottom: 1.4rem;
            color: #222222;
        }

        .section-title-wishes::after {
            background: linear-gradient(90deg, transparent, #0A1527, transparent);
            width: 100px;
        }

        /* Thank You Section Title */
        .section-title-thankyou {
            font-size: clamp(1.1rem, 3.5vw, 1.3rem);
            /* Ukuran font responsif */
            font-weight: 500;
            color: #ffffff;
            font-style: italic;
        }

        .section-title-thankyou::after {
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
        }

    /* ========== BOTTOM NAVBAR ========== */
    .bottom-nav {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 400px;
        background: rgba(255, 255, 255, 0.8); /* Transparansi Putih */
        backdrop-filter: blur(10px); /* Efek Blur Premium */
        display: flex;
        justify-content: space-around;
        padding: 12px 10px;
        border-radius: 50px; /* Bentuk Pill */
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        z-index: 999;
        border: 1px solid rgba(255, 255, 255, 0.3);
        opacity: 0;
        visibility: hidden;
        transition: 0.5s ease;
    }

    /* Navbar muncul hanya setelah undangan dibuka */
    body:not(.no-scroll) .bottom-nav {
        opacity: 1;
        visibility: visible;
    }

    .nav-item {
        text-decoration: none;
        color: var(--dark);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        flex: 1;
        transition: 0.3s;
    }

    .nav-item i {
        font-size: 1.1rem;
        opacity: 0.5;
    }

    .nav-item span {
        font-size: 0.55rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
        opacity: 0.5;
    }

    /* Hover & Active State */
    .nav-item:hover i, .nav-item:hover span {
        opacity: 1;
        color: #000;
    }

    /* Sembunyikan music control asli atau pindahkan posisinya */
    .music-control {
        bottom: 90px !important; /* Naikkkan sedikit agar tidak tabrakan dengan navbar */
    }
    
    /* Music Toggle Button */
        .music-toggle {
            position: fixed;
            bottom: 90px;
            right: 15px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #0A1527;
            color: white;
            border: none;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(255, 182, 193, 0.3);
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: pulse 2s ease-in-out infinite;
            min-height: 44px;
            /* Minimum touch target size for iOS */
            min-width: 44px;
        }

        .music-toggle.active {
            display: flex;
            animation: slideInRight 0.6s cubic-bezier(0.4, 0, 0.2, 1), pulse 2s ease-in-out 1s infinite;
        }

        .music-toggle:hover {
            transform: scale(1.1) rotate(15deg);
            box-shadow: 0 8px 25px rgba(255, 182, 193, 0.4);
        }

        .music-toggle:active {
            transform: scale(0.95);
        }

        /* ============================================
           FOOTER
        ============================================ */
        footer {
            background: #2d2d2d;
            color: white;
            padding: 1rem 5%;
            text-align: center;
            width: 100%;
            position: relative;
        }

        footer p {
            opacity: 0.8;
            font-size: clamp(0.7rem, 2vw, 0.8rem);
            /* Ukuran font responsif */
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s;
            font-size: clamp(0.7rem, 2vw, 0.8rem);
            /* Ukuran font responsif */
        }

        .footer-links a:hover {
            opacity: 1;
        }

        /* ============================================
           RESPONSIVE MEDIA QUERIES
        ============================================ */
        @media (max-width: 768px) {
            .maps-grid {
                grid-template-columns: 1fr;
            }

            .rsvp-buttons {
                flex-direction: column;
            }

            .closing-title {
                font-size: clamp(1.9rem, 4vw, 2.3rem);
            }

            .closing-names h3 {
                font-size: clamp(1rem, 3vw, 1.5rem);
            }

            .gift-section {
                padding: 2.5rem 0.8rem;
            }

            .gift-subtitle {
                font-size: clamp(0.8rem, 2.5vw, 0.9rem);
                margin-bottom: 1.5rem;
                padding: 0 0.8rem;
            }

            .gift-cards {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }

            .gift-card {
                padding: 1.5rem 1rem;
            }

            .gift-account-number {
                flex-direction: column;
                gap: 0.6rem;
            }

            .copy-btn {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .cover-content h2 {
                font-size: clamp(1.2rem, 4vw, 1.5rem);
            }

            .cover-names {
                font-size: clamp(2.9rem, 4vw, 3.4rem);
            }

            .hero-content h2 {
                font-size: clamp(1.5rem, 5vw, 1.8rem);
            }

            .section-title {
                font-size: clamp(1rem, 3vw, 1.2rem);
            }

            .countdown-number {
                font-size: clamp(1rem, 3vw, 1.3rem);
            }
        }

        @media (max-width: 360px) {
            .cover-content h2 {
                font-size: clamp(1.1rem, 3.5vw, 1.3rem);
            }

            .hero-content h2 {
                font-size: clamp(1.3rem, 4.5vw, 1.5rem);
            }

            .section-title {
                font-size: clamp(1.9rem, 2.5vw, 1.1rem);
            }

            .countdown-number {
                font-size: clamp(0.9rem, 2.5vw, 1.2rem);
            }
        }

        /* Performance optimizations for low-end devices */
        @media (prefers-reduced-motion: reduce) {

            /* Disable animations for users who prefer reduced motion */
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }

        /* Fallback for older browsers */
        @supports not (display: grid) {
            .countdown-grid {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
            }

            .countdown-item {
                flex: 1 0 45%;
                margin: 0.5rem;
            }

            .gallery-grid {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
            }

            .gallery-item {
                flex: 1 0 45%;
                margin: 0.25rem;
            }
        }

        /* Touch-friendly adjustments */
        @media (hover: none) and (pointer: coarse) {

            /* For touch devices */
            .btn-open,
            .btn-submit,
            .map-btn,
            .copy-btn,
            .load-more-btn,
            .sosmed-btn,
            .nav-btn,
            .music-toggle,
            .social-link {
                min-height: 48px;
                min-width: 48px;
            }

            /* Remove hover effects on touch devices */
            .template-card:hover,
            .event-card:hover,
            .countdown-item:hover,
            .map-card:hover,
            .gift-card:hover,
            .inviting-card:hover,
            .sosmed-item:hover {
                transform: none;
            }
        }

        /* ==========================================
           HISTORY LOVE SECTION
           ========================================== */
            .history-section {
                padding: 80px 20px;

                position: relative;
                overflow: hidden;
            }

            .history-section::before {
                content: '';
                position: absolute;
                top: -10%;
                left: -10%;
                width: 120%;
                height: 120%;
                background:
                    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                    url('/img/basic-template-img/Hero.JPEG') center center / cover no-repeat;
                animation: kenBurns2 30s ease-in-out infinite;
                z-index: 0;
            }

            .section-subtitle-history {
                text-align: center;
                color: #fff;
                font-size: clamp(1rem, 3vw, 1.1rem);
                /* Ukuran font responsif */
                margin-bottom: 3rem;
                font-style: italic;
            }

            /* Timeline Container */
            .timeline {
                position: relative;
                max-width: 900px;
                margin: 0 auto;
                padding: 40px 0;
            }

            /* Timeline Line */
            .timeline::before {
                content: '';
                position: absolute;
                left: 50%;
                top: 0;
                bottom: 0;
                width: 3px;
                background: linear-gradient(180deg, #ffffff, #ffffff, #ffffff);
                transform: translateX(-50%);
                box-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
            }

            /* Timeline Item */
            .timeline-item {
                position: relative;
                margin-bottom: 60px;
                opacity: 0;
                transform: translateY(30px);
                animation: fadeInUp 0.8s ease forwards;
            }

            .timeline-item:nth-child(odd) {
                padding-right: calc(50% + 40px);
                text-align: right;
            }

            .timeline-item:nth-child(even) {
                padding-left: calc(50% + 40px);
                text-align: left;
            }

            /* Stagger animation */
            .timeline-item:nth-child(1) {
                animation-delay: 0.2s;
            }

            .timeline-item:nth-child(2) {
                animation-delay: 0.4s;
            }

            .timeline-item:nth-child(3) {
                animation-delay: 0.6s;
            }

            .timeline-item:nth-child(4) {
                animation-delay: 0.8s;
            }

            .timeline-item:nth-child(5) {
                animation-delay: 1s;
            }

            @keyframes fadeInUp {
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            /* Timeline Dot */
            .timeline-dot {
                position: absolute;
                top: 0;
                left: 50%;
                width: 24px;
                height: 24px;
                background: linear-gradient(135deg, #ff69b4, #ff1493);
                border: 4px solid #fff;
                border-radius: 50%;
                transform: translateX(-50%);
                z-index: 2;
                box-shadow: 0 0 0 4px rgba(255, 105, 180, 0.2),
                    0 4px 12px rgba(255, 105, 180, 0.4);
                animation: pulse 2s ease-in-out infinite;
            }

            @keyframes pulse {

                0%,
                100% {
                    box-shadow: 0 0 0 4px rgba(255, 105, 180, 0.2),
                        0 4px 12px rgba(255, 105, 180, 0.4);
                }

                50% {
                    box-shadow: 0 0 0 8px rgba(255, 105, 180, 0.1),
                        0 4px 16px rgba(255, 105, 180, 0.6);
                }
            }

            /* Timeline Content */
            .timeline-content {
                background: #fff;
                padding: 25px 30px;
                border-radius: 15px;
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
                position: relative;
                transition: all 0.3s ease;
            }

            .timeline-content:hover {
                transform: translateY(-5px);
                box-shadow: 0 12px 40px rgba(255, 105, 180, 0.2);
            }

            /* Arrow for odd items (left side) */
            .timeline-item:nth-child(odd) .timeline-content::after {
                content: '';
                position: absolute;
                right: -15px;
                top: 10px;
                width: 0;
                height: 0;
                border-left: 15px solid #fff;
                border-top: 10px solid transparent;
                border-bottom: 10px solid transparent;
            }

            /* Arrow for even items (right side) */
            .timeline-item:nth-child(even) .timeline-content::after {
                content: '';
                position: absolute;
                left: -15px;
                top: 10px;
                width: 0;
                height: 0;
                border-right: 15px solid #fff;
                border-top: 10px solid transparent;
                border-bottom: 10px solid transparent;
            }

            .timeline-date {
                display: inline-block;
                background: linear-gradient(135deg, #ff69b4, #ff1493);
                color: #fff;
                padding: 6px 18px;
                border-radius: 20px;
                font-size: clamp(0.8rem, 2.5vw, 0.9rem);
                /* Ukuran font responsif */
                font-weight: 600;
                margin-bottom: 12px;
                box-shadow: 0 4px 12px rgba(255, 20, 147, 0.3);
            }

            .timeline-title {
                font-family: 'Montserrat Black', cursive;
                /* Ganti serif menjadi cursive untuk font yang lebih sesuai */
                font-size: clamp(2.4rem, 3.5vw, 2.8rem);
                font-weight: 300;
                letter-spacing: 1px;
                margin-bottom: 1.4rem;
                color: #222222;
            }

            .timeline-text {
                color: #666;
                line-height: 1.7;
                font-size: clamp(0.9rem, 2.5vw, 1rem);
                /* Ukuran font responsif */
            }

            /* Responsive Design */
            @media (max-width: 768px) {
                .timeline::before {
                    left: 20px;
                }

                .timeline-item:nth-child(odd),
                .timeline-item:nth-child(even) {
                    padding-left: 60px;
                    padding-right: 0;
                    text-align: left;
                }

                .timeline-dot {
                    left: 20px;
                    transform: translateX(-50%);
                }

                .timeline-item:nth-child(odd) .timeline-content::after {
                    display: none;
                }

                .timeline-item:nth-child(even) .timeline-content::after {
                    left: -15px;
                }

                .section-title-history {
                    font-size: clamp(1.8rem, 5vw, 2.3rem);
                }

                .timeline-title {
                    font-size: clamp(1.5rem, 3vw, 1.7rem);
                }
            }

            /* CSS untuk wish-card dan lainnya */
            .wishes-loading,
            .wishes-error {
                text-align: center;
                padding: 2rem;
                font-size: clamp(1rem, 3vw, 1.1rem);
                /* Ukuran font responsif */
                color: rgba(255, 255, 255, 0.8);
            }

            .wishes-error {
                color: #ff9e9e;
            }

            .btn-submit:disabled {
                opacity: 0.7;
                cursor: not-allowed;
            }

            .wish-card {
                animation: fadeInUp 0.5s ease-out;
                margin-bottom: 1.5rem;
                padding: 1.5rem;
                border-radius: 10px;
                background-color: rgba(255, 255, 255, 0.1);
                backdrop-filter: blur(5px);
                border: 1px solid rgba(255, 255, 255, 0.2);
            }

            .wish-header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-bottom: 0.5rem;
            }

            .wish-name {
                font-weight: bold;
                font-size: clamp(1rem, 3vw, 1.1rem);
                /* Ukuran font responsif */
            }

            .wish-status {
                padding: 0.25rem 0.5rem;
                border-radius: 20px;
                font-size: clamp(0.7rem, 2vw, 0.8rem);
                /* Ukuran font responsif */
                font-weight: bold;
            }

            .wish-status.hadir {
                background-color: rgba(40, 167, 69, 0.3);
                color: #28a745;
            }

            .wish-status.tidak-hadir {
                background-color: rgba(220, 53, 69, 0.3);
                color: #dc3545;
            }

            .wish-status.masih-ragu {
                background-color: rgba(255, 193, 7, 0.3);
                color: #ffc107;
            }

            .wish-message {
                margin: 0.5rem 0;
                font-style: italic;
                font-size: clamp(0.9rem, 2.5vw, 1rem);
                /* Ukuran font responsif */
            }

            .wish-time {
                font-size: clamp(0.7rem, 2vw, 0.8rem);
                /* Ukuran font responsif */
                color: rgba(255, 255, 255, 0.6);
                text-align: right;
            }

            @keyframes fadeInUp {
                from {
                    opacity: 0;
                    transform: translateY(20px);
                }

                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            .load-more-btn {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                margin: 1rem auto;
                padding: 0.5rem 1rem;
                background-color: rgba(255, 255, 255, 0.1);
                border: 1px solid rgba(255, 255, 255, 0.2);
                border-radius: 30px;
                color: white;
                cursor: pointer;
                transition: all 0.3s ease;
                font-size: clamp(0.8rem, 2.5vw, 0.9rem);
                /* Ukuran font responsif */
            }

            .load-more-btn:hover {
                background-color: rgba(255, 255, 255, 0.2);
            }

            .wishes-empty {
                text-align: center;
                padding: 2rem;
                font-size: clamp(1rem, 3vw, 1.1rem);
                /* Ukuran font responsif */
                color: rgba(255, 255, 255, 0.8);
            }


        .link-putih {
            color: white;
            text-decoration: none;
            position: relative;
            z-index: 999;
            pointer-events: auto;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 5px;
            transition: all 0.3s ease;
        }

        .link-putih:hover {
            color: white;
            text-decoration: none;
            transform: scale(1.1);
        }

        .link-putih:visited {
            color: white;
            text-decoration: none;
        }

        .link-putih:active {
            transform: scale(0.95);
        }

        /* Pastikan parent juga memiliki z-index yang tepat */
        .couple-card p {
            position: relative;
            z-index: 998;
        }

        /* Tambahkan ini di dalam tag <style> di bagian atas atau di file CSS terpisah */

        .pagination-container {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
        }

        .pagination {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .pagination-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border: 1px solid #ddd;
            background-color: #fff;
            color: #333;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.2s ease;
            font-size: 14px;
        }

        .pagination-btn:hover {
            background-color: #f5f5f5;
        }

        .pagination-btn.active {
            background-color: #e91e63;
            color: white;
            border-color: #e91e63;
        }

        .pagination-btn:disabled {
            background-color: #f5f5f5;
            color: #aaa;
            cursor: not-allowed;
        }

        .pagination-ellipsis {
            padding: 0 0.5rem;
            color: #666;
        }


        /* ============================================
           CLOSING SECTION
        ============================================ */
        .closing-section {
            padding: 4rem 1rem;
            background: linear-gradient(135deg, #222222 0%, #222222 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .closing-section::after {
            content: '';
            position: absolute;
            top: -0%;
            left: -0%;
            width: 120%;
            height: 60vh;
            background:
                linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('/img/gallery/asset-14.jpg') center center / cover no-repeat;
            animation: kenBurns2 32s ease-in-out infinite;
            z-index: 0;
        }

        .falling-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .fall-item {
            position: absolute;
            top: -50px;
            animation: falling linear infinite;
        }

        .fall-item.flower::before {
            content: '🌸';
            font-size: 1.5rem;
        }

        .fall-item.leaf::before {
            content: '🍃';
            font-size: 1.5rem;
        }

        .fall-item.heart::before {
            content: '💕';
            font-size: 1.2rem;
        }

        .fall-item:nth-child(1) {
            left: 10%;
            animation-duration: 15s;
            animation-delay: 0s;
        }

        .fall-item:nth-child(2) {
            left: 25%;
            animation-duration: 18s;
            animation-delay: 2s;
        }

        .fall-item:nth-child(3) {
            left: 40%;
            animation-duration: 20s;
            animation-delay: 4s;
        }

        .fall-item:nth-child(4) {
            left: 55%;
            animation-duration: 17s;
            animation-delay: 1s;
        }

        .fall-item:nth-child(5) {
            left: 70%;
            animation-duration: 19s;
            animation-delay: 3s;
        }

        .fall-item:nth-child(6) {
            left: 15%;
            animation-duration: 22s;
            animation-delay: 5s;
        }

        .fall-item:nth-child(7) {
            left: 45%;
            animation-duration: 16s;
            animation-delay: 2.5s;
        }

        .fall-item:nth-child(8) {
            left: 80%;
            animation-duration: 21s;
            animation-delay: 4.5s;
        }

        .fall-item:nth-child(9) {
            left: 35%;
            animation-duration: 14s;
            animation-delay: 1.5s;
        }

        .fall-item:nth-child(10) {
            left: 90%;
            animation-duration: 23s;
            animation-delay: 3.5s;
        }

        .closing-content {
            position: relative;
            z-index: 2;
            max-width: 100%;
            margin: 0 auto;
        }

        .closing-icon {
            font-size: clamp(2.5rem, 6vw, 3rem);
            /* Ukuran font responsif */
            margin-bottom: 1rem;
            animation: heartBeat 2s ease-in-out infinite;
        }

        .closing-title {
            font-family: 'Montserrat Black', cursive;
            /* Ganti serif menjadi cursive untuk font yang lebih sesuai */
            font-size: clamp(2.4rem, 3.5vw, 2.8rem);
            font-weight: 300;
            letter-spacing: 1px;
            margin-bottom: 1.4rem;
            color: #ffffff;
        }

        .closing-message {
            font-size: clamp(0.9rem, 3vw, 1rem);
            /* Ukuran font responsif */
            line-height: 1.6;
            margin-bottom: 1.5rem;
            opacity: 0.95;
        }

        .closing-divider {
            margin: 1.5rem 0;
            font-size: clamp(1rem, 3vw, 1.2rem);
            /* Ukuran font responsif */
        }

        .closing-names h3 {
            font-size: clamp(1.2rem, 4vw, 1.5rem);
            /* Ukuran font responsif */
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .closing-date {
            font-size: clamp(0.9rem, 3vw, 1rem);
            /* Ukuran font responsif */
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        .closing-socials {
            display: flex;
            justify-content: center;
            gap: 0.8rem;
            margin-bottom: 1.5rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            min-height: 44px;
            /* Minimum touch target size for iOS */
            min-width: 44px;
        }

        .social-link:hover {
            background: white;
            color: #762B4C;
            transform: translateY(-5px);
        }

        .closing-credit {
            font-size: clamp(0.7rem, 2vw, 0.8rem);
            /* Ukuran font responsif */
            opacity: 0.7;
            margin: 0;
        }
