body, html {
    font-family: Roboto, sans-serif;
    background-color: #000;
    overflow: auto;
    height: auto;
}
a {
    text-decoration: none;
}
a:link, a:visited {
    color: white;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1350px;
    height: 50px;
    margin: 0 auto;
}
.header_group1 {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    gap: 12px;
    margin-right: 40px;
}



.run-string {
    background-color: #111;
    height: 32px;
    overflow: hidden;
    width: 450px;
    border: 2px double #14498e;
    display: flex;
    align-items: center;
    border-radius: 3px;
    margin-left: 40px;
}
.run-string div {
    animation: running-text 50s linear infinite;
    color: #6b89c1;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 20px;
    white-space: nowrap;
}
@keyframes running-text {
    0% {
        transform: translateX(100%);
    } 
    100% {
        transform: translateX(-100%);
    } 
}



.animate-left-right {
    background-image: url(../images/sprite-borders.png);
    background-repeat: no-repeat;
    animation: moveLeftRight .5s alternate infinite;
    height: 70px;
    width: 250px;
    background-position: 0 -103px;
    margin-right: 100px;
}
@keyframes moveLeftRight {
    0% {
        transform: translateX(50%);
    } 
    100% {
        transform: translateX(48%);
    } 
}
.animate-left-right .red {
    color: #fa1368;
    text-shadow: 0 0 20px #cd1050;
    position: absolute;
    left: 50px;
    top: 16px;
}
.animate-left-right .orange {
    color: #ffa900;
    text-shadow: 0 0 20px #efc168;
    position: absolute;
    left: 50px;
    top: 36px;
    font-size: 14px;
    font-weight: bold;
}



.button-green { 
    background-image: url(../images/sprite-buttons.png);
    background-repeat: no-repeat;
    width: 200px;
    margin: 0 auto;
    /* height: 20px; */
    color: #e0eae3;
    font-weight: bold;
    text-shadow: 1px 1px 1px #333;
    text-align: center;
    padding: 7px 10px;
    border-radius: 3px;
    cursor: pointer;
    background-position: 0% 0px;
    border: 1px solid #6b89c1;
}
.button-green:hover {
    background-position: 50% -573px;
}
.button-green:active {
    transform: translateY(2px);
    user-select: none;
}
.button-blue {
    background-position: 0% -221px;
    background-image: url(../images/sprite-buttons.png);
    background-repeat: no-repeat;
    width: 80px;
    color: #e0eae3;
    font-weight: bold;
    text-shadow: 1px 1px 1px #333;
    text-align: center;
    padding: 7px 10px;
    border-radius: 3px;
    cursor: pointer;
    border: 1px solid #6b89c1;
}
.second-column .button-blue {
	width: 130px;
}
.button-blue:hover {
    background-position: 50% -541px;
}
.button-blue:active {
    transform: translateY(2px);
    user-select: none;
}



.wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 1350px;
    height: 86px;
    margin: 0 auto;
    margin-top: 35px;
    background-image: url(../images/sprite.png);
    background-repeat: no-repeat;
    top: -2px;  
    position: relative;
    z-index: 2;
    box-shadow: 2px 0 0 rgba(12,109,235,.5),-2px 0 0 rgba(12,109,235,.5);
}
.wrapper:after {
    background-image: url(../images/sprite.png);
    background-repeat: no-repeat;
    background-position: 100% -88px;
    width: 306px;
    height: 86px; 
    content: '';
    right: 0;
    left: auto;
    position: absolute;
	z-index: 1;
}
.logo {
    height: 115px;
    width: 150px;
    margin-left: 20px;
	z-index: 3;
}




.logo-mobile {
    display: none;
}
.logo-mobile img {
    height: 3rem;
    width: 4rem;
	z-index: 3;
    float: right;
    margin-right: 1rem;
}




.main-menu {
    display: flex;
    gap: 30px;
    margin: -12px 0 0 40px; 
    align-items: center;
    position: relative;
    z-index: 3;
}
.section-menu__link {
    color: white;
    text-transform: uppercase;
    font-size: 15px;  
    margin-left: 30px;
}
.main-menu__image {
    width: 24px;
    height: 24px;
    background-position: 100% 0px;
    top: -5px;
    position: absolute;
}




