<!-- start Simple Custom CSS and JS -->
<style type="text/css">
<style>
    body {
        margin: 0;
        padding: 0;
        background-color: none; /* Merah Imlek */
        overflow: hidden;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        font-family: Arial, sans-serif;
    }

    .lampion {
        position: absolute;
        bottom: -10%; /* Mulai dari bawah layar */
        width: 50px;
        height: 60px;
        background-color: #ff0000; /* Kuning emas */
        border-radius: 50% 50% 40% 40%;
        box-shadow: 
            inset -10px -10px 10px rgba(255, 100, 0, 0.5),
            0 0 20px rgba(255, 200, 0, 0.8);
        animation: terbang linear infinite;
    }

    /* aloha lampion */
    .lampion::after {
        content: '';
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: 20px;
        background-color: #000000;
        border-radius: 2px;
    }

    @keyframes terbang {
        0% { transform: translateY(0) scale(1); opacity: 0; }
        10% { opacity: 1; }
        90% { opacity: 0.5; }
        100% { transform: translateY(-110vh) scale(0.5); opacity: 0; }
    }
</style></style>
<!-- end Simple Custom CSS and JS -->
