
        .footer_tip {
            cursor: pointer;
        }

        @media only screen and (max-width: 768px) {
            #url {
                left: 0px !important;
                margin-left: 0px !important;
                width: 100% !important;
                padding: 0px 6vw !important;
            }

            #bottom {
                text-align: center !important
            }

            #bottom_font {
                font-size: 24px !important;
                line-height: 24px !important;
                width: 100% !important;
                margin-top: 0px !important
            }
        }

        html {
            scroll-behavior: smooth;
        }

        #bottom {
            padding: 0;
            text-align: left;
        }

        #bottom_font {
            width: 60%;
            font-size: 80px;
            line-height: 100px;
            margin-top: -70px;
        }

        #url {
            display: none;
            position: fixed;
            bottom: 170px;
            left: 70%;
            margin-left: -220px;
        }

        .gradient-bg {
            background: linear-gradient(135deg, #ec4899 0%, #ef4444 50%, #dc2626 100%);
        }

        .gradient-pink-purple {
            background: linear-gradient(135deg, #ec4899 0%, #a855f7 100%);
        }

        .gradient-purple-pink {
            background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
        }

        .gradient-pink-red {
            background: linear-gradient(135deg, #ec4899 0%, #ef4444 100%);
        }

        .gradient-text {
            background: linear-gradient(135deg, #ec4899 0%, #a855f7 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .accordion-content.open {
            max-height: 200px;
        }

        .accordion-trigger::after {
            content: '+';
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .accordion-trigger.open::after {
            transform: rotate(45deg);
        }