* {
	margin: 0;
	padding: 0;
}

body {
	min-width: 320px;
	font-family: Arial, Helvetica, sans-serif;
	background: #0d1016;
	color: #d2eeed;
	font-size: 16px;
	line-height: 32px;
}

header {
	width: 100%;
	background: #0d1016;
	position: sticky;
	z-index: 99;
	top: 0;
	left: 0;
}

.header {
	width: calc(100% - 20px);
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	flex-direction: column;
	margin-top: 10px;
}

.header_media,
.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}

.button-background {
	box-sizing: border-box;
	color: #fff;
	background: #ff2400;
	border-radius: 5px;
	width: calc(50% - 5px);
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	text-decoration: none;
}
.button-border {
	box-sizing: border-box;
	color: #fff;
	border: 1px solid #ff2400;
	border-radius: 5px;
	width: calc(50% - 5px);
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	text-decoration: none;
}

.button-border:hover {
	border-color: #fff;
}

.banner {
	background-image: url(images/bg.jpg);
	background-size: cover;
	width: 100%;
	margin-top: 10px;
	margin-bottom: 20px;
}

.welcome {
	width: calc(100% - 20px);
	margin-left: auto;
	margin-right: auto;
	min-height: 300px;
	background: linear-gradient(
		to right,
		rgba(0, 0, 0, 0.1),
		rgba(0, 0, 0, 0.8) 30%,
		rgba(0, 0, 0, 0.8) 70%,
		rgba(0, 0, 0, 0.1)
	);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #fafafa;
	padding: 20px 0;
}

.banner-title {
	font-size: 25px;
	display: flex;
	font-style: italic;
	line-height: 1.4;
	font-weight: bold;
}

.banner-subtitle {
	font-size: 25px;
	font-style: italic;
	line-height: 1.4;
	font-weight: bold;
	margin: 10px auto 20px;
}
.banner-subtitle span {color:#04cfaa;}
.banner-button {
	box-sizing: border-box;
	color: #fff;
	background: #ff2400;
	border-radius: 5px;
	width: 310px;
	font-size: 18px;
	font-weight: bold;
	border: 4px solid #ff2400;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	text-decoration: none;
}

.banner-button:hover {
	background: #fff;
	color: #ff2400;
}

.games-grid {
	display: grid;
	grid-gap: 4px;
	grid-template-columns: repeat(5, 1fr);
	padding-top: 8px;
	margin-bottom: 24px;
	position: relative;
}

.games-grid .item {
	height: auto;
	aspect-ratio: 1.5154639175/1;
	position: relative;
	display: grid;
	border-radius: 4px;
	transition: transform 0.3s ease;
	overflow: hidden;
	width: 100%;
}

.game-play {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(0, 0, 0, 0.6);
}
.games-grid .item:hover .game-play {background:rgba(0,0,0,0);}
.game-play a {
	box-sizing: border-box;
	color: #fff;
	background: #ff2400;
	border-radius: 5px;
	width: calc(50% - 5px);
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	text-decoration: none;
}

.game-play a:hover,
.button-background:hover {
	background: none;
	border: 1px solid #ff2400;
}

.games-grid .item:hover {
	transform: scale(1.03);
	z-index: 3;
}
.games-grid .item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

article {
	width: calc(100% - 20px);
	margin-left: auto;
	margin-right: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.article {
	width: 100%;
	max-width: 1100px;
}

img {
	max-width: 100%;
	height: auto;
}

h1,
h2 {
	margin-bottom: 15px;
	color: #fff;
	margin-bottom: 20px;
}

h1 {
	font-size: 36px;
}

h2 {
	font-size: 28px;
}

p,
table,
ul,
ol {
	margin-bottom: 15px;
	list-style-position: inside;
}

figure {
	margin-bottom: 15px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

figcaption {
	margin-bottom: 15px;
	color: #04cfaa;
	font-style: italic;
}

table {
	box-sizing: border-box;
	border-collapse: collapse;
	width: 100%;
	margin-bottom: 20px;
	font-size: 15px;
}

blockquote {
	background: #04cfaa;
	font-size: 14px;
	line-height: 20px;
	padding: 15px;
	margin-bottom: 20px;
	color: #0d1016;
	text-align: center;
}

table thead {
	text-align: center;
	font-weight: bold;
	background: #04cfaa;
	color: #0d1016;
	text-transform: uppercase;
}

table td {
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 15px;
}

.logos {
	width: calc(100% - 20px);
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
	margin-bottom: 20px;
}

.providers,
.payments {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.providers:before,
.payments:before,
.payments:after {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background: linear-gradient(
		to left,
		rgba(255, 255, 255, 0.01),
		rgba(255, 255, 255, 0.3),
		rgba(255, 255, 255, 0.01)
	);
}

.providers img,
.payments img {
	margin-left: 10px;
	margin-right: 10px;
}

footer {
	width: calc(100% - 20px);
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

@media (max-width: 560px) {
	.header_media {
		flex-direction: column;
	}
	.header_media span {
		margin-top: 10px;
		text-align: center;
	}

	.banner-title {
		font-size: 48px;
	}

	.banner-subtitle {
		font-size: 28px;
	}

	table td {
		padding: 10px 5px;
		font-size: 14px;
	}
}

@media (max-width: 931px) {
	.games-grid {
		display: none;
	}
}

@media (min-width: 2200px) {
	.games-grid {
		grid-template-columns: repeat(10, 1fr);
	}
}

.promocode  {font-weight:700;color:#fff;padding-top:30px;}
.promocode span { 
position:relative;
margin-right:22px;display:inline-block;
cursor:pointer;
color: #04cfaa;
}

.promocode span:after {
	content: '';
    -webkit-mask-image: url(/images/copy.svg);
    mask: url(/images/copy.svg);
    -webkit-mask-position: 50%;
    background-color: #04cfaa;
    position:absolute;
    width: 18px;
    height: 18px;
    top:5px;
	right:-22px;
}
