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

html {
    height: 100%;
}
 
body {
    height: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    line-height: 32px; 
    min-height: 100%;
    overflow-x: hidden;
    background: #4C1269;
    color: #ffffff;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    height: 100%;
}

.mj7lx1l96-main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
}

/* Header */
.mj7lx1l96-header {
	position: fixed;
	z-index: 99;
	top: 0;
	left: 0;
	right: 0;
	padding: 16px 20px;
    transition: .3s;
    background: #4C1269;
    border-bottom: 2px solid #FFFFFF4D;
}

.mj7lx1l96-header__navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px 36px;
}

.mj7lx1l96-header__box {
	display: flex;
	align-items: center;
	justify-content: space-between;
    gap: 20px 48px;
}

.mj7lx1l96-header__blueprint {
	display: flex;
	align-items: center;
	font-size: 15px;
	line-height: 19px;
	text-transform: uppercase;
}

.mj7lx1l96-header__item {
    position: relative;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
	padding: 2px;
    transition: .3s;
}

.mj7lx1l96-header__item.active {
    color: #FFA939;
}

.mj7lx1l96-header__item:hover {
    color: #FFA939;
}

.mj7lx1l96-burger {
    display: none;
    position: absolute;
    z-index: 8;
    right: 20px;
    width: 22px;
    height: 16px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
}

.mj7lx1l96-burger .mj7lx1l96-lane {
    width: 100%;
    height: 2px;
    border-radius: 10px;
    background: #ffffff;
    transition: transform 0.2s ease-out;
}

.toggle .lane1 {
    background: #ffffff;
    transform: scale(0.9) rotateZ(-44deg) translate(-5px, 2.6px);
}

.toggle .lane2 {
    display: none;
}

.toggle .lane3 {
    background: #ffffff;
    transform: scale(0.9) rotateZ(45deg) translate(-8.7px, -5px);
}