.burger {
    z-index: 4;
}
.burger-button {
    width: 2rem;
    height: 2rem;
    border: none;
    background-color: #ccc; 
    position: relative;
    margin: 1rem;
	z-index: 5;
}
.burger-button span {
    position: absolute;
    width: 70%;
    height: 3px;
    background-color: black;
    left: 5px;
    transition: transform .5s, opacity .5, background-color .5s;
}
.burger-button span:nth-child(1) {
    transform: translateY(-8px);
}
.burger-button span:nth-child(3) {
    transform: translateY(8px);
}
.burger-menu {
	display: block;
	position: absolute;
	left: 0px;
	top: 0px;
	background-color: #777;
	padding: 3.5rem 1rem 3rem 0rem;
	width: 11rem;
	left: -12rem;
	transition: transform .5s;
	z-index: 1;
    font-size: 1rem;
}
.menu__list {
	display: block;
	color: white;
    list-style: none;
}
.menu__item {
	padding: 1rem 0rem;
}



.center {
    max-width: 1350px;
    margin: 0 auto;  
    margin-top: -10px;
    z-index: 0;
    display: flex;
	background: url("../images/pattern-sidebar.jpg") 50% 0 repeat;
	box-shadow: 2px 0 0 rgba(12,109,235,.5);
}
.first-column {    
    float: left;
    min-width: 1050px;
    background: url(../images/pattern-content.jpg) 0 0 repeat-y;
    box-shadow: -4px 0 0 rgba(2, 2, 2, 0.884) inset, -2px 0  rgba(12,109,235,.5);
}
.second-column {
    float: right;
    min-width: 300px;
    box-shadow: 2px 0 0 rgba(12,109,235,.5),-2px 0 0 rgba(12,109,235,.5);
    display: flex;
    flex-direction: column;
    align-items: center;
}
hr {
    width: 100%;
    height: .3rem;
    margin-top: 1.5rem;
    background-color: #000;
    border: none;
    box-shadow: 0 -1px 1px 0 rgba(12,109,235,.5), 0 1px 1px 0 rgba(12,109,235,.5);
}




