  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: UKIJTor;
            direction: rtl;
        }

        body {
            font-size: 16px;
        }

        button {
            border: none;
            outline: none;
            cursor: pointer;
        }

        button:active {
            background: none;
            color: #fff;
        }

        .cta-button {
            background-color: #7161ef;
            color: white;
            border-radius: 25px;
            width: 60%;
            height: 50px;
            font-size: 16px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
            margin-top: 80px;
        }

        .cta-button:active {
            transform: translateY(5px);
            box-shadow: 0 2px 0 2px #999;
        }

        .text-animate1 {
            background: -webkit-linear-gradient(135deg, #333 25%, #7161ef 80%, #333);
            -webkit-text-fill-color: transparent;
            -webkit-background-clip: text;
            -webkit-background-size: 200% 100%;
            -webkit-animation: flowCss 12s infinite linear;
            text-align: center;
            font-size: 36px;
            margin: 0 20px;
            padding: 0 20px;
        }

        @-webkit-keyframes flowCss {
            0% { background-position: 0 0; }
            100% { background-position: -400% 0; }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .cta-button {
                width: 80%;
            }
            .text-animate1 {
                font-size: 20px;
            }
        }