        :root {
            --bg: #ffffff;
            --yellow: #FFD700;
            --red: #FF4757;
            --green: #2ED573;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'ClashDisplay-Regular';
            color: #363636;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--bg);
            position: relative;
            overflow: hidden;
        }

        body::before,
        body::after {
            position: absolute;
            left: 0;
            top: 0;
            content: '';
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.7;
        }

        body::before {
            filter: url(#noiseFilter);
        }

        .blob-cont {
            position: fixed;
            top: 45%;
            left: 45%;
            transform: translate(-50%, -50%);
            z-index: -2;
            height: 700px;
            width: 700px;
        }

        .blob {
            border-radius: 100px;
            filter: blur(60px);
        }

        .yellow {
            background: linear-gradient(135deg, #FFD700, #FFA500);
            position: absolute;
            top: 200px;
            left: 100px;
            height: 300px;
            width: 300px;
            animation: yellow 8s infinite ease;
        }

        .green {
            background: linear-gradient(135deg, #2ED573, #00D2D3);
            position: absolute;
            top: 80px;
            right: -20px;
            height: 300px;
            width: 350px;
            animation: green 8s infinite ease;
        }

        .red {
            background: linear-gradient(135deg, #FF4757, #FF6B7A);
            position: absolute;
            right: 0;
            top: 300px;
            height: 250px;
            width: 300px;
            animation: red 8s infinite linear;
        }

        @keyframes yellow {
            0% {
                top: 200px;
                left: 100px;
                transform: scale(1);
            }

            30% {
                top: 300px;
                left: 150px;
                transform: scale(1.2);
            }

            60% {
                top: 100px;
                left: 200px;
                transform: scale(1.3);
            }

            100% {
                top: 200px;
                left: 100px;
                transform: scale(1);
            }
        }

        @keyframes green {
            0% {
                top: 80px;
                right: -20px;
                transform: scale(1.2);
            }

            30% {
                top: 300px;
                right: -20px;
                transform: scale(1);
            }

            60% {
                top: 200px;
                right: 100px;
                transform: scale(1);
            }

            100% {
                top: 80px;
                right: -20px;
                transform: scale(1.2);
            }
        }

        @keyframes red {
            0% {
                top: 250px;
                right: 0px;
                transform: scale(1);
            }

            30% {
                top: 150px;
                right: 150px;
                transform: scale(1.4);
            }

            60% {
                top: 250px;
                right: 100px;
                transform: scale(1);
            }

            100% {
                top: 250px;
                right: 0px;
                transform: scale(1);
            }
        }

        @keyframes gentleRotate {
            0% {
                transform: rotate(-10deg);
            }

            100% {
                transform: rotate(10deg);
            }
        }

        .container {
            text-align: center;
            max-width: 600px;
            width: 100%;
            margin: 0 auto;
            position: relative;
        }

        .logo {
            width: 100%;
            height: auto;
            display: block;
            animation: gentleRotate 8.5s ease-in-out infinite alternate;
            filter:
                drop-shadow(30px 24px 80px rgba(0, 0, 0, 0.12)) drop-shadow(0 2px 40px rgba(0, 0, 0, 0.05));
        }

        h1,
        h2 {
            mix-blend-mode: luminosity;
            position: relative;
            z-index: 999;
        }

        h1 {
            font-family: 'ClashDisplay-Bold';
            font-size: 75px;
            margin-top: -120px;
            letter-spacing: 0.03em;
        }

        h2 {
            font-family: 'ClashDisplay-Regular';
            margin-top: -15px;
            font-size: 29px;
            margin-bottom: 16px;
            letter-spacing: 0.11em;
        }

        .subtitle {
            font-size: 25px;
            color: #363636;
            position: relative;
            letter-spacing: 0.11em;
        }

        .emrev {
            unicode-bidi: bidi-override;
            direction: rtl;
        }

        @media (max-width: 768px) {
            .container {
                padding: 30px 20px;
                max-width: 70%;
                width: 100%;
                margin: 0 auto;
                position: relative;
            }

            h1 {
                font-size: 70px;
            }

            h2 {
                font-size: 28px;
            }

            .subtitle {
                font-size: 22px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 30px 20px;
                max-width: 100%;
                width: 100%;
                margin: 0 auto;
                position: relative;
            }

            h1 {
                font-size: 55px;
                margin-top: -90px;
            }

            h2 {
                font-size: 23px;
                margin-top: -10px;
            }

            .subtitle {
                font-size: 20px;
            }
        }

        @media (max-width: 380px) {
            .container {
                padding: 30px 20px;
                max-width: 100%;
                width: 100%;
                margin: 0 auto;
                position: relative;
            }

            h1 {
                font-size: 43px;
                margin-top: -70px;
            }

            h2 {
                font-size: 18px;
                margin-top: -8px;
            }

            .subtitle {
                font-size: 16px;
            }
        }