body {
    background-color: #000000;
    color: #fff;

    height: var(--app-height, 100vh);
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    font-family: "Chakra Petch", serif;
    font-weight: 700;
    font-style: normal;

    overflow: hidden !important;
}

*, *::before, *::after {
    box-sizing: inherit;
}

.jackbot__title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;

    margin-top: 32px;
}

.jackbot__img-bg {
    object-fit: cover;
    position: absolute;
    top: 0;
    left: -70px;
    height: 100%;
    width: calc(100% + 70px);

    pointer-events: none;
    z-index: -1;
}

#app {
    max-width: 330px;
    min-height: 80px;
}

#app-mobile {
    max-width: 200px;
    min-height: 50px;
}

.jackbot__message-box-text {
    color: black;
    font-size: 12px;
    max-width: 188px;


    margin: 0 auto;
    letter-spacing: 0.1px;

    position: absolute;
    top: 40px;
    left: 40px;
}

.jackbot__message-box-text--second-line {
    top: 55px;
    max-width: 74px;
    width: 0;
}

.jackbot__message-box--mobile {
    position: fixed;
    top: calc(50% - 150px);
    left: calc(50% + 76px);
    transform: translate(-50%, -50%);
}

.jackbot__message-box--desktop {
    position: fixed;
    top: calc(50% - 150px);
    left: calc(50% + 360px);
    transform: translate(-50%, -50%);

    display: none;
}

.jackbot__title {
    width: 231px;
    height: 34px;
}

.jackbot__footer-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;

    margin-bottom: 20px;
}

.jackbot__buttons-wrapper {
    display: flex;
    gap: 32px;

    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 0.8px;
}

.jackbot__button {
    cursor: pointer;
}

.jackbot__socials-wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
}

.jackbot__social {
    cursor: pointer;
}

@media (min-width: 1280px) {
    .jackbot__title-wrapper {
        margin-top: 50px;
    }

    .jackbot__img-bg {
        left: 0;
        width: 100%;
    }

    .jackbot__title {
        width: 394px;
        height: 58px;
    }

    .jackbot__message-box--mobile {
        display: none;
    }

    .jackbot__message-box--desktop {
        display: unset;
    }

    .jackbot__message-box-text {
        font-size: 20px;
        max-width: 310px;
        top: 70px;
        left: 50px;
    }

    .jackbot__message-box-text--second-line {
        max-width: 120px;
        top: 95px;
    }

    .jackbot__footer-wrapper {
        margin-bottom: 24px;
        gap: 32px;
    }

    .jackbot__buttons-wrapper {
        gap: 92px;
        font-size: 24px;
    }
}

@media (min-width: 1440px) {
    .jackbot__title-wrapper {
        margin-top: 60px;
    }

    .jackbot__footer-wrapper {
        margin-bottom: 40px;
        font-size: 24px;
        gap: 40;
    }
}

@media (min-width: 1920px) {
    .jackbot__title-wrapper {
        margin-top: 60px;
    }

    .jackbot__footer-wrapper {
        margin-bottom: 50px;
    }

    .jackbot__message-box--desktop {
        left: calc(50% + 330px);
    }
}

@media (min-width: 2560px) {
    .jackbot__message-box--desktop {
        top: calc(50% - 250px);
        left: calc(50% + 400px);
    }
}

@media (min-width: 3440px) {
    .jackbot__title-wrapper {
        margin-top: 100px;
    }

    .jackbot__footer-wrapper {
        margin-bottom: 0px;
    }
}