:root {
    --bgColorPrimary: #001B51;
    --fontSize: 10px;
    --textColorPrimary: #fff;
    --textColorSecondary: #fdd500;
    --fontFamilyPrimary: 'Titillium Web', sans-serif;
    --fontFamilySecondary: 'Poppins', sans-serif;
}

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

*:focus {
    outline: none;
}

html {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    font-size: var(--fontSize);
    text-rendering: optimizeLegibility;
    height: 100%;
}

body {
    background: var(--bgColorPrimary);
    color: var(--textColorPrimary);
    font-family: var(--fontFamilyPrimary);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.3334;
    margin: 0;
    min-height: 100%;
    overflow-x: hidden;
    position: relative;
}

body::before {
    background: linear-gradient(63.18deg, #001B51 0%, rgba(0, 27, 81, 0.4) 100%), url('./images/layout/bg.webp') no-repeat 0 0 / 100% 100%;
    bottom: 0;
    content: '';
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: -1;
}

ol, ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

b, strong {
    font-weight: 700;
}

p {
    margin: 8px 0;
}

a {
    color: var(--textColorPrimary);
    text-decoration: none;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
}

input,
select {
    appearance: none;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0px);
    }
    100% {
        transform: translateX(calc(-101px * 11));
    }
}

.main-header {
    background: var(--bgColorPrimary);
    left: 0;
    padding: 12px 12px 12px 16px;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1;
}

.main-header-wrapper {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1120px;
}


.brand-logotype {
    position: relative;
    height: 32px;
}

.brand-logotype span {
    overflow: hidden;
    text-indent: 101%;
    white-space: nowrap;
    position: absolute;
}

.brand-logotype svg {
    height: 32px;
    width: 132px;
}

.whatsapp-button {
    align-items: center;
    background: #1CA529 linear-gradient(89.81deg, #15BA12 0.13%, #1CA529 99.81%) no-repeat;
    border-radius: 8px;
    display: flex;
    font-family: var(--fontFamilySecondary);
    font-size: 1.2rem;
    font-weight: 800;
    gap: 4px;
    height: 40px;
    justify-content: flex-start;
    letter-spacing: 0.01rem;
    line-height: 1;
    overflow: hidden;
    padding: 10px 12px;
    position: relative;
    text-transform: capitalize;
    z-index: 0;
}

.whatsapp-button::before {
    background: #1CA529 linear-gradient(89.81deg, #1CA529 0.13%, #15BA12 99.81%) no-repeat;
    bottom: 0;
    content: '';
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity .3s ease;
    z-index: -1;
}

.whatsapp-button:hover::before {
    opacity: 1;
}

.whatsapp-button img {
    filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.32));
    height: 20px;
    width: 20px;
}

.main-content {
    margin: 0 auto;
    max-width: 1120px;
    padding: 64px 0 36px;
}

.main-article {
    font-family: var(--fontFamilyPrimary);
    margin: 0 auto;
    max-width: 568px;
    padding: 0 28px;
    text-align: center;
}

.main-article::before {
    background: url('./images/layout/blur-mobile.png') no-repeat 0 0 / 100% 100%;
    content: '';
    inset: 0;
    position: absolute;
    z-index: -1;
}

.main-article p {
    animation: fadeIn .5s ease-in-out;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.02rem;
    line-height: 1.25;
    margin: 18px 0;
}

.main-headline {
    animation: fadeIn .5s ease-in-out;
    color: var(--textColorSecondary);
    font-family: var(--fontFamilySecondary);
    font-size: 2.4rem;
    font-weight: 800;
    margin: 16px 0 0;
}

.main-headline-wrapper .main-headline-desc:last-of-type {
    margin-top: -6px;
}

