@font-face {
	font-family: Montserrat;
	src: url('/assets/fonts/Montserrat-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family: Montserrat;
	src: url('/assets/fonts/Montserrat-Medium.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
}
@font-face {
	font-family: Montserrat;
	src: url('/assets/fonts/Montserrat-Bold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
}

:root {
	--background: #18120d;
	--header: #362316;
	--btn: linear-gradient(90deg, #7ab200 0%, #344c00 100%);
	--container: #362316;
	--second-btn: linear-gradient(90deg, #7ab200 0%, #344c00 100%);
	--white: #fff;
	--grey: #9c9289;
	--dark: #362316;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
	/* border: 1px solid red; */
}

ul,
ol {
	list-style-position: inside;
	padding-left: 10px;
}

a {
	text-decoration: none;
	color: inherit;
}

img,
video {
	max-width: 100%;
	height: auto;
	display: block;
}

button {
	all: unset;
	cursor: pointer;
	box-sizing: border-box;
}

input,
textarea,
button,
select {
	font: inherit;
	border: none;
	outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 500;
	color: var(--white);
}

body {
	font-family: 'Montserrat', sans-serif;
	font-size: 1rem;
	line-height: 1.5;
	background: var(--background);
	color: var(--grey);
	box-sizing: border-box;
}

main {
	width: 90%;
	gap: 30px;
	margin: 30px auto;
}

h2,
h3,
strong {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--white);
	margin: 10px auto;
}

p {
	font-size: 1rem;
	font-weight: 500;
	color: var(--white);
	margin-bottom: 20px;
}

/* normilize end */
.main-container ul li a {
	color: #7ab200;
}

header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 90%;
	margin: 0 auto;
	padding: 16px 22px;
	background: var(--header);
	border-radius: 12px;
	position: sticky;
	top: 0;
}

.h-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 30%;
}

.inherit-btn {
	padding: 8px 12px;
	border: 2px solid #7ab200;
	border-radius: 12px;
	font-size: 1rem;
	color: var(--white);
	font-weight: 700;
	transition: transform 0.5s ease;
}

.inherit-btn:hover {
	background: var(--second-btn);
	transform: scale(1.2);
}

.red-btn {
	background: var(--second-btn);
	padding: 8px 12px;
	border: 2px solid #7ab200;
	border-radius: 100px;
	font-size: 1rem;
	color: var(--white);
	font-weight: 700;
	transition: transform 0.5s ease;
}

.red-btn:hover {
	background: inherit;
	transform: scale(1.2);
}

.main-banner,
.small-banner {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: 20px;
	margin: 30px auto;
}

.banner-container {
	background-image: url(/assets/images/popup-girl.webp);
	background-repeat: no-repeat;
	background-position: 65%;
	background-size: cover;
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: space-evenly;
	padding: 40px;
	border-radius: 20px;
	width: 50%;
	height: 400px;
	gap: 20px;
}

.banner-container p {
	width: 70%;
}

.info-box {
	margin: 20px auto;
	width: 80%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.info-box img {
	width: 60%;
	height: auto;
	border-radius: 20px;
}

.info-txt {
	font-size: 1rem;
	font-weight: 400;
	color: var(--white);
	margin: 8px auto;
}

.btn-dep {
	padding: 4px 14px;
	border-radius: 100px;
	font-size: 1rem;
	background: var(--btn);
	color: var(--white);
	font-weight: 800;
	border: 3px solid #7ab200;
	transition: transform 0.5s ease;
}

.btn-dep:hover {
	transform: scale(1.2);
}

.btn-dep:active {
	background: var(--btn);
	box-shadow: 0 5px var(--header);
	transform: translateY(4px);
}

.banner-bonus-gift {
	background-image: url(/assets/images/gift.webp);
	padding: 20px;
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 16px;
	width: 25%;
}

.banner-bonus-cash {
	background-image: url(/assets/images/cashback.webp);
	padding: 20px;
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 16px;
	width: 25%;
}

.sb-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
	width: 100%;
	margin: 0 auto;
	background: var(--dark);
	border-radius: 16px;
}

.sb-container:hover {
	background: linear-gradient(90deg, #7ab200 0%, var(--header) 100%);
}

.sb-container:hover img {
	transform: rotate(10deg);
}

.sb-container h2,
.sb-container h3 {
	text-align: left;
	margin: 0;
}

.main-container {
	background: var(--container);
	padding: 20px 40px;
	border-radius: 16px;
}

.popular-games {
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: 20px;
}
.game img {
	width: 80%;
}

.table {
	overflow-x: auto;
	margin-top: 1.5rem;
	border-radius: var(--border-radius);
	width: 100%;
}

.table table {
	width: 100%;
	border-collapse: collapse;
	color: var(--white);
	font-size: 1rem;
	min-width: 320px;
	border-radius: 12px;
}

td,
th {
	border: 1px solid var(--grey);
	padding: 8px;
}

th {
	padding-top: 12px;
	padding-bottom: 12px;
	text-align: left;
	background: #7ab200;
	color: var(--white);
}

footer {
	padding: 30px;
}

footer ul {
	list-style: none;
}

footer ul li {
	margin: 10px 0;
}

.f-logo {
	display: flex;
	align-items: flex-start;
	align-items: end;
	gap: 10px;
}
hr {
	width: 100%;
	height: 2px;
	border: none;
	background: linear-gradient(90deg, var(--white) 0%, var(--background) 97%);
}

.f-info {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 30px;
	padding: 20px;
}

.f-txt {
	color: var(--white);
	font-size: 0.8rem;
	font-weight: 600;
}

.ios {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px;
	border: 1px solid var(--white);
	border-radius: 10px;
	margin: 10px 0;
}

.txt-f {
	color: var(--white);
	margin: 20px auto;
	text-align: center;
}

.img-cov {
	width: 100%;
	height: 100%;
	max-width: 700px;
	margin: 15px auto;
}
.img-cov img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 4px;
}

@media (max-width: 768px) {
	header {
		gap: 10px;
		width: 100%;
		border-top-left-radius: 0;
		border-top-right-radius: 0;
	}

	main {
		width: 96%;
		margin: 0 auto;
	}

	.h-btn {
		width: 100%;
		margin: 4px auto;
		justify-content: space-evenly;
	}

	.inherit-btn,
	.red-btn {
		padding: 4px 8px;
	}

	.main-banner,
	.small-banner {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		justify-content: space-between;
		gap: 20px;
		margin: 30px auto;
	}

	.banner-container {
		width: 100%;
		padding: 20px 10px;
		gap: 10px;
	}

	.banner-bonus-gift {
		width: 100%;
	}

	.banner-bonus-cash {
		width: 100%;
	}

	p {
		font-size: 0.8rem;
		margin-bottom: 8px;
	}

	.main-container {
		width: 96%;
		padding: 10px 8px;
		gap: 10px;
		margin: 0 auto;
	}

	table {
		font-size: 0.8rem;
	}

	footer {
		padding: 10px;
	}

	.f-info {
		flex-wrap: wrap;
		width: 100%;
	}

	footer div {
		width: 100%;
	}

	footer img {
		width: 30px;
		height: auto;
	}
}
