* {
    font-family: "Manrope", sans-serif;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}
.container {
    max-width: 1040px;
    padding-left: 25px;
    padding-right: 25px;
    margin: 0 auto;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: black;
    background-image: radial-gradient(circle at calc(15% - 40px) calc(65% + 50px),
    rgba(4, 0, 203, 0.5) 1%, transparent calc(15% + 10vw)),
    radial-gradient(circle at calc(90% + 0px) calc(10% + 0px),
        rgba(134, 0, 113, 0.5) 1%, transparent calc(15% + 10vw));
    background-repeat: no-repeat;
    margin: 0;
}
.header {
    box-shadow: 0 4px 4px 0 #00000008;
    display: flex;
    color: #FFFFFF;
}
.header__container {
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    row-gap: 10px;
}
.header__text {
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
}
.main {
    width: 100%;
    margin: auto;
}
.footer {
    padding-bottom: 40px;
    width: 100%;
}
.main__content {
    background: linear-gradient(90deg, #0300BC 0%, #7E0076 100%);
    padding: 54px 62px 48px;
    display: flex;
    gap: 30px;
    align-items: center;
    border-radius: 20px;
    margin-bottom: 60px;
    flex-direction: column;
    text-align: center;
}
.main__text {
    font-size: 24px;
    font-weight: 534;
    line-height: 34px;
    text-align: center;
    color: #FAFAFA;
    max-width: 760px;
}
.main__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}
.main__buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.main__explore-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    min-width: 234px;
    padding: 0 24px;
    border-radius: 16px;
    background: linear-gradient(135deg, #9c8cff 0%, #7b6dff 45%, #cf6dff 100%);
    color: #FAFAFA;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.1;
    white-space: nowrap;
    box-shadow: 0 18px 34px rgba(110, 92, 255, 0.28);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.main__explore-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 38px rgba(110, 92, 255, 0.34);
}
.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px 60px;
    margin: 0 auto;
}
.footer__bottom__link {
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
    text-align: center;
    color: #FAFAFA;
}

@media screen and (max-width: 1000px) {
    .header__container {
        padding-top: 15px;
        padding-bottom: 15px;
        flex-wrap: wrap;
    }
    .footer {
        padding-bottom: 40px;
    }
    .main__content {
    }
}

@media screen and (max-width: 790px) {
    .footer__bottom {
        flex-direction: column;
    }
    .header__container {
        align-items: center;
        justify-content: space-between;
    }
    .main__content {
        padding: 46px 34px 42px;
        gap: 26px;
    }

    .main__buttons {
        justify-content: center;
    }
}
@media screen and (max-width: 670px) {
    .header__container {
        justify-content: center;
        flex-direction: column;
    }
}
@media screen and (max-width: 550px) {
    .header__logo {
        max-width: 123px;
    }
    .header__text {
        font-size: 16px;
        text-align: center;
    }
    .main__text {
        font-size: 24px;
        font-weight: 900;
        line-height: 31px;
    }

    .main__content {
        padding: 38px 24px;
        gap: 24px;
    }

    .main__buttons {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .main__buttons > a {
        display: flex;
        justify-content: center;
        width: min(100%, 180px);
    }

    .main__buttons img {
        width: auto;
        max-width: 100%;
        height: auto;
    }

    .main__explore-button {
        box-sizing: border-box;
        width: min(100%, 438px);
        min-width: 0;
        min-height: 48px;
        padding: 0 18px;
        font-size: 15px;
        margin: 0 auto;
    }
}
