:root {
	--white: #fff;
	--black: #111;
	--prim: #274cb3;
	--sec: #f7d17d;
	--thre: #0c101d;
}


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}


body {
	font-family: 'Helvetica', Arial, sans-serif;
	background-color: #0d0c1a;
	color: var(--white);
	font-size: 18px;
	line-height: 1.6;
}
.container {
	width: 100%;
	max-width: 1040px;
	margin: 0 auto;
	padding: 0 20px;
}
.flx {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.button__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	padding: 10px 0 20px;
}
.button {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	min-height: 56px;
	background-color: var(--prim);
	color: var(--white);
	border: 2px solid var(--prim);
	box-shadow: 0 0 10px rgba(0 99 229 / .85);
	padding: 10px 40px;
	font-size: 20px;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	border-radius: 8px;
	transition: all 0.3s ease;
}
.button:hover {
	background: var(--sec);
	color: var(--black);
}



.head {
	font-size: 36px;
	margin-bottom: 32px;
	color: var(--white);
}







/* Header */
.header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background-color: transparent;
	padding: 20px 0;
	z-index: 100;
}
.header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo {
	display: block;
	outline: none;
}
.logo img {
	width: 180px;
	height: auto;
	display: block;
}






/* Hero */
.hero {
	position: relative;
	min-height: 80vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	padding-top: 140px;
	padding-bottom: 80px;
	background: #031630 url("../img/bg_hero.avif") center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	border-radius: 0 0 40px 40px;
	z-index: 5;
}
.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: .7;
}
.hero .container {
	position: relative;
	z-index: 20;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}
.hero__info {
	max-width: 560px;
}
.hero__brand {
	font-size: 25px;
	margin-bottom: 10px;
	color: var(--prim);
}
.hero__head {
	text-shadow: 4px 2px 0 var(--prim);
	font-size: 88px;
	font-weight: bold;
	line-height: 1.1;
	margin-bottom: 16px;
	color: var(--white);
}
.hero__desc {
	font-size: 25px;
	margin-bottom: 10px;
	line-height: 1.4;
	color: var(--white);
}
.hero__desc span {
	font-size: 16px;
}
.hero__button {
	margin-top: 20px;
}

.hero__bg {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: flex-end;
	width: 100%;
	height: 100%;
	padding-right: 40px;
	padding-bottom: 40px;
	z-index: 1;
}
.hero__bg img {
	display: block;
	max-width: 80%;
	max-height: 80%;
	object-fit: cover;
	transition: transform 0.1s linear;
	will-change: transform;
}







/* Best Slot */
.best-slot {
	padding: 100px 0 80px;
	background: #020f21;
	margin-top: -40px;
}
.best-slot__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.best-slot-item {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	background-color: var(--thre);
	border: 1px solid var(--thre);
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0 99 229 / .85), 0 0 8px rgb(0 181 217) inset;
	padding: 20px;
	transition: transform 0.3s ease;
}
.best-slot-item:hover {
	transform: translateY(-5px);
}
.best-slot-item__thumb {
	display: block;
	width: 100%;
	height: 400px;
	border-radius: 8px;
	margin-bottom: 15px;
	overflow: hidden;
}
.best-slot-item__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.best-slot-item__name {
	display: block;
	width: 100%;
	min-height: 64px;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 8px;
	color: var(--white);
	text-decoration: none;
}
.best-slot-item__prov {
	margin-bottom: 16px;
	font-size: 16px;
}
.best-slot-item__prize {
	width: 100%;
	font-size: 18px;
	margin-bottom: 8px;
}
.best-slot-item__prize span {
	display: inline-block;
	vertical-align: middle;
	padding-left: 24px;
	position: relative;
	margin-left: 20px;
	font-size: 22px;
	line-height: 1;
}
.best-slot-item__prize span::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 18px;
	height: 18px;
	background: url("../img/win.svg") center no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
}

.best-slot-item .button {
	margin-top: auto;
	width: 100%;
}







/* Last Win Section */
.last-win {
	padding: 80px 0;
}
.last-win__list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
}
.last-win-item {
	background-color: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	padding: 15px;
	text-align: center;
	transition: transform 0.3s ease;
}

.last-win-item:hover {
	transform: translateY(-5px);
}

.last-win-item img {
	width: 100%;
	height: 150px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 12px;
}

.last-win-item h3 {
	font-size: 18px;
	margin-bottom: 8px;
	color: var(--white);
}

.last-win-item .winner {
	font-size: 14px;
	margin-bottom: 5px;
	color: var(--thre);
}

.last-win-item .amount {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 12px;
	color: var(--sec);
}

.last-win-item .button {
	width: 100%;
	padding: 10px 20px;
	font-size: 14px;
}








.content {
	padding: 40px 0 80px;
}
.content .container {
	max-width: 920px;
}
.content p {
	margin-bottom: 15px;
	line-height: 1.6;
}
.content a {
	color: #1457a2;
	text-decoration: underline;
}
.content a:hover {
	text-decoration: none;
}
.content ul, .content ol {
	margin-bottom: 20px;
	padding-left: 20px;
}

.content img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 15px auto 25px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0 99 229 / .7);
}
.alighnright {
	float: right;
	margin: 0 0 20px 16px;
}

.content h1 {
	padding-bottom: 24px;
	font-size: 36px;
	line-height: 1.2;
}

.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
	padding: 24px 0 20px;
	line-height: 1.2;
}
.content h2 {
	font-size: 32px;
}
.content h3 {
	font-size: 20px;
}
.content h4 {
	font-size: 18px;
}

.content table {
	display: block;
	overflow-x: auto;
	width: 100%;
	border-collapse: collapse;
}
.block-table {
	width: 100%;
	overflow: hidden;
	overflow-x: visible;
	padding-bottom: 8px;
	margin: 8px 0 20px;
}
.block-table table {
	min-width: 480px;
}

