
        html, body {
            overflow-x: clip;
        }

        .material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48;
        }

        .animate-pulse-subtle {
            animation: pulse-subtle 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }

        @keyframes pulse-subtle {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.95;
                transform: scale(0.98);
            }
        }

        @keyframes bulbBounce {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            25% {
                transform: translateY(-4px) rotate(-8deg);
            }

            75% {
                transform: translateY(-4px) rotate(8deg);
            }
        }

        .did-you-know-icon {
            display: inline-block;
            animation: bulbBounce 1.8s ease-in-out infinite;
        }

        @keyframes germ-roll {
            0% {
                left: 0;
                transform: rotate(0deg);
            }

            100% {
                left: calc(100% - 60px);
                transform: rotate(720deg);
            }
        }

        .germ-roll {
            position: absolute;
            animation: germ-roll 4s linear infinite alternate;
        }

        @keyframes droplet {
            0% {
                transform: translateY(-10px);
                opacity: 0;
            }

            10% {
                opacity: 1;
            }

            80% {
                transform: translateY(140px);
                opacity: 1;
            }

            100% {
                transform: translateY(160px);
                opacity: 0;
            }
        }

        .animate-droplet {
            animation: droplet 2.5s linear infinite;
        }

        @keyframes pulseCTA {
            0% {
                transform: scale(1);
                box-shadow: 0 0 0 rgba(34, 197, 94, 0.45);
            }

            50% {
                transform: scale(1.05);
                box-shadow: 0 0 25px rgba(34, 197, 94, 0.5);
            }

            100% {
                transform: scale(1);
                box-shadow: 0 0 0 rgba(34, 197, 94, 0);
            }
        }

        .mobile-cta {
            animation: pulseCTA 1.8s ease-in-out infinite;
        }

        @keyframes ctaPulse {
            0% {
                transform: scale(1);
                box-shadow: 0 8px 20px rgba(22, 163, 74, 0.35);
            }

            50% {
                transform: scale(1.08);
                box-shadow: 0 12px 35px rgba(22, 163, 74, 0.6);
            }

            100% {
                transform: scale(1);
                box-shadow: 0 8px 20px rgba(22, 163, 74, 0.35);
            }
        }

        .pulse-cta {
            animation: ctaPulse 1.8s ease-in-out infinite;
        }

        @media (max-width:624px) {
            .remain-btn {
                font-size: 20px !important;
            }
        }

        @media (max-width:600px) {
            .img-set {
                bottom: 10px !important;
                left: 10px !important;
            }

            .img-set-gap {
                padding: 8px 14px !important;
            }

            img-set-font {
                font-size: 13px !important;
            }
        }

        @media (max-width:552px) {
            .remain-btn {
                font-size: 15px !important;
            }

            .remain-button {
                padding: 12px 16px !important;
            }
        }

        @media (max-width:476px) {
            .remain-btn {
                font-size: 12px !important;
            }

            .remain-button {
                padding: 8px !important;
            }

            .img-set {
                position: relative !important;
                bottom: 0 !important;
                left: 0 !important;
                width: 55% !important;
            }

            .img-set-font {
                font-size: 12px !important;
            }
        }

        @media (max-width:390px) {
            .remain-btn {
                font-size: 11px !important;
            }

            .remain-button {
                margin-bottom: 15px !important;
                flex-direction: column !important;
                gap: 0 !important;
                line-height: 1 !important;
                padding: 8px !important;
            }

            .img-set-font {
                font-size: 12px !important;
            }

            .img-set {
                width: 100% !important;
            }
        }
   