        /* ============================================
            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);
            }
        }

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

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

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

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

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

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

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

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

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

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

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

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

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

            10%,
            90% {
                opacity: 0.8;
            }

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

        @keyframes bokehFloat {

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

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

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

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

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

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

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

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

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

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

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

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

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

        @keyframes pulse {

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

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

        @keyframes heartBeat {

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

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

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

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

            to {
                opacity: 1;
            }
        }

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

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

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

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

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

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

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

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

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

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

        /* Other Effects */
        @keyframes float {

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

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

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

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

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

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

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

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

        /* ============================================
           COVER SECTION
        ============================================ */
        #cover {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            color: white;
            text-align: center;
            transition: opacity 0.8s ease, transform 0.8s ease;
            overflow: hidden;
        }

        #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-5.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: 17.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;
            letter-spacing: 1px;
            margin-bottom: 0.4rem;
        }

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

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

        .btn-open {
            background: linear-gradient(to bottom, rgba(54, 54, 54, 0.1), rgba(51, 51, 51, 0.8));
            color: #fff;
            border: none;
            border-radius: 6px;
            padding: 0.6rem 2rem;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 0.1rem;
            position: relative;
            z-index: 100;
        }

        .btn-open:hover {
            background: #fff;
            color: #000;
            transform: translateY(-2px);
        }

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

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

        .btn-open:active {
            transform: translateY(-2px);
        }

        /* 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: -10%;
            left: -10%;
            width: 120%;
            height: 120%;
            background:
                linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
                url('/img/basic-template-img/asset-5.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;
        }

        .hero-names {
            font-family: 'Marion Regular', serif;
            font-size: 3.5rem;
            font-weight: 100;
            letter-spacing: -0px;
            margin-bottom: 0.2rem;
            line-height: 0.9;
        }

        .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: 3.5rem;
            font-weight: 100;
            letter-spacing: -0px;
            margin-bottom: 0.8rem;
        }

        .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: 3.8rem;
                line-height: 0.85;
            }
        }

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

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

        /* ============================================
           QUOTE SECTION
        ============================================ */
        .quote-section {
            background: #3D4F8B;
            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: -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-9.jpg') center center / cover no-repeat;
            animation: kenBurns3 35s ease-in-out infinite;
            z-index: 0;
        }

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

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

        .section-title-inviting::after {
            background: none;
            width: 120px;
        }

        .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: #3D4F8B;
            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;
        }

        /* ============================================
           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.5), rgba(0, 0, 0, 0.5)),
                url('/img/basic-template-img/asset-8.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;
        }

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

        .gallery-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: 200px 200px, 300px 300px;
            background-position: 0 0, 100px 100px;
            animation: parallaxFloat 30s ease-in-out infinite reverse;
            z-index: 1;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            grid-auto-rows: 150px;
            gap: 0.75rem;
            padding: 0 1rem;
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
        }

        .gallery-item {
            border-radius: 8px;
            overflow: hidden;
            opacity: 0;
            transform: scale(0.8);
            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;
        }

        /* New classes for portrait and landscape images */
        .gallery-item.portrait {
            grid-column: span 2;
            grid-row: span 3;
        }

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

        /* Keep the old classes for backward compatibility */
        .gallery-item.small {
            grid-column: span 2;
            grid-row: span 2;
        }

        .gallery-item.medium {
            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 3;
            grid-row: span 2;
        }

        .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.animated {
            opacity: 1;
            transform: scale(1);
        }

        /* Staggered animation delays */
        .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:nth-child(5) {
            transition-delay: 0.5s;
        }

        .gallery-item:nth-child(6) {
            transition-delay: 0.6s;
        }

        .gallery-item:nth-child(7) {
            transition-delay: 0.7s;
        }

        .gallery-item:nth-child(8) {
            transition-delay: 0.8s;
        }

        .gallery-item:nth-child(9) {
            transition-delay: 0.9s;
        }

        .gallery-item:nth-child(10) {
            transition-delay: 1s;
        }

        .gallery-item:nth-child(11) {
            transition-delay: 1.1s;
        }

        .gallery-item:nth-child(12) {
            transition-delay: 1.2s;
        }

        .gallery-item:nth-child(13) {
            transition-delay: 1.3s;
        }

        .gallery-item:nth-child(14) {
            transition-delay: 1.4s;
        }

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

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

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

        /* ================================


        /* ============================================
           GALLERY SECTION - MOBILE (DYNAMIC)
        ============================================ */
        @media (max-width: 768px) {
            .gallery-grid {
                /* Ubah grid menjadi 2 kolom di mobile */
                grid-template-columns: repeat(2, 1fr);
                /* Sesuaikan tinggi baris agar proporsional */
                grid-auto-rows: 120px;
                /* Kurangi jarak antar gambar */
                gap: 0.5rem;
                padding: 0 0.5rem;
            }

            /*
              Atur ulang ukuran item untuk menciptakan layout "dinding bata"
            */

            /* Gambar Landscape: Lebar penuh (2 kolom), tinggi standar */
            .gallery-item.landscape {
                grid-column: span 2;
                grid-row: span 2;
            }

            /* Gambar Portrait: 1 kolom, tinggi lebih panjang */
            .gallery-item.portrait {
                grid-column: span 1;
                grid-row: span 3;
                /* Lebih tinggi dari landscape */
            }

            /*
              Non-aktifkan efek hover yang terlalu dramatis untuk sentuhan.
              Efek scale pada container bisa membuat layout "bergoyang".
            */
            .gallery-item:hover {
                transform: scale(1);
                /* Tidak ada perubahan ukuran container */
                box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
            }

            /* Gambar tetap sedikit zoom saat disentuh untuk feedback */
            .gallery-item:hover img {
                transform: scale(1.08);
            }
        }

        /* ============================================
           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);
            }
        }


        /* 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.7), rgba(0, 0, 0, 0.7)),
                url('/img/basic-template-img/asset-14.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, #3D4F8B, #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 {
            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-5.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: #3D4F8B;
            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
        ============================================ */
        .wishes-section {
            padding: 80px 20px;
            background: #ffffff;
        }

        .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(255, 255, 255, 0.1);
            /* Diubah dari pink ke putih */
        }

        .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-container {
            max-width: 800px;
            margin: 0 auto 2rem;
        }

        .wish-card {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            margin-bottom: 1rem;
            box-shadow: 0 5px 15px rgba(255, 255, 255, 0.08);
            /* Diubah dari pink ke putih */
            animation: fadeInUp 0.5s ease;
        }

        .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, #ffc0cb);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
        }

        .wish-info {
            flex: 1;
        }

        .wish-info h4 {
            margin: 0 0 0.2rem 0;
            color: #333;
        }

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

        .wish-status {
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }

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

        .wish-message {
            color: #555;
            line-height: 1.7;
            margin: 0;
        }

        .load-more-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            margin: 0 auto;
            padding: 1rem 2.5rem;
            background: #FEFFED;
            border: 2px solid #762B4C;
            color: #1f1f1f;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

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

        /* ============================================
           CLOSING SECTION
        ============================================ */
        .closing-section {
            padding: 100px 20px;
            background: linear-gradient(135deg, #3D4F8B 0%, #49598F 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;
        }

        /* 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-size: 1.5rem;
            font-weight: 600;
            color: #ffffff;
            font-family: 'Georgia', serif;
        }

        .section-title-gallery::after {
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
            width: 150px;
        }

        /* 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;
        }

        /* 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: #3D4F8B;
        }

        .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 */
        .music-toggle {
            position: fixed;
            bottom: 80px;
            right: 20px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #3D4F8B;
            color: white;
            border: none;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
            /* Diubah dari pink ke putih */
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: pulse 2s ease-in-out infinite;
        }

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

        .music-toggle:hover {
            transform: scale(1.1) rotate(15deg);
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
            /* Diubah dari pink ke putih */
        }

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

        /* ============================================
           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;
            }
        }
