section {
    font-family: 'Inter', sans-serif;
}

.top-content-section {
    .content-container {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center; 
        padding-top: 280px;
        margin-bottom: 734px;

        .text {
            position: relative;
            z-index: 1;
            color: rgba(22, 4, 63, 1);
            font-weight: 500;
            font-size: clamp(24px, 3.5vw, 48px);
            line-height: clamp(30px, 4.5vw, 61px);
            letter-spacing: -6%;
            margin-bottom: 73px;
        }
        .return-btn {
            position: relative;
            z-index: 1;
            color: rgba(22, 4, 63, 1);
            width: 708px;
            height: 78px;
            text-align: center;
            align-self: center;
            align-content: center;
            background: rgba(241, 241, 241, 0.32);
            border: 1px solid rgba(149, 149, 149, 1);
            border-radius: 10px;
            backdrop-filter: blur(4px);
            transition: all 100ms ease-out;

            font-weight: 500;
            font-size: clamp(18px, 2.5vw, 32px);
            line-height: clamp(28px, 3.5vw, 49px);
            letter-spacing: -6%;
            text-decoration: none;

            &:hover {
                color: rgba(255, 255, 255, 1);
                background: rgba(68, 101, 255, 1);
                border: 2px solid rgba(116, 141, 206, 1);
                backdrop-filter: blur(47.55px)
            }
        }
        .blur-1 {
            position: absolute;
            width: 520px;
            height: 519px;
            background: rgba(107, 217, 255, 1);
            border-radius: 50%;
            filter: blur(100px);
            top: 546px;
            right: -294px;
            z-index: -1;
        }
        .blur-2 {
            position: absolute;
            width: 520px;
            height: 563px;
            background: rgba(151, 122, 255, 1);
            border-radius: 50%;
            filter: blur(100px);
            top: -296px;
            left: -147px;
        }
        .blur-3 {
            position: absolute;
            width: 616px;
            height: 616px;
            background: rgba(151, 122, 255, 1);
            border-radius: 50%;
            filter: blur(100px);
            top: 671px;
            right: 46px;
            z-index: -1;
        }
    }
}

@media (max-width: 768px) {

    .top-content-section {
        .content-container {
            padding: 50px 20px 0;
            margin-bottom: 200px;
            text-align: left;

            h1 {
                position: relative;
                z-index: 2;
                color: rgba(3, 1, 41, 1);
                font-size: clamp(32px, 8.33vw, 64px);
                font-weight: 600;
                line-height: 34px;
                letter-spacing: -6%;
                margin-bottom: 57px;
            }
            .text {
                font-size: clamp(20px, 4.69vw, 36px);
                font-weight: 500;
                line-height: 1.2;
                letter-spacing: -6%;
                margin-bottom: 155px;
            }
            .return-btn {
                color: rgba(255, 255, 255, 1);
                width: 372px;
                height: 53px;
                background: rgba(68, 101, 255, 1);
                border: 1px solid rgba(116, 141, 206, 1);
                backdrop-filter: blur(47.55px);
                font-size: 20px;
                line-height: 49px;

                &:hover {
                    color: rgba(255, 255, 255, 1);
                    background: rgba(68, 101, 255, 1);
                    border: 1px solid rgba(116, 141, 206, 1);
                    backdrop-filter: blur(47.55px)
                }
            }
            .blur-1 { width: 161px; height: 161px; right: -110px; top: 324px; filter: blur(50px);}
            .blur-2 { width: 235px; height: 237px; left: -137px;  top: -258px; filter: blur(75px);}
            .blur-3 { width: 136.61px; height: 136.61px; right: -40px;  top: 408px; filter: blur(50px);}
        }
    }
}