.content table, .content th, .content td {
	border: 1px solid rgba(255, 255, 255, .2);
}

.content th, .content td {
	padding: 12px;
	text-align: left;
}

.content th {
	background-color: #020f21;
}

.content blockquote {
	border-left: 2px solid #1e2e44;
	padding-left: 16px;
	margin: 20px 0;
	font-style: italic;
	color: #333;
}



.privacy-policy-container {
	padding-top: 120px;
	padding-bottom: 40px;
}
.privacy-policy-container .privacy-policy-content div, .privacy-policy-container .privacy-policy-content li, .privacy-policy-container .privacy-policy-content ol, .privacy-policy-container .privacy-policy-content p, .privacy-policy-container .privacy-policy-content span, .privacy-policy-container .privacy-policy-content ul {
	color: #fff !important;
	background-color: transparent !important;
}







.footer {
	padding-top: 32px;
	padding-bottom: 96px;
	background: #020f21;
}
.footer__head {
	margin-bottom: 16px;
	font-size: 20px;
	line-height: 1.3;
}
.footer-top {
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, .1);
	padding-bottom: 20px;
}
.footer__logo {
	display: block;
	width: 120px;
}
.footer__logo img {
	display: block;
	width: 100%;
	height: auto;
}
.footer__desc {
	width: calc(100% - 160px);
	max-width: 480px;
	font-size: 15px;
}

.footer-middle {
	align-items: center;
	padding-top: 24px;
	padding-bottom: 24px;
}
.footer-social__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 16px;
}
.footer-social-item {
	display: block;
	width: 25px;
	height: 25px;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
	font-size: 0;
	transition: all .3s ease;
}
.footer-social-item--tw {
	background-image: url('../img/social_tw.avif');
}
.footer-social-item--ig {
	background-image: url('../img/social_ig.avif');
}
.footer-social-item--tg {
	background-image: url('../img/social_tg.avif');
}
.footer-social-item:hover {
	transform: scale(1.1);
}


.footer-payment {
	width: 48%;
	max-width: 300px;
}
.footer-payment__list {
	width: 100%;
}
.footer-payment__list img {
	display: block;
	width: 100%;
	height: auto;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, .1);
	padding-top: 20px;
}
.footer__copyright {
	width: 56%;
	font-size: 14px;
	line-height: 1.2;
}

.footer__menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	width: 40%;
}
.footer__menu a {
	display: block;
	color: var(--white);
	font-size: 16px;
	text-decoration: none;
}
.footer__menu a:hover {
	text-decoration: underline;
}








.bonus-popup {
	position: fixed;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 32px);
	max-width: 580px;
	background: var(--thre);
	color: var(--white);
	border-radius: 12px;
	box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
	padding: 10px 24px;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, transform 0.3s ease;
}
.bonus-popup.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}
.bonus-popup__close {
	position: absolute;
	top: 4px;
	right: 4px;
	background: none;
	border: none;
	color: #aaa;
	font-size: 22px;
	transition: all .3s ease;
	cursor: pointer;
}
.bonus-popup__close:hover {
	color: var(--white);
}
.bonus-popup__content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	text-align: center;
}

.bonus-popup__text {
	width: calc(100% - 144px);
	font-size: 20px;
	line-height: 1.4;
	margin: 0;
}
.bonus-popup__button {
	width: 120px;
}

@media (max-width: 480px) {
	.bonus-popup {
		bottom: 12px;
		padding: 14px;
	}

	.bonus-popup__text {
		font-size: 14px;
	}

	.bonus-popup__cta {
		font-size: 14px;
		padding: 10px;
	}
}





@media (max-width: 992px) {

	.hero__bg img {
		max-width: 300px;
		max-height: 300px;
	}

	.last-win__list {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}
}

@media (max-width: 768px) {

	.header__button {
		padding: 10px 24px;
	}


	.hero__bg img {
		max-width: 200px;
		max-height: 200px;
	}


	.best-slot__list {
		grid-template-columns: 1fr;
	}
	.best-slot-item__thumb {
		height: 320px;
		margin-bottom: 10px;
	}
	.best-slot-item__thumb img {
		object-position: top center;
	}
	.best-slot-item__name {
		min-height: 48px;
	}


	.last-win__list {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.footer__head {
		margin-bottom: 8px;
		font-size: 18px;
	}
	.footer__logo {
		margin: 0 auto 24px;
	}
	.footer__desc {
		width: 100%;
		max-width: 100%;
		text-align: center;
	}

	.footer__copyright {
		width: 100%;
	}
	.footer__menu {
		order: -1;
		justify-content: flex-start;
		width: 100%;
		padding-bottom: 12px;
	}
	.footer__menu a {
		width: 100%;
		text-align: center;
	}
}

@media (max-width: 480px) {

	.hero__head {
		font-size: 64px;
	}
	.hero__bg {
		padding-right: 10px;
		padding-bottom: 20px;
	}
	.hero__bg img {
		max-width: 160px;
		max-height: 160px;
	}


	.head {
		font-size: 28px;
	}

	.hero {
		padding-bottom: 88px;
	}
	.hero__info h1 {
		margin-bottom: 20px;
		font-size: 36px;
	}
	.hero__desc {
		font-size: 22px;
	}
	.hero__button {
		margin-top: 48px;
	}


	.content h1 {
		font-size: 34px;
	}
	.content h2 {
		font-size: 28px;
	}
	.content h3 {
		font-size: 24px;
	}


	.footer-social {
		width: 100%;
		padding-bottom: 20px;
	}
	.footer-payment {
		width: 100%;
	}


}