body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #1c1418;
    color: #fce7f3;
    overflow-x: hidden;
}

.serif-title {
    font-family: 'Playfair Display', serif;
}

/* Background Animasi Glow & Ornamen Soft Pink */
.bg-glow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, #331b25 0%, #1c1418 100%);
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
    animation: floatBlob 12s infinite alternate ease-in-out;
}

.blob-1 { 
    width: 400px; 
    height: 400px; 
    background: #f472b6; 
    top: -10%; 
    left: -10%; 
}

.blob-2 { 
    width: 450px; 
    height: 450px; 
    background: #fb7185; 
    bottom: -15%; 
    right: -10%; 
    animation-delay: -6s; 
}

@keyframes floatBlob {
    0% { transform: translate(0px, 0px) scale(1); }
    100% { transform: translate(30px, 40px) scale(1.1); }
}

.page-card {
    background: rgba(38, 24, 30, 0.85);
    border: 1px solid rgba(244, 114, 182, 0.25);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 20px 40px -15px rgba(244, 114, 182, 0.12);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-btn.active {
    background: rgba(244, 114, 182, 0.25);
    border-color: rgba(244, 114, 182, 0.6);
    color: #ffffff;
}