    @import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&display=swap');


    :root {
        --main-font: 'Inter', sans-serif;
    }

    * {
        margin-block: 0px;
        box-sizing: border-box;
    }

    html {
        font-family: var(--main-font);
        font-size: 16px;
        line-height: 1.5;
        color: white;
        background: #0B0218;
        background: linear-gradient(180deg, #0b0119, #03033e);

    }

    body {
        display: flex;
    }

    .landing-container {
        width: 100%;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        padding: 30px;
    }

    .title-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .main-title {
        /* Gradient text */
        background: linear-gradient(90deg, #ff00b9 0%, #ffc600 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 5rem;
        font-weight: 800;
    }

    .subtitle {
        font-size: 2rem;
        font-weight: 400;
        margin-top: 10px;
        text-align: center;
        max-width: 650px;
    }

    .cta-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .main-cta {
        background: #f62f17;
        border: none;
        border-radius: 100px;
        padding: 10px 20px;
        font-size: 1.4rem;
        font-weight: 600;
        color: white;
        cursor: pointer;
    }

    .cta-text {
        /* Italic */
        font-style: italic;
        margin-top: 1rem;
        font-size: 1.3rem;
    }

    .bottom-text {
        text-align: center;
        max-width: 650px;
    }

    .bottom-text>a {
        color: #A3E9FF;
    }

    /* MOBILE */
    @media only screen and (max-width: 600px) {
        .landing-container {
            padding: 30px;
        }

        .main-title {
            font-size: 3.5rem;
        }

        .subtitle {
            font-size: 1.5rem;
        }

        .main-cta {
            font-size: 1.2rem;
        }

        .cta-text {
            font-size: 1.1rem;
        }

        .bottom-text {
            font-size: 1.1rem;
        }
    }