        :root {
            --platinum: #E5E7EB;
            --dark: #111827;
            --text-gray: #4B5563;
            --white: #FFFFFF;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

        html { scroll-behavior: smooth; background-color: #F3F4F6; overflow-x: hidden; }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            background-color: var(--white);
            max-width: 500px;
            margin: 0 auto;
            min-height: 100vh;
            position: relative;
            box-shadow: 0 0 30px rgba(0,0,0,0.02);
        }

        /* h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 300; text-transform: uppercase; letter-spacing: 4px; } */
        .cursive { font-family: 'Sacramento', cursive; color: var(--text-gray); font-size: 2.5rem; }

        section { padding: 100px 30px; text-align: center; border-bottom: 1px solid var(--platinum); }

        /* ========== ANIMATIONS ========== */
        .reveal { opacity: 0; transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1); }
        .reveal-bottom { transform: translateY(30px); }
        .reveal-left { transform: translateX(-40px); }
        .reveal-right { transform: translateX(40px); }
        .reveal.active { opacity: 1; transform: translate(0,0); }

        /* ========== LOVE STORY ========== */
        #story {
            padding: 100px 20px;
            background-color: #ffffff;
            overflow: hidden;
        }

        #story h2 {
            font-size: 2.2rem;
            margin-bottom: 10px;
            font-weight: 400;
            letter-spacing: 2px;
        }

        .story-timeline {
            position: relative;
            padding: 40px 0;
        }

        /* Garis vertikal tipis di tengah (Opsional) */
        .story-timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 1px;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.05), transparent);
            z-index: 0;
        }

        .story-item {
            position: relative;
            z-index: 1;
            margin-bottom: 80px;
        }

        .story-item:last-child {
            margin-bottom: 0;
        }

        .story-date {
            display: block;
            font-size: 0.65rem;
            letter-spacing: 5px;
            color: #a4a4a4;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

         .story-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            font-style: italic;
            font-weight: bold; /* Sebelumnya 500, sekarang diganti menjadi bold */
            color: #333;
            margin-bottom: 20px;
        }
        
        /* .story-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            font-style: italic;
            font-weight: 500;
            color: #333;
            margin-bottom: 20px;
        } */

        .story-description {
            font-size: 0.85rem;
            line-height: 2;
            color: #777;
            max-width: 500px;
            margin: 0 auto;
            font-weight: 300;
        }

        /* Dekorasi pemisah antar momen */
        .story-divider {
            margin: 40px 0;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0.2;
        }

        .story-divider i {
            font-size: 0.4rem;
        }

        /* Responsive adjustment */
        @media (max-width: 768px) {
            #story {
                padding: 60px 25px;
            }

            .story-title {
                font-size: 1.5rem;
            }

            .story-description {
                font-size: 0.8rem;
            }
        }

        /* ========== COVER ========== */
        #cover {
            position: fixed; top: 0; left: 50%; transform: translateX(-50%);
            width: 100%; max-width: 500px; height: 100%;
            background: var(--white);
            display: flex; flex-direction: column; justify-content: center; align-items: center;
            z-index: 10000; transition: 1s ease-in-out;
        }
        #cover.hide { transform: translateX(-50%) translateY(-100%); }

        .btn-open {
            margin-top: 40px; padding: 15px 40px; background: var(--dark); color: white;
            border: none; font-size: 0.7rem; letter-spacing: 3px; cursor: pointer;
            text-transform: uppercase;
        }

        /* ========== COUNTDOWN ========== */
        .timer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-top: 40px; }
        .timer-item span { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; }
        .timer-item small { font-size: 0.6rem; letter-spacing: 2px; opacity: 0.6; text-transform: uppercase; }

        /* ========== PHOTO BOX ========== */
        .photo-minimal {
            width: 100%;
            height: 500px;
            overflow: hidden;
            margin-bottom: 25px;
        }
        .photo-minimal img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(100%); transition: 1.2s; }
        .photo-minimal:hover img { filter: grayscale(0%); }

        /* ========== GALLERY ========== */
        .masonry-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-top: 30px;
        }
        .masonry-item { overflow: hidden; height: 200px; }
        .masonry-item img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: 0.8s; }
        .masonry-item:hover img { filter: grayscale(0%); transform: scale(1.05); }
        .item-large {
            grid-column: span 1;
            height: 414px;
            grid-row: span 2;
        }

        /* ========== RSVP FORM ========== */
        .rsvp-form { text-align: left; }
        .rsvp-form input, .rsvp-form select, .rsvp-form textarea {
            width: 100%; padding: 15px 0; margin-bottom: 20px; background: transparent;
            border: none; border-bottom: 1px solid var(--platinum); color: var(--dark); outline: none; font-family: inherit;
        }
        .btn-submit { width: 100%; padding: 15px; background: var(--dark); color: white; border: none; letter-spacing: 2px; cursor: pointer; text-transform: uppercase; font-size: 0.75rem; }

        /* ========== MUSIC CONTROL (VINYL VERSION) ========== */
        .music-control { position: fixed; bottom: 30px; left: 50%; transform: translateX(-230px); z-index: 1000; }

        .music-btn {
            width: 45px; height: 45px; border-radius: 50%; background: var(--dark);
            color: white; border: none; display: flex; justify-content: center; align-items: center;
            cursor: pointer; box-shadow: 0 4px 15px rgba(0,0,0,0.1); transition: 0.3s;
        }

        /* Animasi Rotasi Vinyl */
        @keyframes rotateVinyl {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .music-btn.playing i {
            animation: rotateVinyl 4s linear infinite;
        }

        body.no-scroll { overflow: hidden; }
        @media (max-width: 500px) { .music-control { left: 20px; transform: none; } }

    /* ========== GIFT CARD (Standard Feature) ========== */
    .gift-card {
        background: white;
        padding: 40px 20px;
        border: 1px solid var(--platinum);
        border-radius: 4px;
        transition: 0.4s;
    }
    .gift-card:hover {
        border-color: var(--dark);
    }
    .btn-copy {
        margin-top: 20px;
        padding: 8px 20px;
        background: transparent;
        border: 1px solid var(--dark);
        font-size: 0.6rem;
        letter-spacing: 2px;
        cursor: pointer;
        transition: 0.3s;
    }
    .btn-copy:hover {
        background: var(--dark);
        color: white;
    }

    /* ========== COMMENTS (Standard Feature) ========== */
    .comment-item {
        padding: 20px 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    .comment-item:last-child {
        border-bottom: none;
    }

    /* Modifikasi Gallery untuk kapasitas lebih banyak */
    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-flow: dense;
    }

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

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

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

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

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

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

    /* Sembunyikan music control asli atau pindahkan posisinya */
    .music-control {
        bottom: 90px !important; /* Naikkkan sedikit agar tidak tabrakan dengan navbar */
    }


    /* ========== RING DECORATION ========== */
    .ring-decoration {
        width: 100%;
        display: flex;
        justify-content: center;
        padding-top: 60px; /* Jarak dari atas setelah cover terbuka */
        margin-bottom: 10px; /* Menarik section di bawahnya agar lebih dekat */
        position: relative;
        z-index: 5;
    }

    .ring-decoration img {
        width: 120px; /* Ukuran cincin agar tetap elegan, tidak terlalu besar */
        height: auto;
        filter: drop-shadow(0 10px 15px rgba(0,0,0,0.05)); /* Shadow halus */
        opacity: 0.9;
    }

    /* Responsif untuk layar kecil */
    @media (max-width: 500px) {
        .ring-decoration img {
            width: 100px;
        }
    }

    /* UBAH BAGIAN INI */
    h1, h2, h3 { 
        font-family: 'Cormorant Garamond', serif; 
        font-weight: bold; /* Sebelumnya 300, sekarang diganti menjadi bold */
        text-transform: uppercase; 
        letter-spacing: 4px; 
    }