.main-headline-desc {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-image: linear-gradient(251.39deg, #05FF00 21.29%, #FFD600 80.7%);
    display: block;
    line-height: 1.25;
    position: relative;
}

.main-headline-title {
    display: block;
    font-size: 3.6rem;
    line-height: 1;
    margin-top: 14px;
}

.content-button {
    animation: fadeIn .5s ease-in-out;
    background: linear-gradient(90deg, #773DFF 0%, #9601F0 100%);
    border-radius: 8px;
    box-shadow: 0px 8px 40px rgba(50, 15, 108, 0.56);
    display: block;
    font-family: var(--fontFamilySecondary);
    font-size: 1.4rem;
    font-weight: 800;
    height: 44px;
    letter-spacing: 0.015rem;
    line-height: 1.2857;
    margin: 36px auto 0;
    overflow: hidden;
    padding: 12px 16px 14px;
    position: relative;
    transition: background 1s ease;
    width: fit-content;
    z-index: 0;
}

.content-button::before {
    background: linear-gradient(90deg, #9601F0 0%, #773DFF 100%);
    bottom: 0;
    content: '';
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity .3s ease;
    z-index: -1;
}

.content-button:hover::before {
    opacity: 1;
}


.hightlight {
    -webkit-text-fill-color: #05FF00;
    color: #05FF00;
    display: inline-block;
    position: relative;
}

.hightlight::after {
    content: '';
    background: url('./images/highlight.svg') no-repeat center center / auto 100%;
    position: absolute;
    width: 48px;
    height: 38px;
    top: -6px;
    left: -9px;
}

.article-picture {
    display: block;
}

.article-picture img {
    display: block;
    height: auto;
    left: -26px;
    margin: 0 auto;
    position: relative;
    max-width: 375px;
    width: 100%;
}

.main-article-footer {
    margin-top: 36px;
}

.main-article-footer img {
    display: block;
    height: auto;
    margin: 0 auto;
    width: 200px;
}

.logotype-carousel {
    display: flex;
    flex-flow: row wrap;
    gap: 18px 0;
    justify-content: center;
    margin: 64px auto 22px;
    max-width: 568px;
}

.operator-logotype {
    background-position: center center;
    background-repeat: no-repeat;
    height: 31px;
    width: 102px;
    background-size: 100% 100%;
}

.logotype-starsports {
    background-image: url('./images/operators/starsports.svg');
    background-position: left center;
}

.logotype-nebet {
    background-image: url('./images/operators/ne-bet.svg');
}

.logotype-mcbookie {
    background-image: url('./images/operators/mcbookie.svg');
}

.logotype-vickers {
    background-image: url('./images/operators/vickers.svg');
}

.logotype-rhino {
    background-image: url('./images/operators/rhino.svg');
}

.logotype-betzone {
    background-image: url('./images/operators/betzone.svg');
}

.logotype-planetsportbet {
    background-image: url('./images/operators/planetsportbet.svg');
}

.logotype-bresbet {
    background-image: url('./images/operators/bresbet.svg');
}

.logotype-swiftyglobal {
    background-image: url('./images/operators/swiftyglobal.svg');
}

.logotype-akbets {
    background-image: url('./images/operators/akbets.svg');
}

.logotype-yeeehaaa {
    background-image: url('./images/operators/yeeehaaa.svg');
}

.main-footer {
    margin: 0 auto;
    padding: 0 60px;
    text-align: center;
}

.main-footer p {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3334;
    margin: 24px 0;
}

.flags-wrapper {
    display: flex;
    flex-flow: row wrap;
    gap: 12px 8px;
    justify-content: center;
}

.flags-wrapper img {
    display: block;
    height: 32px;
    width: 42px;
}

.carousel-desktop {
    display: none;
}

.logotype-carousel-track {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 12px 0;
}

@media screen and (min-width: 1024px) {
    body {
        align-items: center;
        display: flex;
        flex-flow: column nowrap;
        justify-content: center;
    }
    .main-header {
        background: transparent;
    }
    .floating {
        background: var(--bgColorPrimary);
    }
    .main-article {
        display: flex;
        flex-flow: row nowrap;
        max-width: 100%;
        text-align: left;
    }
    .main-article::before {
        background: url('./images/layout/blur-desktop.png') no-repeat 0 0 / 100% 100%;
    }
    .main-headline {
        margin: 132px 0 0;
    }
    .main-headline-desc {
        background-image: linear-gradient(200deg, #05FF00 30%, #FFD600 90%);
    }
    .content-button {
        margin-left: 0;
    }
    .hightlight {
        -webkit-text-fill-color: #7aec00;
        color: #7aec00;
    }
    .article-picture {
        order: 1;
        margin-top: 70px;
    }
    .left-container {
        max-width: 520px;
    }
    .main-article-footer {
        margin-top: 46px;
    }
    .main-article-footer img {
        margin: 0;
    }
    .main-article p {
        font-size: 2rem;
        line-height: 1.4;
    }
    .main-article-footer img {
        width: 327px;
    }
    .main-footer {
        margin: 0;
        padding: 0 28px;
        text-align: left;
    }
    .main-footer p {
        font-size: 1.4rem;
        line-height: 1.2857;
    }
    .flags-wrapper {
        justify-content: flex-start;
        gap: 24px;
    }
    .logotype-carousel {
        justify-content: flex-start;
        margin: 108px 28px 24px;
        max-width: 100%;
        overflow: hidden;
    }
    .logotype-carousel-track {
        animation: scroll 20s linear infinite;
        flex-wrap: nowrap;
        gap: 0;
        height: 32px;
        width: calc(101px * 22);
    }
    .carousel-desktop {
        display: contents;
    }
}

@media screen and (min-width: 1440px) {
    .main-header {
        padding: 40px 0;
    }
    .brand-logotype {
        height: 56px;
    }
    .brand-logotype svg {
        height: 56px;
        width: 230px;
    }
    .whatsapp-button {
        font-size: 1.6rem;
        gap: 8px;
        height: 56px;
        letter-spacing: 0.015rem;
        line-height: 1.25;
        padding: 12px 16px;
    }
    .whatsapp-button img {
        height: 32px;
        width: 32px;
    }
    .main-content {
        padding-top: 136px;
    }
    .main-headline {
        font-size: 4rem;
        line-height: 1.05;
        margin-top: 126px;
    }
    .main-headline-title {
        font-size: 6.4rem;
        margin-top: 10px;
    }
    .hightlight::after {
        height: 67px;
        left: -13px;
        top: -9px;
        width: 80px;
    }
    .content-button {
        font-size: 1.6rem;
        line-height: 1.25;
        margin-top: 32px;
    }
    .left-container {
        max-width: 660px;
    }
    .article-picture {
        margin-top: 24px;
    }
    .article-picture img {
        left: 20px;
        max-width: 470px;
    }
    .main-article {
        padding: 0;
    }
    .main-article::before {
        right: -130px;
    }
    .main-article p {
        margin: 22px 0;
    }
    .main-article-footer {
        margin-top: 56px;
    }
    .logotype-carousel {
        margin: 46px 0 24px;;
    }
    .main-footer {
        padding: 0;
    }
}


@media screen and (min-width: 1920px) {
    .main-article::before {
        right: -50px;
    }
}