.animate-top-down {
    background-image: url(../images/sprite-borders.png);
    background-repeat: no-repeat;
    animation: moveTopDown .5s alternate infinite;
    height: 95px;
    width: 250px;
    background-size: cover;
    background-position: 0 0px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
@keyframes moveTopDown {
    0% {
        transform: translateY(10%);
    } 
    100% {
        transform: translateY(15%);
    } 
}
.animate-top-down .red {
    color: #fa1368;
    text-shadow: 0 0 20px #cd1050;
}
.animate-top-down .orange {
    color: #ffa900;
    text-shadow: 0 0 20px #efc168;

    font-size: 14px;
    font-weight: bold;
}




@media screen and (max-width: 1370px) {
    header, .wrapper {
		margin: 0 30px;
	}
    .center {
        margin: 0 30px;
        margin-top: -10px;
    }
    .first-column {  
        width: 100%;
        box-shadow: 2px 0 0 rgba(12,109,235,.5),-2px 0 0 rgba(12,109,235,.5);
        background-size: cover;
    }
    .second-column {
        display: none;
        visibility: hidden;
    }
    .wrapper {
        margin-top: 35px;
    }
    body .center-bottom {
        max-width: 1135px;
        margin: 0 auto;  
    }  
}




@media (max-width: 992px) {
    .logo-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 4rem;
        background-color: #152b5a;
        margin-bottom: 1rem;
        box-shadow: 0px 1px 0 0 #14498e;
    }
    .burger.open .burger-menu {
        transform: translateX(100%);
    }	
	header, .wrapper{
		display: none;
	}
    section.center {
        margin: 0px;
    }
    section > .center > .first-column {  
        width: 100%;
    }
    .second-column {
        display: none;
        visibility: hidden;
    }
    .first-column {  
        width: 100%;
        box-shadow: none;
        min-width: 100%;
        background-image: none;
        height: auto;
    }
    .bonuses-block, .games-block {
        max-width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 1rem;
        flex-wrap: wrap;
        padding: 0px;
    }
    .bonuses-block .bonuses-image {
        flex-basis: 37%;
        height: 8.5rem;
        background-position: 0px;
        background-size: 160%;
        margin: 0.6rem 1rem; 
        border-radius: .5rem;
    }
    .bonuses-block .bonuses-image4 {
        display: block;
    }
    .first-column .section-header.main {
        display: block;
        color: #aaaabd;
        margin-left: 2rem;
        margin-top: 3rem;
        margin-bottom: 0rem;
        font-weight: bold;
    }
    .games-block {
        margin-top: 2rem;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.3rem;
    }
    .first-column .games-block li a.button {
        position: absolute; 
        top: 60%;
        left: 45%;
        width: 55%;
    }
    .first-column .games-block li a.button .button-blue {
        width: 55%;
    }    
	.first-column .games-block li a {
		left: 10%;
	}  
    .first-column .games-block > li { 
        width: 60px;
        flex-basis: 150px;
    }


    .image-hide-show .image-hide {
        display: none;
        background-color: rgba(12, 26, 43, 0.8);
    }
    .image-hide-show:active > img + div { 
        display: block;
    }
    .image-hide .button-blue {
        font-size: .9rem;
    }
    body .center-bottom {
        clear: both;
        background-size: 80%;
        border-radius: 0 0 0 0;
        box-shadow: none;
    }


        
    body .bottom1 .bottom1-left, body .bottom1 .bottom1-center {
		display: none;
	}
    body .bottom1 .bottom1-right {
		flex-basis: 90%;
		text-align: justify;
	}
	
	
	
    body .bottom2 {
        font-display: flex;
        flex-direction: column;

        height: 13rem;
        line-height: 1.4rem;
        text-align: center;
        width: 100%;
    }
    body .bottom2 .bottom2-left {
        font-size: 0.8rem;
        margin: 0px;
    }
    body .bottom2 .bottom2-right {
        background-size: 80%;
        background-position: center center;
    }


    body .game {
        margin: 10px 20px;
        max-width: 90%;
    }
}




