html,
body {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5, 
h6,
p {
    padding: 0;
    margin: 0;
}

li.follow__text {
    padding-left: 11px;
}

img,svg {
    display: block;
}

body {
    font-family: "Sofia Sans", sans-serif;
    font-style: normal;
    line-height: normal;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
    background: #14141A;
}

.container {
    width: auto;
    height: auto;
    padding-top: 0;
    padding-right: 16px;
    padding-bottom: 46px;
    padding-left: 16px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.promotions__wrapper {
    position: relative;
    display: flex; 
    height: 100%;
    flex-direction: column;
    align-items: center;
}

.app-bundle__wrapper {
    padding: 16px;
}

.app-bundle__img {
    width: 231px;
    height: 231px;
}

.app-bundle__text {
    display: none;
    margin-bottom: 8px;
    font-size: clamp(24px, 1.25vw + 8px, 32px);
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

.app-bundle__logo {
    display: none;
    width: clamp(200px, 18.78vw, 361px);
    height: auto;
    margin: 0 auto;
}

.main-content__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
    align-items: flex-start;
}

.main-content__tittle {
    font-size: 20px;
    font-weight: 900;
    text-align: center;
    box-sizing: content-box;
}

.follow {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    background-image: url('/img/png/sportguy@3x.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 0% 10%;
}

.follow__items {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 42px;
}

.follow__text {
    padding-left: 28px;
    font-size: 16px;
}

.follow__text--yellow {
    position: relative;
    color: #E5FF3A;
}

.follow__svg {
    position: absolute;
    top: 3.5px;
    left: 2px;
}

.follow__list {
    margin-top: 0;
    margin-bottom: 0;
}

.follow__qr {
    width: 100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.follow__qr-img {
    width: 100px;
    height: 100px;
}

.follow__qr-btn {
    display: flex;
    height: 36px;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    align-self: stretch;
    border-radius: 6px;
    border: 1px solid #E5FF3A;
    background: #E5FF3A;
    cursor: pointer;
}

.follow__qr-text {
    display: flex;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    align-self: stretch;
    border-radius: 6px;
    border: 1px solid #E5FF3A;
    background: #E5FF3A;
    cursor: pointer;
    color: #000036;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-transform: uppercase;
}

.follow__qr-text:hover {
    background: #d1ec26;
    border: 1px solid #d1ec26;
}

.promotions__annotation-text {
    font-size: 15px;
}

/* Десктопные стили */
@media (min-width: 1024px) {
    /* Контейнер */
    .container {
        margin-left: 56px;
        padding-left: 0;
    }

    /* Основной wrapper */
    .promotions__wrapper {
        display: grid;
        grid-template-columns: 3fr 2fr;
        min-height: 100vh;
    }

    .promotions {
        margin-top: 20px;
    }
    
    .app-bundle__wrapper {
        position: sticky;
        width: 100%;
        height: 100vh;
        overflow: hidden;
        top: 0;
        grid-column: 2;
        justify-self: center;
    }

    .sticky-wrapper {
        position: relative;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 617px;
        aspect-ratio: 617 / 737;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .main-content__wrapper {
        grid-column: 1;
        grid-row: 1;
        
        background-image: url('/img/png/sportguy_desctop@x3.png');
        background-repeat: no-repeat;
        background-size: contain;
        background-position: 0% 10%;
    }
    
    .follow {
        background: none;
    }

    .follow__items {
        flex-direction: row;
        justify-content: space-between;
        gap: 50px;
    }
    
    .follow__qr {
        margin: 0;
    }
    
    .app-bundle__img {
        width: clamp(400px, 32.14vw, 617px);
        height: auto;
        margin-bottom: 14px;
    }

    .app-bundle__text {
        display: block;
    }

    .app-bundle__logo {
        display: block;
    }

    .promotions__annotation-text {
        font-size: 16px;
    }
}

@media (min-width: 360px) and (max-width: 560px) {
    .app-bundle__img {
        width: 65vw;
        height: 65vw;
    }
    
    .follow__qr {
        width: 25vw;
        min-width: 100px;
    }
    
    .follow__qr-img {
        width: 100%;
        height: 100%;
    }
}

@media (min-width: 1440px) {
    .follow__items {
        gap: clamp(50px, calc(-550px + 41.6667vw), 250px);
    }
}