body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 50%, #fecdd3 100%);
    min-height: 100vh;
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

/* Scrollbar Kustom */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(244, 63, 94, 0.05);
}

::-webkit-scrollbar-thumb {
    background: rgba(244, 63, 94, 0.3);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(244, 63, 94, 0.5);
}

/* Animasi Surat Melayang */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

.floating-heart {
    position: absolute;
    bottom: -50px;
    pointer-events: none;
    animation: float 15s linear infinite;
}