.current-tournament {
    background-image: url("../images/sprite-white-red.png");
    background-position: 0 0;
    width: 207px; 
    height: 73px;
    margin-left: -4rem;  
    margin-top: 1rem; 
}
.current-tournament:after {
    background-image: url("../images/sprite-animate.png");
    background-position: -1px -667px;
    width: 149px;
    height: 70px;
    content: '';
    display: inline-block;
    margin-left: 8rem;
}
.current-tournament-image {
    background-image: url("../images/sprite-animate.png");
    background-position: 0 0;
    background-size: 185% 880%;
    margin-top: 2rem;      
    width: 230px; 
    height: 140px;
    display: flex;
    justify-content: center;
    margin: -3px 0 0 0;
    position: relative;
}
.current-tournament-image img {
    width: 200px; 
    height: 100px;
    margin-top: 25px;    
}
.current-tournament-image p {
    position: absolute;
    left: 2rem;
    top: 2rem;
    color: white;
    font-weight: bold;
    text-shadow: 2px 0 1px #000;
}
.current-tournament-square {
    width: 15rem;
    height: 12rem;
    background-color: #03051e;
    border-radius: 2px;
    margin: 30px 3px 20px;
    padding: 15px 10px 10px;
    position: relative;
    border: 3px double rgba(12,109,235,.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}
.current-tournament-square .gold {
    text-shadow: -1px 0 1px #c6bb9f, 0 1px 1px #c6bb9f, 5px 5px 10px rgba(0, 0, 0, 0.4), -5px -5px 10px rgba(0, 0, 0, 0.4);
    font-size: 2rem;
    color: #efc168;
}





.first-column .section-header {
    color: #aaaabd;
	max-width: 100%;
    justify-content: flex-start;
    margin: 3rem 3rem;
    font-size: 1.4rem;
    position: relative;
    z-index: 1;
}
.section-gamehall-img {
    position: absolute;
    bottom: -100%;
    left: -2%;
    z-index: -1;
    width: 150px;
    opacity: 50%;
}
.section-header.main {
    display: none;
}




.bonuses-block {
	max-width: 100%;
    display: flex;
    justify-content: center;
}
.bonuses-image {
    background-position: 0px -20px;
    background-size: 97%;
    margin: 0.6rem 1rem;      
    width: 18.5rem; 
    height: 8.5rem;
	box-shadow: 0 0 0 3px #000;
	border: 3px solid #152b5a;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    justify-content: center;
}
.bonuses-image p {
    margin-right: 1.5rem;
    text-align: right;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 2px 0 1px #000;
}
.bonuses-image .button-blue {
    margin-right: 1.2rem;
}
.bonuses-image1 {
    background-image: url("../images/slideweb_wheel.png");
}
.bonuses-image2 {
    background-image: url("../images/slideweb_wheel3.png");
}
.bonuses-image3 {
    background-image: url("../images/slideweb_wheel2.png");
}
.bonuses-image4 {
    background-color: #000;
    display: none;
}





.games-block {
    margin-top: 2rem;
    width: 1050px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.3rem;
    margin-bottom: 8rem;
}
.games-block > li { 
    width: 30px;
    flex-basis: 170px;
    position: relative;
    margin: 10px 0;
}
.games-block li img { 
    object-fit: cover; 
    width: 100%; 
    height: 100%; 
    vertical-align: middle; 
    border-radius: 5px; 
}
.games-block li p { 
    color: white;
    font-weight: bold;
    text-align: center;
    font-size: 0.9rem;
    margin-top: 10px;
}
.games-block li a.button {
    position: absolute; 
    top: 60%;
    left: 50%;
}
.games-block li a.button.button-blue {
    width: 45%;
}   
.games-block li a {
    position: absolute;
    top: 70%;
    left: 15%;
    color: white;
}  
.image-hide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 26, 43, 0.8);
    display: none;
}
.image-hide-show:hover > img + div { 
    display: block;
}




.center-bottom {
    max-width: 1350px;
    margin: 0 auto;  
    z-index: 0;
    height: 6rem;
    background-color: #0c237c;
    clear: both;
    display: flex;
    justify-content: center;
    border-radius: 0px 0px 15px 15px;
    box-shadow: 2px 0 0 rgba(12,109,235,.5),-2px 0 0 rgba(12,109,235,.5),0px 2px 0 rgba(2, 2, 2, 0.884) inset, 0px 4px rgba(12,109,235,.5);
    background-image: url(../images/bottomCards.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 40%;
}
.bottom1 {
    max-width: 1350px;
    margin: 0 auto;  
    /* height: 12rem; */
    display: flex;
    justify-content: center;
    color: white;
    line-height: 1.6rem;
    padding: 1.6rem;
    font-size: .9rem;
    line-height: 1.3rem;
    color: #5a7b90;

}
.bottom1-left {
    flex-basis: 15%;
}
.bottom1-left a, .bottom1-center a {
    color: #b9c3e5
}
.bottom1-center {
    flex-basis: 15%;
}
.bottom1-right {
    flex-basis: 65%;
	text-align: justify;
}
.bottom1 b {
    color: white;
}   
.bottom2 {
    max-width: 1350px;
    margin: 0 auto;  
    height: 8rem;
    display: flex;
    justify-content: center;
    color: white;
    line-height: 1.6rem;
    font-size: .9rem;
}
.bottom2-left {
    flex-basis: 50%;
    padding: 2rem;
    margin-left: 30px;
}
.bottom2-right {
    flex-basis: 50%;
    background-image: url(../images/bottom-icons.png);
    background-repeat: no-repeat;
    background-position: center right;
}
.section-header-p .djp {
    text-align: justify;
}
.section-header-p ul li {
    text-align: justify;
}
.section-header-p ul {
    list-style-type: none;
}



.game {
    margin: 40px 60px 10px 60px;
    width: 900px;
}
.game iframe {
    width: 100%;
    height: 500px;
}