/* Content */
.mj7lx1l96-topic {
    font-family: "Montserrat Alternates", sans-serif;
    font-size: 56px;
    line-height: 66px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    background: #F94E09;
    background: linear-gradient(to top, #F94E09 0%, #FFDD00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(2px 5px 4px rgba(0, 0, 0, 0.8));
}

.mj7lx1l96-subtopic {
    font-family: "Montserrat Alternates", sans-serif;
    font-size: 48px;
    line-height: 58px;
    font-weight: 700;
    margin-bottom: 46px;
    text-align: center;
    background: #F94E09;
    background: linear-gradient(to top, #F94E09 0%, #FFDD00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(2px 5px 4px rgba(0, 0, 0, 0.8));
}

.mj7lx1l96-button {
    font-family: "Montserrat", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    line-height: 38px;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(180deg, #FFDD00 30%, #F94E09 81.73%);
    color: #25003D;
    max-width: 320px;
    width: 100%;
    height: 61px;
    padding: 6px;
    transition: 0.5s;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    user-select: none;
    text-transform: uppercase;
    margin: 40px auto 0;
}

.mj7lx1l96-button:hover {
    box-shadow: 10px 5px 5px #FFA93975;
}


/* welcome */
.mj7lx1l96-welcome {
    position: relative;
    background-image: url(../images/welcome-bg-mj7lx1l96.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: #25003D;
    min-height: 90vh;
    padding: 80px 20px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mj7lx1l96-welcome__block {
    height: 100%;
}

.mj7lx1l96-welcome__block p {
    text-align: center;
    width: 100%;
}

/* Game */
.mj7lx1l96-games {
    background: #25003D;
    padding: 96px 20px;
}

.mj7lx1l96-games__box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 24px 48px;
}

.mj7lx1l96-games__list p + p {
    margin-top: 20px;
}

.mj7lx1l96-games__list p strong {
    font-weight: 700;
}

.mj7lx1l96-games__color {
    color: #FFA939;
}

.mj7lx1l96-games__item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 24px 0;
}

.mj7lx1l96-games__photo {
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 10px 30px 0px #9246B980;
}

.mj7lx1l96-games__photo img {
    width: 100%;
    height: 100%;
}


/* choose */
.mj7lx1l96-choose {
    padding: 96px 20px;
}

.mj7lx1l96-choose .mj7lx1l96-subtopic {
    margin-bottom: 68px;
}

.mj7lx1l96-choose__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 48px 40px;
}

.mj7lx1l96-choose__item {
    background: #FFFFFF1A;
    border: 2px solid #FFFFFF33;
    padding: 0 24px 40px;
    border-radius: 16px;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 20px;
    align-items: center;
    width: 31%;
    text-align: center;
    box-shadow: 0px 8px 25px 0px #0000004D;
    backdrop-filter: blur(10px);
}

.mj7lx1l96-choose__item img {
    margin-top: -24px;
}

.mj7lx1l96-choose__item strong {
    font-family: "Montserrat Alternates", sans-serif;
    font-size: 25px;
    line-height: 30px;
    font-weight: 700;
    color: #FFA939;
}

/* description */
.mj7lx1l96-description {
    background: #25003D;
    padding: 180px 20px 106px;
}

/* Testimonials */

.mj7lx1l96-testimonials {
    padding: 96px 20px;
}

.mj7lx1l96-testimonials .mj7lx1l96-choose__item {
    width: 48%;
    padding: 30px 24px 40px;
}

/* Footer */

.mj7lx1l96-footer {
    border-top: 2px solid #FFFFFF4D;
    position: relative;
    color: #ffffff;
    background: #25003D;
    padding: 62px 20px 24px;
}

.mj7lx1l96-footer__block {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 38px;
}

.mj7lx1l96-footer__list {
    display: flex;
    align-items: center;
    gap: 20px 40px;
}

.mj7lx1l96-footer__item {
    position: relative;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    padding: 2px;
    transition: .3s;
}

.mj7lx1l96-footer__item:hover {
    color: #FFA939;
}

.mj7lx1l96-footer__item.active {
    color: #FFA939;
}

.mj7lx1l96-footer__coperight {
    color: #ffffff;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px 30px;
    border-top: 1px solid #FFFFFF4D;
    padding-top: 20px;
}

.mj7lx1l96-disclaimer__item {
    padding: 18px 32px;
    background: #4C1269;
    border-radius: 12px;
    border: 2px solid #FFA939;
    text-align: center;
    margin-bottom: 38px;
    font-size: 16px;
    line-height: 26px;
}

.mj7lx1l96-disclaimer__warning {
    background: #FFA939;
    border-radius: 10px;
    color: #4C1269;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    padding: 8px 16px;
    display: inline-block;
}

/* Contacts */

.mj7lx1l96-contacts {
    background: #5E2978;
    padding: 160px 20px 80px;
}

.mj7lx1l96-contacts__info {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px 60px;
}

.mj7lx1l96-contacts .mj7lx1l96-subtopic {
    margin-bottom: 80px;
}

.mj7lx1l96-contacts__union {
    position: relative;
    padding-left: 60px;
}

.mj7lx1l96-contacts__union::before {
    content: '';
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 36px;
    height: 36px;
    position: absolute;
    top: 0;
    left: 0;
}

.mj7lx1l96-contacts__union:nth-child(1)::before {
    background-image: url(../images/icons/address-mj7lx1l96.svg);
}

.mj7lx1l96-contacts__union:nth-child(2)::before {
    background-image: url(../images/icons/phone-mj7lx1l96.svg);
}

.mj7lx1l96-contacts__union:nth-child(3)::before {
    background-image: url(../images/icons/email-mj7lx1l96.svg);
}

.mj7lx1l96-contacts__union h3 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 4px;
}

.mj7lx1l96-contacts__union a:hover {
    text-decoration: underline;
}

/* Info */

.mj7lx1l96-information {
    padding: 160px 20px 120px;
    background: #5E2978;
}

.mj7lx1l96-information h1 {
    font-family: "Montserrat Alternates", sans-serif;
    position: relative;
    z-index: 2;
    font-size: 48px;
    line-height: 58px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    background: #F94E09;
    background: linear-gradient(to top, #F94E09 0%, #FFDD00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(2px 5px 4px rgba(0, 0, 0, 0.8));
}

.mj7lx1l96-information h2 {
    font-size: 30px;
    line-height: 38px;
    font-weight: 700;
    margin-bottom: 30px;
}

.mj7lx1l96-information h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.mj7lx1l96-information p {
    margin-bottom: 20px;
}

.mj7lx1l96-information ul {
    list-style-type: disc;
    padding-left: 24px;
}

.mj7lx1l96-information li {
    margin-bottom: 14px;
}

.mj7lx1l96-information a {
    display: inline-block;
    color: #FFA939;
    font-weight: 700;
}


/* Game */
body.is-visible {
    overflow: hidden;
}

#tss076330-game--container {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    position: absolute !important;
    z-index: 9999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0;
    padding: 0 20px;
    width: 100%;
    background: rgb(37 0 61 / 80%);
}

body.is-visible #tss076330-game--container {
    opacity: 1;
    visibility: visible;
}

