        /* ============================================
            RESET & BASE STYLES
        ============================================ */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Marion Regular', serif;
            overflow-x: hidden;
            scroll-behavior: smooth;
            background: #ffffff;
            /* Menghilangkan gradien pink */
        }

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

        /* Ken Burns Effects */
        @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);
            }
        }

        /* Animation for the Background */
        @keyframes kenBurns3 {
            0% { transform: scale(1) translate(0, 0); }
            50% { transform: scale(1.1) translate(-2%, -2%); }
            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;
            }
        }

        /* Animation for the Form Entrance */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            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%;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            color: #0A1527;
            text-align: center;
            transition: opacity 0.8s ease, transform 0.8s ease;
            overflow: hidden;
        }

        #cover::before {
            content: '';
            position: absolute;
            top: -10%;
            left: -1%;
            width: 120%;
            height: 120vh;
            background:
                linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.0)),
                url('/img/basic-template-img/asset-1.jpg') center center / cover no-repeat;
            animation: kenBurns1 25s ease-in-out infinite, zoomInFade 1.5s ease-out;
            z-index: 0;
        }

        #cover::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /*background: linear-gradient(45deg,*/
            /*        rgba(255, 182, 193, 0.3),*/
            /*        rgba(255, 192, 203, 0.3),*/
            /*        rgba(255, 182, 193, 0.3));*/
            background-size: 200% 200%;
            animation: gradientShift 10s ease infinite;
            z-index: 1;
        }

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

        .cover-content {
            position: relative;
            z-index: 2;
            max-width: 600px;
            padding: 3rem 2rem;
            margin-top: 18.0rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            animation: fadeInUp 1s ease;
        }

        .cover-content h1 {
            font-size: 2rem;
            font-weight: 300;
            margin-bottom: 0rem;
            letter-spacing: 3px;
            animation: fadeInDown 1s ease 0.3s both;
        }

        .cover-content h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 2rem;
            animation: scaleIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
            background: linear-gradient(45deg, #fff, #ffc0cb, #fff);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cover-subtitle {
            font-family: 'Marion Regular', serif;
            font-size: 1rem;
            font-weight: 400;
            letter-spacing: 2px;
            margin-bottom: 0.2rem;
            opacity: 0.9;
        }

        .cover-names {
            font-family: 'Marion Regular', serif;
            font-size: 2.1rem;
            font-weight: 300; /* Pastikan konsisten dengan Hero Names (walau Hero Names tertulis 100, sebaiknya gunakan satu nilai) */
            letter-spacing: 1px;
            margin-bottom: 0.4rem;
        }

        .cover-note {
            margin-top: 1.0rem;
            font-size: 0.75rem;
            opacity: 0.8;
        }

        /* --- Perbaikan Tanggal di COVER SECTION --- */
        /* Menambahkan style untuk tanggal/lokasi di halaman cover */
        .cover-date-location {
            font-size: 0.95rem; /* Ukuran lebih besar dari 0.75rem sebelumnya */
            font-weight: 500;
            margin-top: 1.5rem; /* Jarak yang cukup dari tombol */
            opacity: 1; /* Opacity penuh agar lebih jelas */
            color: #fff; /* Pastikan warna putih jika background cover foto */
            text-shadow: 0 0 5px rgba(0, 0, 0, 0.5); /* Tambahkan bayangan untuk kontras pada foto */
            animation: fadeInUp 1s ease 1.0s both; /* Tambahkan animasi */
        }

        .guest-name {
            font-size: 1.1rem;
            margin-bottom: 0.2rem;
            opacity: 0.9;
            animation: fadeInUp 1s ease 0.7s both;
        }

        .guest-text {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            text-align: center;
            display: inline-block;
            transition: color 0.3s ease;
            margin-bottom: 0.1rem;
        }

        .guest-text:hover {
            color: #762B4C;
        }

        /* --- Modifikasi Tombol di COVER SECTION (Lebih Minimalis/Flat) --- */
        .btn-open {
            /*background: linear-gradient(to bottom, rgba(54, 54, 54, 0.1), rgba(51, 51, 51, 0.8));*/
            background-color: #0A1527; /* Tetap warna solid gelap */
            color: #fff;
            border: 1px solid #0A1527; /* Tambahkan border solid */
            border-radius: 6px;
            padding: 0.8rem 2.5rem; /* Padding sedikit lebih besar */
            font-size: 1rem; /* Ukuran font lebih besar sedikit */
            font-weight: 600; /* Lebih tebal sedikit */
            cursor: pointer;
            transition: all 0.4s ease; /* Transisi lebih lambat */
            margin-top: 1.5rem; /* Jarak dari nama tamu */
            position: relative;
            z-index: 100;
            /* Hapus bayangan/efek 3D */
            box-shadow: none;
        }

        .btn-open:hover {
            /* Hover yang lebih sederhana dan kontras */
            background: #fff;
            color: #0A1527; /* Teks menjadi warna gelap utama */
            border-color: #0A1527;
            transform: none; /* Hapus translateY(-2px) jika ingin benar-benar flat */
        }

        /* Hapus animasi pseudo-element di hover (jika ingin lebih minimalis) */
        .btn-open::before {
            /* ... tetap ada atau hapus jika Anda tidak ingin efek ripple pink */
            display: none; /* Saran: Sembunyikan untuk minimalis */
        }
        /* Floating Particles - Mengubah warna menjadi netral */
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(255, 255, 255, 0.6);
            /* Diubah dari pink ke putih */
            border-radius: 50%;
            z-index: 1;
            animation: particleFloat linear infinite;
        }

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

        .particle:nth-child(2) {
            left: 30%;
            animation-duration: 20s;
            animation-delay: 2s;
        }

        .particle:nth-child(3) {
            left: 50%;
            animation-duration: 18s;
            animation-delay: 4s;
        }

        .particle:nth-child(4) {
            left: 70%;
            animation-duration: 22s;
            animation-delay: 1s;
        }

        .particle:nth-child(5) {
            left: 90%;
            animation-duration: 16s;
            animation-delay: 3s;
        }

        .particle:nth-child(6) {
            left: 20%;
            animation-duration: 19s;
            animation-delay: 5s;
        }

        .particle:nth-child(7) {
            left: 60%;
            animation-duration: 21s;
            animation-delay: 2.5s;
        }

        .particle:nth-child(8) {
            left: 80%;
            animation-duration: 17s;
            animation-delay: 4.5s;
        }

        /* ============================================
           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: 20px;
            margin-left: 10px;
            text-align: left;
            margin-top: -15vh;
        }

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

        /* Hero Text - Spacing diperkecil */
        .hero-subtitle {
            font-family: 'Marion Regular', serif;
            font-size: 0.8rem;
            font-weight: 900;
            letter-spacing: 0px;
            margin-bottom: 0.3rem;
            opacity: 0.9;
        }

        .cover-names {
            font-family: 'Marion Regular', serif;
            font-size: 2.1rem;
            font-weight: 300; /* Pastikan konsisten dengan Hero Names (walau Hero Names tertulis 100, sebaiknya gunakan satu nilai) */
            letter-spacing: 1px;
            margin-bottom: 0.4rem;
        }

        .hero-date {
            margin-top: 0.3rem;
            font-size: 0.75rem;
            opacity: 0.8;
        }

        .hero-content h1 {
            font-size: 1.8rem;
            font-weight: 300;
            margin-bottom: 1rem;
            opacity: 0;
        }

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

        .hero-content h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            opacity: 0;
            background: linear-gradient(45deg, #fff, #ffc0cb, #fff);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

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

        .hero-date {
            font-size: 1.3rem;
            letter-spacing: 2px;
            opacity: 0;
        }

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

        /*Hero Text*/
        .hero-subtitle {
            font-family: 'Marion Regular', serif;
            font-size: 0.8rem;
            font-weight: 400;
            letter-spacing: 0px;
            margin-bottom: 0.0rem;
            opacity: 0.9;
        }

        .hero-names {
            font-family: 'Marion Regular', serif;
            font-size: 2.5rem;
            font-weight: 300; /* Ganti 100 menjadi 300 (atau yang Anda suka) agar konsisten dengan Cover Names */
            letter-spacing: -0px;
            margin-bottom: 0.8rem;
            line-height: 0.9;
        }

        .hero-note {
            margin-top: 1.0rem;
            font-size: 0.75rem;
            opacity: 0.8;
        }

        .hero-name {
            font-size: 1.1rem;
            margin-bottom: 0.2rem;
            opacity: 0.9;
            animation: fadeInUp 1s ease 0.7s both;
        }

        .hero-date {
            margin-top: 1.0rem;
            font-size: 0.75rem;
            opacity: 0.8;
        }

        /* Shine Overlay - Mengubah warna menjadi netral */
        .shine-overlay {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg,
                    transparent,
                    rgba(255, 255, 255, 0.3),
                    /* Diubah dari pink ke putih */
                    transparent);
            z-index: 1;
            animation: shine 8s ease-in-out infinite;
        }

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

        /* Responsif untuk mobile */
        @media (max-width: 768px) {
            .hero-content {
                padding-left: 15px;
                margin-left: 5px;
                margin-top: -10vh;
            }

            .hero-names {
                font-size: 2.5rem;
                line-height: 0.85;
            }
        }

        @media (max-width: 480px) {
            .hero-content {
                padding-left: 10px;
                margin-top: -8vh;
            }

            .hero-names {
                font-size: 2.5rem;
            }
        }

        /* ============================================
           QUOTE SECTION
        ============================================ */
        .quote-section {
            background: #0A1527;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .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: 0.8rem;
            font-style: italic;
            color: #ffffff;
            max-width: 130%;
            margin: 0 auto;
            line-height: 1.8;
            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);
        }

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

        .couple-section::before {
            content: '';
            position: absolute;
            top: -0%;
            left: -10%;
            width: 120%;
            height: 120%;
            background:
                linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('/img/basic-template-img/bg-couple.JPG') center center / cover no-repeat;
            animation: kenBurns3 15s ease-in-out infinite;
            transform: translateZ(0);
            backface-visibility: hidden;
            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: 1;
        }

        .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;
        }

        .couple-photo {
            width: 145px;
            height: 145px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 1.5rem;
            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);
        }

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

        .couple-name {
            font-size: 2rem;
            font-weight: 500;
            color: #ffffff;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

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

        /* ============================================
           TURUT MENGUNDANG SECTION
        ============================================ */
        .inviting-section {
            padding: 4rem 0;
            background: #0A1527;
            position: relative;
            overflow: hidden;
        }

        .inviting-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            animation: kenBurns3 35s ease-in-out infinite;
            z-index: 1;
        }

        .inviting-section .container {
            position: relative;
            z-index: 10;
        }


        .inviting-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .inviting-card {
            background: transparent;
            padding: 2rem 1.5rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 15px 35px 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(-8px) scale(1.02);
        }

        .inviting-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .inviting-card:nth-child(3) {
            animation-delay: 0.4s;
        }

        .inviting-icon {
            font-size: 2.5rem;
            color: #762B4C;
            margin-bottom: 1rem;
            animation: heartBeat 2s ease-in-out infinite;
        }

        .inviting-name {
            font-size: 1rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 0.5rem;
            line-height: 1.4;
        }

        .inviting-title {
            font-size: 0.8rem;
            color: #d8d8d8;
            line-height: 1.5;
            font-style: italic;
        }


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

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

        /*.countdown-section::after {*/
        /*    content: '';*/
        /*    position: absolute;*/
        /*    top: 0;*/
        /*    left: 0;*/
        /*    width: 100%;*/
        /*    height: 100%;*/
        /*    background-image:*/
        /*        radial-gradient(circle, rgba(255, 255, 255, 0.8) 1px, transparent 1px),*/
                /* Diubah dari pink ke putih */
        /*        radial-gradient(circle, rgba(255, 255, 255, 0.5) 1px, transparent 1px);*/
            /* Diubah dari pink ke putih */
        /*    background-size: 100px 100px, 150px 150px;*/
        /*    background-position: 0 0, 50px 50px;*/
        /*    animation: parallaxFloat 25s ease-in-out infinite;*/
        /*    opacity: 0.2;*/
        /*    z-index: 1;*/
        /*}*/

        .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(255, 255, 255, 0.0);
            /* Diubah dari pink ke putih */
            padding: 1.5rem 1rem;
            border-radius: 15px;
            backdrop-filter: blur(3px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            /* Diubah dari pink ke putih */
            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(255, 255, 255, 0.2);
            /* Diubah dari pink ke putih */
            box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
            /* Diubah dari pink ke putih */
        }

        .countdown-number {
            font-size: 2.5rem;
            font-weight: 700;
            display: block;
            animation: pulse 2s ease-in-out infinite;
        }

        .countdown-label {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        
        /* Container untuk tombol */
        .add-to-calendar-btn {
            background-color: transparent;
            color: #ffffff;
            border: 2px solid #ffffff;
            padding: 10px 25px;
            font-size: 1rem;
            font-family: 'Poppins', sans-serif; /* Sesuaikan dengan font utama Anda */
            border-radius: 50px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px; /* Jarak antara ikon dan teks */
            transition: all 0.3s ease-in-out;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
            animation: shadow-pulse 2s infinite;
        }

        /* Efek saat tombol diarahkan kursor (Hover) */
        .add-to-calendar-btn:hover {
            background-color: #ffffff;
            color: #333333; /* Warna teks berubah saat background putih */
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Animasi klik (Active) */
        .add-to-calendar-btn:active {
            transform: translateY(-1px);
        }

        /* Styling untuk ikon Bootstrap di dalam tombol */
        .add-to-calendar-btn i {
            font-size: 1.2rem;
        }
        
        @keyframes shadow-pulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
        }
        
        /* Responsif untuk layar kecil */
        @media (max-width: 576px) {
            .add-to-calendar-btn {
                padding: 8px 20px;
                font-size: 0.9rem;
            }
        }

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

        .event-section::before {
            content: '';
            position: absolute;
            top: -10%;
            left: -10%;
            width: 120%;
            height: 120%;
            background:
                linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('/img/basic-template-img/asset-4.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(255, 255, 255, 0.2),
                    /* Diubah dari pink ke putih */
                    transparent);
            background-size: 100% 200%;
            animation: gradientShift 10s ease infinite;
            z-index: 1;
        }

        .event-card {
            background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1));
            /* Diubah dari pink ke putih */
            padding: 2rem 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, 255, 255, 0.1);
            /* Diubah dari pink ke putih */
            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, 255, 255, 0.2);
            /* Diubah dari pink ke putih */
        }

        .event-icon {
            font-size: 2.5rem;
            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;
        }

        /* ============================================
           GALLERY SECTION
        ============================================ */
        .gallery-section {
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
            padding: 4rem 0;
            min-height: 100vh;
        }

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

        @keyframes kenBurns {
            0%, 100% {
                transform: scale(1) translate(0, 0);
            }
            50% {
                transform: scale(1.1) translate(-2%, 2%);
            }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
            position: relative;
            z-index: 2;
        }

        .section-title {
            font-size: 3rem;
            margin-bottom: 3rem;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
            animation: fadeInDown 1s ease;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        
        /* ==========================================
   HISTORY LOVE SECTION (Modified)
   ========================================== */
.history-section {
    padding: 80px 20px;
    background: #ffffff; /* Ubah ke putih */
    position: relative;
    overflow: hidden;
}

.history-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /* Mengubah efek cahaya radial menjadi abu-abu sangat tipis */
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(200, 200, 200, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(200, 200, 200, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* 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;
    /* Ubah warna garis ke abu-abu */
    background: #cccccc; 
    transform: translateX(-50%);
    box-shadow: none; /* Menghilangkan shadow pink */
}

/* 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 delays tetap sama */
.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: 20px;
    height: 20px;
    /* Ubah dot menjadi abu-abu */
    background: #999999;
    border: 4px solid #fff;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(200, 200, 200, 0.2);
    animation: pulseGray 2s ease-in-out infinite;
}

@keyframes pulseGray {
    0%, 100% { box-shadow: 0 0 0 4px rgba(200, 200, 200, 0.2); }
    50% { box-shadow: 0 0 0 8px rgba(200, 200, 200, 0.1); }
}

/* Timeline Content */
.timeline-content {
    background: #fff;
    padding: 25px 30px;
    border-radius: 15px;
    /* Shadow diperhalus */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #eeeeee;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

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

.timeline-item:nth-child(even) .timeline-content::after {
    content: '';
    position: absolute;
    left: -15px;
    top: 10px;
    border-right: 15px solid #fff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.timeline-date {
    display: inline-block;
    /* Background tanggal menjadi abu-abu sedang */
    background: #888888;
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.timeline-title {
    font-size: 1.5rem;
    color: #333333; /* Judul abu-abu tua */
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.timeline-text {
    color: #555555; /* Teks deskripsi abu-abu tua */
    line-height: 1.7;
    font-size: 1rem;
}

/* 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; }
    .timeline-item:nth-child(odd) .timeline-content::after { display: none; }
    .timeline-item:nth-child(even) .timeline-content::after { left: -15px; }
}

        /* ============================================
           SLIDESHOW SECTION
        ============================================ */
        .slideshow-section {
            margin-bottom: 3rem;
            position: relative;
        }

        .slideshow-container {
            position: relative;
            width: 100%;
            max-width: 900px;
            height: 500px;
            margin: 0 auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .slide {
            display: none;
            width: 100%;
            height: 100%;
            animation: fadeIn 0.8s ease;
        }

        .slide.active {
            display: block;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            background: rgba(0, 0, 0, 0.3);
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Navigation Arrows */
        .prev, .next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            color: white;
            border: none;
            padding: 1rem 1.2rem;
            cursor: pointer;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            border-radius: 8px;
            z-index: 10;
        }

        .prev:hover, .next:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-50%) scale(1.1);
        }

        .prev { left: 20px; }
        .next { right: 20px; }

        /* Dots Navigation */
        .dots-container {
            text-align: center;
            margin-top: 1.5rem;
        }

        .dot {
            height: 12px;
            width: 12px;
            margin: 0 6px;
            background-color: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            display: inline-block;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot:hover {
            background-color: rgba(255, 255, 255, 0.5);
            transform: scale(1.2);
        }

        .dot.active {
            background-color: white;
            width: 30px;
            border-radius: 6px;
        }

        /* ============================================
           GRID GALLERY (Portrait)
        ============================================ */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }

        .gallery-item {
            border-radius: 12px;
            overflow: hidden;
            opacity: 0;
            transform: scale(0.8) translateY(20px);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
            position: relative;
            aspect-ratio: 4/6;
        }

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

        /* Staggered animation */
        .gallery-item:nth-child(1) { transition-delay: 0.1s; }
        .gallery-item:nth-child(2) { transition-delay: 0.2s; }
        .gallery-item:nth-child(3) { transition-delay: 0.3s; }
        .gallery-item:nth-child(4) { transition-delay: 0.4s; }

        .gallery-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg,
                    rgba(255, 255, 255, 0.3),
                    transparent 50%,
                    rgba(255, 255, 255, 0.3));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 2;
        }

        .gallery-item:hover::before {
            opacity: 1;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .gallery-item:hover {
            box-shadow: 0 20px 50px rgba(255, 255, 255, 0.3);
            transform: scale(1.05) translateY(-5px);
        }

        .gallery-item:hover img {
            transform: scale(1.15) rotate(2deg);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .slideshow-container {
                height: 350px;
            }

            .prev, .next {
                padding: 0.8rem 1rem;
                font-size: 1.2rem;
            }

            .prev { left: 10px; }
            .next { right: 10px; }

            .section-title {
                font-size: 2rem;
            }
        }


.timeline {
    position: relative;
}

.timeline::before {
    height: var(--timeline-progress, 0%);
    transition: height 0.3s ease-out;
}

.timeline-item {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item[data-direction="left"] {
    transform: translateX(-50px) translateY(50px);
}

.timeline-item[data-direction="right"] {
    transform: translateX(50px) translateY(50px);
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

.timeline-dot {
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-dot.active {
    transform: scale(1);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { 
        box-shadow: 0 0 0 4px rgba(200, 200, 200, 0.2); 
    }
    50% { 
        box-shadow: 0 0 0 8px rgba(200, 200, 200, 0.1),
                    0 0 0 12px rgba(200, 200, 200, 0.05); 
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}


/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 21, 39, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
    pointer-events: auto;
}

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: block;
    animation: zoomPulse 1.5s ease-in-out infinite;
}

.overlay-content span {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

@keyframes zoomPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Ripple Effect */
.gallery-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%);
    animation: rippleEffect 0.6s ease-out;
    pointer-events: none;
    z-index: 3;
}

@keyframes rippleEffect {
    to {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

/* Lightbox Styles */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-lightbox.active {
    display: block;
    opacity: 1;
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
}

.lightbox-caption {
    color: white;
    margin-top: 1rem;
    font-size: 1.1rem;
}

.lightbox-counter {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-close {
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-close:hover {
    transform: scale(1.1) rotate(90deg);
}

.lightbox-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Lazy Loading Effect */
.gallery-item img.lazy {
    filter: blur(10px);
    transition: filter 0.3s ease;
}

.gallery-item img.loaded {
    filter: blur(0);
}

/* Responsive */
@media (max-width: 768px) {
    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
    
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    
    .overlay-content i {
        font-size: 2rem;
    }
}

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

        /* Section Title Styles */
        .section-title {
            font-size: 3rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
            color: #2c3e50;
            position: relative;
            letter-spacing: -1px;
        }

        .section-title-video {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .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: 1.2rem;
            color: #6c757d;
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            font-style: italic;
            opacity: 0.9;
        }

        .section-subtitle-video {
            text-align: center;
            font-size: 1.2rem;
            color: #222222;
            margin-bottom: 0rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            font-style: italic;
            opacity: 0.9;
        }


        .play-btn {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #667eea;
            transition: all 0.3s ease;
        }

        .play-btn:hover {
            transform: scale(1.1);
            background: #ffffff;
        }

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

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

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

        /* Responsive */
        @media (max-width: 992px) {
            .gallery-grid {
                grid-template-columns: repeat(4, 1fr);
                grid-auto-rows: 120px;
            }

            .gallery-item.small {
                grid-column: span 2;
                grid-row: span 2;
            }

            .gallery-item.large {
                grid-column: span 4;
                grid-row: span 2;
            }

            .gallery-item.wide {
                grid-column: span 2;
                grid-row: span 2;
            }
        }

        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-auto-rows: 100px;
            }

            .gallery-item.small,
            .gallery-item.medium,
            .gallery-item.large,
            .gallery-item.wide {
                grid-column: span 1;
                grid-row: span 2;
            }
        }

        /* ============================================
           MAPS SECTION
        ============================================ */
        .maps-section {
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
            padding: 4rem 0;
        }

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

        .section-subtitle {
            text-align: center;
            color: #ffffff;
            margin-bottom: 3rem;
            font-size: 1.1rem;
            position: relative;
            z-index: 2;
        }

        .maps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .map-card {
            background: transparent;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
            /* Diubah dari pink ke putih */
            transition: all 0.3s ease;
        }

        .map-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(255, 255, 255, 0.15);
            /* Diubah dari pink ke putih */
        }

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

        .map-title {
            text-align: center;
            color: #ffffff;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

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

        .map-details p {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #ffffff;
            margin-bottom: 0.8rem;
        }

        .map-details i {
            color: #ffffff;
            font-size: 1.1rem;
        }

        .map-container {
            margin-bottom: 1.5rem;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
            /* Diubah dari pink ke putih */
        }

        .map-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, #0A1527, #6878B0);
            color: white;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .map-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
            /* Diubah dari pink ke putih */
            color: white;
        }

        /* ============================================
           MUSIC SECTION
        ============================================ */
        .music-section {
            padding: 80px 20px;
            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, 255, 255, 0.15) 2px, transparent 2px),
                /* Diubah dari pink ke putih */
                radial-gradient(circle, rgba(255, 255, 255, 0.1) 3px, transparent 3px),
                /* Diubah dari pink ke putih */
                radial-gradient(circle, rgba(255, 255, 255, 0.08) 4px, transparent 4px);
            /* Diubah dari pink ke putih */
            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, 255, 255, 0.2),
                    /* Diubah dari pink ke putih */
                    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: 600px;
            margin: 0 auto;
            background: transparent;
            border-radius: 25px;
            padding: 2rem;
            box-shadow: 0 15px 50px rgba(255, 255, 255, 0.1);
            /* Diubah dari pink ke putih */
        }

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

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

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

        .track-info h4 {
            margin: 0 0 0.3rem 0;
            color: #ffffff;
            font-size: 1.3rem;
        }

        .track-info p {
            margin: 0;
            color: #ffffff;
        }

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

        .control-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: none;
            background: #762B4C;
            color: #333;
            font-size: 1.3rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

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

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

        .playlist-tracks {
            margin: 2rem 0;
            max-height: 300px;
            overflow-y: auto;
        }

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

        .track-item:hover {
            background: rgba(255, 255, 255, 0.1);
            /* Diubah dari pink ke putih */
        }

        .track-item.active {
            background: #762B4C;
            color: white;
        }

        .track-number {
            font-weight: 600;
            opacity: 0.7;
        }

        .track-details {
            flex: 1;
        }

        .track-details h5 {
            margin: 0 0 0.2rem 0;
            font-size: 1rem;
        }

        .track-details p {
            margin: 0;
            font-size: 0.85rem;
            opacity: 0.8;
        }

        .track-duration {
            opacity: 0.7;
        }

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

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

        .volume-slider {
            flex: 1;
            height: 5px;
            border-radius: 5px;
            outline: none;
            -webkit-appearance: none;
            background: rgba(255, 255, 255, 0.3);
            /* Diubah dari pink ke putih */
        }

        .volume-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: #762B4C;
            cursor: pointer;
        }

        .volume-slider::-moz-range-thumb {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: #762B4C;
            cursor: pointer;
            border: none;
        }

        /* ============ RSVP SECTION ============ */
         /* ============ RSVP SECTION ============ */
        .rsvp-section {
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
            padding: 4rem 0;
        }

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

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

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

        .form-group label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: white;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .form-control {
            width: 100%;
            padding: 0.875rem 1.25rem;
            border: 2px solid #ffffff;
            border-radius: 6px;
            background: transparent;
            color: white;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .form-control:focus {
            outline: none;
            border-color: #ffffff;
            box-shadow: 0 0 0 0.25rem rgba(139, 115, 85, 0.25);
            transform: translateY(-2px);
        }

        .btn-submit {
            width: 100%;
            padding: 1rem;
            background: #222222;
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .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;
            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: 5rem 0;
        }

        .gift-section::before {
            content: '';
            position: absolute;
            top: -10%;
            left: -10%;
            width: 120%;
            height: 120%;
            background:
                radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                /* Diubah dari pink ke putih */
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
            /* Diubah dari pink ke putih */
            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, 255, 255, 0.1) 15%, transparent 15%),
                /* Diubah dari pink ke putih */
                radial-gradient(circle, rgba(255, 255, 255, 0.05) 25%, transparent 25%);
            /* Diubah dari pink ke putih */
            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;
        }

        .gift-subtitle {
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 3rem;
            opacity: 0.95;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 300;
        }

        .gift-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .gift-card {
            background: transparent;
            border-radius: 20px;
            padding: 2.5rem 2rem;
            box-shadow: 0 10px 40px rgba(255, 255, 255, 0.15);
            /* Diubah dari pink ke putih */
            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, #762B4C);
        }

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

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

        .gift-bank-name {
            font-size: 1.5rem;
            font-weight: 600;
            color: #1d1d1d;
            margin-bottom: 0.5rem;
            font-family: 'Cormorant Garamond', serif;
        }

        .gift-account-name {
            font-size: 0.95rem;
            color: #1d1d1d;
            margin-bottom: 1.5rem;
            font-weight: 400;
        }

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

        .gift-account-number span {
            font-size: 1.1rem;
            font-weight: 600;
            color: #2c2c2c;
            letter-spacing: 1px;
        }

        .copy-btn {
            background: #0A1527;
            color: white;
            border: none;
            padding: 0.6rem 1.5rem;
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .copy-btn:hover {
            background: #475994;
            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: 1rem;
        }

        /* Address Card */
        .address-card .gift-address {
            font-size: 0.95rem;
            color: #555;
            line-height: 1.8;
            margin-top: 1rem;
        }


        /* Sosial Media Section Styles */
        .sosmed-section {
            padding: 80px 0;
            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: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        /* Section Title Styles untuk Sosmed */
        .section-title-sosmed {
            font-size: 3rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 2rem;
            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: -60px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 2rem;
            animation: bounce 2s infinite;
        }

        .section-title-sosmed::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            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: 1.2rem;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            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: 22px;
            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(auto-fit, minmax(120px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            max-width: 100px;
            margin-left: auto;
            margin-right: auto;
        }

        .sosmed-item {
            background: rgba(255, 255, 255, 0.15);
            border-radius: 20px;
            padding: 2rem 1rem;
            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: 2.5rem;
            color: #ffffff;
            margin-bottom: 1rem;
            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: 0.9rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

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

        .sosmed-btn {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
            color: #ffffff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            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;
        }

        .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: 60px 0;
            }

            .section-title-sosmed {
                font-size: 2.2rem;
            }

            .section-title-sosmed::before {
                top: -50px;
                font-size: 1.5rem;
            }

            .sosmed-text {
                padding: 1.5rem;
                font-size: 1.1rem;
            }

            .sosmed-grid {
                grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
                gap: 1.5rem;
            }

            .sosmed-item {
                padding: 1.5rem 0.5rem;
            }

            .sosmed-item i {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .section-title-sosmed {
                font-size: 1.8rem;
            }

            .sosmed-text {
                padding: 1rem;
                font-size: 1rem;
            }

            .sosmed-btn {
                padding: 12px 30px;
                font-size: 1rem;
            }

            .sosmed-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* 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 - IMPROVED DESIGN
        ============================================ */
        .wishes-section {
            padding: 80px 20px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .wishes-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                radial-gradient(circle at 10% 20%, rgba(118, 43, 76, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(61, 79, 139, 0.05) 0%, transparent 50%);
            z-index: 0;
        }

        .wishes-container {
            max-width: 800px;
            margin: 0 auto 2rem;
            position: relative;
            z-index: 1;
        }

        .wishes-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .wishes-title {
            font-family: 'Marion Regular', serif;
            font-size: 2.5rem;
            font-weight: 600;
            color: #0A1527;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .wishes-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #762B4C, #0A1527);
            border-radius: 3px;
        }

        .wishes-subtitle {
            font-size: 1.1rem;
            color: #6c757d;
            max-width: 600px;
            margin: 0 auto;
            font-style: italic;
        }

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

        .stat-box {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: white;
            padding: 1.5rem 2.5rem;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .stat-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }

        .stat-box i {
            font-size: 2.5rem;
            color: #762B4C;
        }

        .stat-info h3 {
            margin: 0;
            font-size: 2rem;
            color: #333;
        }

        .stat-info p {
            margin: 0;
            color: #666;
        }

        .wishes-list {
            margin-bottom: 2rem;
        }

        .wish-card {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            margin-bottom: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
            animation: fadeInUp 0.5s ease;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .wish-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .wish-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, #762B4C, #0A1527);
        }

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

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

        .wish-info {
            flex: 1;
        }

        .wish-name {
            margin: 0 0 0.2rem 0;
            color: #333;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .wish-time {
            font-size: 0.85rem;
            color: #999;
        }

        .wish-status {
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

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

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

        .wish-status.mungkin {
            background: rgba(255, 193, 7, 0.1);
            color: #ffc107;
        }

        .wish-message {
            color: #555;
            line-height: 1.7;
            margin: 1rem 0 0 0;
            font-style: italic;
            position: relative;
            padding-left: 1.5rem;
        }

        .wish-message::before {
            content: '"';
            position: absolute;
            left: 0;
            top: -5px;
            font-size: 2rem;
            color: #762B4C;
            opacity: 0.3;
        }

        .wishes-actions {
            text-align: center;
            margin-top: 2rem;
        }

        .load-more-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 1rem 2.5rem;
            background: white;
            border: 2px solid #762B4C;
            color: #762B4C;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .load-more-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: #762B4C;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
            z-index: 0;
        }

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

        .load-more-btn span {
            position: relative;
            z-index: 1;
        }

        .load-more-btn:hover {
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(118, 43, 76, 0.2);
        }

        .wishes-empty {
            text-align: center;
            padding: 3rem 2rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            color: #6c757d;
            font-size: 1.1rem;
            font-style: italic;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .wishes-title {
                font-size: 2rem;
            }

            .wishes-stats {
                gap: 1rem;
            }

            .stat-box {
                padding: 1rem 1.5rem;
            }

            .wish-card {
                padding: 1.2rem;
            }

            .wish-avatar {
                width: 45px;
                height: 45px;
                font-size: 1.5rem;
            }

            .load-more-btn {
                padding: 0.8rem 2rem;
            }
        }

        @media (max-width: 480px) {
            .wishes-section {
                padding: 60px 15px;
            }

            .wishes-title {
                font-size: 1.8rem;
            }

            .wishes-subtitle {
                font-size: 1rem;
            }

            .stat-box {
                flex-direction: column;
                text-align: center;
                padding: 1.2rem 1.5rem;
            }

            .wish-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.8rem;
            }

            .wish-avatar {
                align-self: center;
            }

            .wish-info {
                width: 100%;
            }
        }

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

        .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: 2rem;
        }

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

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

        .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: 600px;
            margin: 0 auto;
        }

        .closing-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
            animation: heartBeat 2s ease-in-out infinite;
        }

        .closing-title {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            font-weight: 300;
        }

        .closing-message {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .closing-divider {
            margin: 2rem 0;
            font-size: 1.5rem;
        }

        .closing-names h3 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .closing-date {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

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

        .social-link {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

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

        .closing-credit {
            font-size: 0.9rem;
            opacity: 0.7;
            margin: 0;
        }

        /* ============================================
           COMMON SECTION STYLES
        ============================================ */
        section {
            padding: 60px 20px;
            min-height: auto;
            display: flex;
            align-items: center;
        }

        /* Base Section Title */
        .section-title {
            font-size: 1rem;
            font-weight: 300;
            text-align: center;
            margin-bottom: 2.5rem;
            color: #ffffff;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 80px;
            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-size: 1.5rem;
            font-weight: 600;
            color: #ffffff;
            font-family: 'Marion Regular', serif;
        }

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

        /* Couple Section Title */
        .section-title-couple {
            font-family: 'Marion Regular', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .section-title-couple::after {
            background: linear-gradient(90deg, transparent, #fff, transparent);
            width: 120px;
            height: 3px;
        }
        
        /* Couple Section Title */
        .section-title-history {
            font-family: 'Marion Regular', serif;
            font-size: 1.5rem;
            font-weight: 300;
            color: #222222;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .section-title-history::after {
            background: linear-gradient(90deg, transparent, #fff, transparent);
            width: 120px;
            height: 3px;
        }

        .section-title-inviting {
            font-size: 1.5rem;
            font-weight: 600;
            color: #ffffff;
            text-align: center;
            margin-bottom: 1rem;
        }

        .section-title-inviting::after {
            background: linear-gradient(90deg, transparent, #fff, transparent);
            width: 120px;
            height: 3px;
        }

        /* Countdown Section Title */
        .section-title-countdown {
            font-family: 'Marion Regular', serif;
            font-size: 1.5rem;
            font-weight: 500;
            color: #ffffff;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

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

        /* Countdown Section Title */
        .section-title-events {
            font-size: 1.5rem;
            font-weight: 500;
            color: #ffffff;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

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

        /* Gallery Section Title */
        .section-title-gallery {
            font-family: 'Marion Regular', serif;
            font-size: 1.5rem;
            font-weight: 500;
            color: #ffffff;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

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

        /* Video Section Title */
        .section-title-video {
            font-size: 1rem;
            font-weight: 500;
            color: #222222;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

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

        /* Maps Section Title */
        .section-title-maps {
            font-size: 1.5rem;
            font-weight: 600;
            color: #ffffff;
            font-family: 'Marion Regular', serif;
        }

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

        /* RSVP Section Title */
        .section-title-rsvp {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .section-title-rsvp::after {
            background: linear-gradient(90deg, transparent, #ffffff, transparent);
            width: 100px;
            height: 2px;
        }
        
        /* Wishes Section Title */
        .section-title-wishes {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

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

        /* Gift Section Title */
        .section-title-gift {
            font-size: 1.5rem;
            font-weight: 600;
            color: #1d1d1d;
            font-family: 'Marion Regular', serif;
        }

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

        /* Wishes Section Title */
        .section-title-wishes {
            font-size: 1.5rem;
            font-weight: 600;
            color: #0A1527;
        }

        .section-title-wishes::after {
            background: linear-gradient(90deg, transparent, #762B4C, transparent);
            width: 120px;
        }

        /* Thank You Section Title */
        .section-title-thankyou {
            font-size: 1.5rem;
            font-weight: 500;
            color: #ffffff;
            font-style: italic;
        }

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


        /* ============================================
           VIDEO SECTION STYLES - NEW DESIGN
           ============================================ */
        .video-section {
            position: relative;
            min-height: 120%;
            display: flex;
            align-items: center;
            overflow: hidden;
            clear: both;
            z-index: 1;
            margin-top: 0;
        }

        /* Diagonal Lines Pattern - Mengubah warna menjadi netral */
        .video-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                repeating-linear-gradient(45deg,
                    transparent,
                    transparent 35px,
                    rgba(200, 200, 220, 0.1) 35px,
                    rgba(200, 200, 220, 0.1) 70px),
                repeating-linear-gradient(-45deg,
                    transparent,
                    transparent 35px,
                    rgba(220, 200, 200, 0.08) 35px,
                    rgba(220, 200, 200, 0.08) 70px);
            pointer-events: none;
            animation: lineMove 30s linear infinite;
        }

        @keyframes lineMove {
            0% {
                background-position: 0 0, 0 0;
            }

            100% {
                background-position: 100px 100px, -100px 100px;
            }
        }

        /* Subtle Gradient Waves - Mengubah warna menjadi netral */
        .video-section::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 120vh;
            background:
                radial-gradient(ellipse at 30% 20%, rgba(240, 240, 250, 0.4) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(250, 240, 240, 0.3) 0%, transparent 50%);
            animation: waveFloat 20s ease-in-out infinite;
            opacity: 0.6;
        }

        @keyframes waveFloat {

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

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

        .video-section .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        /* Section Title */
        .section-subtitle-video {
            text-align: center;
            color: #2c3e50;
            margin-bottom: 15px;
            animation: fadeInDown 1s ease-out;
        }

        .section-subtitle-video:first-child {
            font-size: 3rem;
            font-weight: 700;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            letter-spacing: 1px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle-video:last-of-type {
            font-size: 1.2rem;
            opacity: 0.7;
            font-weight: 300;
            letter-spacing: 0.5px;
            margin-bottom: 50px;
            color: #555;
        }

        /* Video Container */
        .video-container {
            position: relative;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        /* Video Wrapper with 3D Effect */
        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
            border-radius: 0px;
            box-shadow:
                0 20px 60px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(102, 126, 234, 0.1),
                inset 0 0 0 1px rgba(255, 255, 255, 0.8);
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .video-wrapper:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow:
                0 30px 80px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(102, 126, 234, 0.3),
                inset 0 0 0 1px rgba(255, 255, 255, 1);
        }

        /* Decorative Corner Elements - Mengubah warna menjadi netral */
        .video-wrapper::before,
        .video-wrapper::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 60px;
            border: 3px solid rgba(102, 126, 234, 0.3);
            z-index: 2;
            transition: all 0.4s ease;
        }

        .video-wrapper::before {
            top: -10px;
            left: -10px;
            border-right: none;
            border-bottom: none;
            border-radius: 0px 0 0 0;
        }

        .video-wrapper::after {
            bottom: -10px;
            right: -10px;
            border-left: none;
            border-top: none;
            border-radius: 0 0 20px 0;
        }

        .video-wrapper:hover::before,
        .video-wrapper:hover::after {
            width: 80px;
            height: 80px;
            border-color: rgba(118, 75, 162, 0.5);
        }

        /* iframe Styling */
        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 0px;
        }

        /* Play Icon Overlay (optional) */
        .video-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 0%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 3;
            pointer-events: none;
            opacity: 0;
        }

        .video-wrapper:hover .video-overlay {
            opacity: 1;
        }

        .video-overlay i {
            font-size: 2rem;
            color: #667eea;
            margin-left: 5px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .video-section {
                padding: 60px 0;
                min-height: auto;
                margin-top: 50px;
            }

            .section-subtitle-video:first-child {
                font-size: 2rem;
                margin-top: 20px;
            }

            .section-subtitle-video:last-of-type {
                font-size: 1rem;
                margin-bottom: 30px;
            }

            .video-wrapper {
                border-radius: 15px;
            }

            .video-wrapper::before,
            .video-wrapper::after {
                width: 40px;
                height: 40px;
            }

            .video-wrapper:hover::before,
            .video-wrapper:hover::after {
                width: 50px;
                height: 50px;
            }
        }

        @media (max-width: 480px) {
            .video-section {
                padding: 40px 0;
            }

            .section-subtitle-video:first-child {
                font-size: 1.5rem;
            }

            .video-wrapper {
                border-radius: 10px;
            }

            .video-wrapper::before,
            .video-wrapper::after {
                display: none;
            }
        }

        /* Gallery Section - Fix Overlap */
        .gallery-section {
            position: relative;
            z-index: 0;
            margin-bottom: 0;
            padding-bottom: 60px;
        }

        .gallery-item {
            position: relative;
            z-index: 0;
        }

        /* ============================================
           NAVIGATION
        ============================================ */
        .bottom-nav {
            position: fixed;
            bottom: 0px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background: white;
            backdrop-filter: blur(10px);
            padding: 0.75rem 1rem;
            border-radius: 0px;
            box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
            /* Diubah dari pink ke putih */
            display: none;
            gap: 0.5rem;
            z-index: 1000;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .bottom-nav.active {
            display: flex;
            transform: translateX(-50%) translateY(0);
        }

        .nav-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: none;
            background: transparent;
            color: #762B4C;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .nav-btn::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: #762B4C;
            transform: scale(0);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
        }

        .nav-btn:hover::before,
        .nav-btn.active::before {
            transform: scale(1);
        }

        .nav-btn:hover,
        .nav-btn.active {
            color: white;
        }

        .nav-btn:active {
            transform: scale(0.9);
        }


/* Music Toggle Button - TANPA ANIMASI */
.music-toggle {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0A1527;
    color: white;
    border: none;
    /* SEMBUNYIKAN DULU */
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    /* HAPUS SEMUA ANIMASI */
    transition: none !important;
    animation: none !important;
    transform: none !important;
    -webkit-tap-highlight-color: transparent;
}

/* TAMPILKAN SETELAH KLIK "OPEN INVITATION" */
.music-toggle.active {
    display: flex !important;
}

/* Status playing - HANYA ubah warna background */
.music-toggle.playing {
    background: #762B4C;
}

/* Icon - statis total */
.music-toggle i {
    font-size: 1.5rem;
    transition: none !important;
    animation: none !important;
    transform: none !important;
}

/* HAPUS SEMUA hover, active, dan animasi lainnya */
.music-toggle:hover,
.music-toggle:active,
.music-toggle:focus {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

        footer p {
            opacity: 0.8;
        }

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

        .footer-links a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .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: 2.5rem;
            }

            .closing-names h3 {
                font-size: 2rem;
            }

            .gift-section {
                padding: 3rem 0;
            }

            .gift-subtitle {
                font-size: 0.95rem;
                margin-bottom: 2rem;
                padding: 0 1rem;
            }

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

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

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

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

        @media (max-width: 380px) {
            .cover-content h2 {
                font-size: 2.5rem;
            }

            .hero-content h2 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 1.3rem;
            }

            .countdown-number {
                font-size: 2rem;
            }
        }