.tss076330-game--close {
    width: 32px;
    height: 32px;
    position: absolute;
    z-index: 10;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    margin-top: 20px;
    cursor: pointer;
}

.tss076330-game--close img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tss076330-game--canvas canvas {
    outline: none;
}



@media (max-width: 1060px) {
    .mj7lx1l96-header {
        padding: 14px 20px;
    }

    .mj7lx1l96-burger {
        display: flex;
    }

    .mj7lx1l96-button {
        font-size: 22px;
        line-height: 30px;
        height: 54px;
    }

    .mj7lx1l96-header__global {
        display: none;
        position: absolute;
        z-index: 2;
        top: 0;
        right: 0;
        bottom: 0;
        height: 100vh;
        background: #25003D;
        width: 60%;
        overflow-y: auto;
    }

    .mj7lx1l96-header__navbar {
        flex-direction: column;
        padding: 60px 20px 40px;
    }

    .mj7lx1l96-header__item {
        text-align: center;
        padding: 10px 20px;
    }
    
    .mj7lx1l96-topic {
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 24px;
    }

    .mj7lx1l96-welcome__block p {
        font-size: 16px;
        line-height: 26px;
    }

    .mj7lx1l96-subtopic {
        font-size: 26px;
        line-height: 36px;
        margin-bottom: 24px;
    }

    .mj7lx1l96-choose .mj7lx1l96-subtopic {
        margin-bottom: 44px;
    }

    .mj7lx1l96-games__box {
        grid-template-columns: 1fr;
    }

    .mj7lx1l96-choose {
        padding: 40px 20px 60px;
    }

    .mj7lx1l96-description {
        padding: 120px 20px 60px;
    }

    .mj7lx1l96-testimonials {
        padding: 40px 20px 60px;
    }

    .mj7lx1l96-contacts {
        padding: 120px 20px 40px;
    }

    .mj7lx1l96-choose__item {
        width: 46%;
    }
    
    .mj7lx1l96-information {
        padding: 120px 20px 60px;
    }

    .mj7lx1l96-information h1 {
        font-size: 34px;
        line-height: 42px;
    }

    .mj7lx1l96-information h2 {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 20px;
    }

    .mj7lx1l96-information h3 {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 20px;
    }

    .mj7lx1l96-footer {
        padding: 40px 20px 24px;
    }
}


@media (max-width: 860px) {

    body {
        font-size: 16px;
        line-height: 26px;
    }

    .mj7lx1l96-header__logo img {
        width: 280px;
    }

    .mj7lx1l96-welcome {
        background-position: left;
        padding: 120px 20px 60px;
    }

    .mj7lx1l96-games {
        padding: 40px 20px;
    }

    .mj7lx1l96-choose__item {
        width: 100%;
    }

    .mj7lx1l96-testimonials .mj7lx1l96-choose__item {
        width: 100%;
    }

    .mj7lx1l96-choose__item img {
        width: 110px;
    }

    .mj7lx1l96-choose__item strong {
        font-size: 20px;
        line-height: 24px;
    }

    .mj7lx1l96-disclaimer__item {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 24px;
    }

    .mj7lx1l96-footer__block {
        margin-bottom: 24px;
    }

    .mj7lx1l96-footer__list {
        flex-direction: column;
    }

    .mj7lx1l96-footer__coperight {
        font-size: 14px;
        line-height: 20px;
        flex-direction: column;
    }

    .mj7lx1l96-contacts .mj7lx1l96-subtopic {
        margin-bottom: 40px;
    }

    .mj7lx1l96-contacts__info {
        grid-template-columns: 1fr;
    }

    .mj7lx1l96-contacts__union h3 {
        font-size: 20px;
        line-height: 26px;
    }
}
