@font-face {
	font-display: swap;
	font-family: 'custom-font';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/AvenirNext-Medium.woff2') format('woff2');
}

@font-face {
	font-display: swap;
	font-family: 'custom-font-light';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/AvenirNext-Light.woff2') format('woff2');
}

@font-face {
	font-display: swap;
	font-family: 'custom-font-heavy';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/AvenirNext-Heavy.woff2') format('woff2');
}

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

:root {
	--button-language: #414141;
	--bonus-color: linear-gradient(180deg, #27FF01 0%, #034F1E 100%);
}

html {
	font-size: 16px;
}

body {
	font-family: "custom-font", sans-serif;
	font-weight: 400;
	font-size: 1rem;
	line-height: 1;
	font-style: normal;
	font-display: swap;
	min-height: 100vh;
	color: #fff;
	background: url(../img/bg.webp) no-repeat center center/cover;
}

button {
	cursor: pointer;
}

.wrapper {
	position: relative;
	width: 100%;
	min-height: 100vh;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px 15px;
}


.content-wrapper {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	width: 100%;
	height: 100vh;
}

.content {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.axe {
	position: relative;
	width: 60%;
	margin-bottom: 5%;
}

.axe img {
	width: 100%;
}

.app-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

.modal {
	background-color: #417ABA60;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	padding: 5% 10%;
	margin-bottom: 5%;
	user-select: none;
}

.modal h1 {
	font-family: "custom-font-heavy", sans-serif;
	margin-bottom: 3%;
}

.modal h1 span {
	font-family: "custom-font-light", sans-serif;
	font-style: italic;
}

.modal h3 {
	font-size: 1rem;
	margin-bottom: 2%;
}

.modal h5 {
	font-size: 0.65rem;
}

.btn-playnow {
	background: linear-gradient(90deg, #F7B901 0%, #F54601 100%);
	/* width: 32%; */
	padding: 2% 6%;
	margin-bottom: 2vh;
	color: #fff;
	font-size: 0.7rem;
	font-weight: bold;
	border-radius: 8px;
	border: none;
	text-decoration: none;
}

.terms-link {
	font-family: "custom-font-light", sans-serif;
	font-size: 0.7rem;
	color: #fff;
	margin-bottom: 7%;
}

.buttons-wrapper {
	display: flex;
	gap: 10px;
	width: 80%;
}

.btn-option {
	display: flex;
	align-items: center;
	padding: 5px 5px;
	width: 100%;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	border-radius: 12px;
	color: #fff;
	font-size: 0.5rem;
	white-space: nowrap;
	text-decoration: none;
}

.btn-option span {
	background: linear-gradient(90deg, #5391C2 0%, #0E4377 100%);
	border-radius: 8px;
	font-weight: bold;
	padding: 10px 15px;
	margin-right: 5%;
}

.footer {
	padding-top: 5%;
	width: 1200px;
}

.partners {
	display: block;
	/* horizontal scrolling only */
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	/* smooth on iOS */
	scroll-behavior: smooth;
	padding: 12px 6px;
	width: 100%;
	white-space: nowrap;
	/* keep inline-flex children on one line for older browsers */
	touch-action: pan-x;
	/* prefer horizontal panning on touch devices */

	/* prevent ancestor from stealing the gesture and contain overscroll */
	overscroll-behavior-x: contain;
	-webkit-touch-callout: none;
	position: relative;
	z-index: 1;

	/* hide native scrollbar but keep scroll functionality */
	-ms-overflow-style: none;
	/* IE and Edge */
	scrollbar-width: none;
	/* Firefox */
}

.partners-content {
	display: inline-flex;
	/* inline so parent white-space keeps it on one line */
	gap: 12px;
	align-items: center;
}

/* keep logos from stretching and prevent line breaks */
.partners-content img {
	flex: 0 0 auto;
	height: 40px;
	/* adjust to taste */
	width: auto;
	object-fit: contain;
	display: block;
	user-select: none;
	pointer-events: auto;
}

/* Optional: style WebKit scrollbar (visible but subtle) */
.partners::-webkit-scrollbar {
	display: none;
}

.partners-1 {
	width: 1000px;
	margin: auto;
}

.partners-2 {
	border-top: 1px solid #ffffff15;
	border-bottom: 1px solid #ffffff15;
}

/* tighter on very small screens */
@media (max-width: 480px) {
	.partners img {
		height: 30px;
	}
}

.trustpilot-wrapper {
	margin: auto;
	width: fit-content;
}

.trustpilot-wrapper img {
	width: 100%;
}

@media (min-width: 500px) {
	.partners-content {
		flex-wrap: wrap;
		justify-content: center;
	}
}


@media (max-width: 1700px) {
	.footer {
		width: 100%;
		height: 50%;
		padding-top: 8%;
	}

	.partners {
		margin: auto;
		text-align: center;
		width: 90%;
		height: auto;
	}

	.partners-content img {
		height: auto;
		width: 6.5%;
	}

	.trustpilot-wrapper {
		margin: 3vh auto;
	}
}

@media (max-width: 1440px) {
	.content-wrapper {
		justify-content: space-between;
	}
}

@media (min-width: 1100px) and (max-width: 1440px) {
	.content-wrapper {
		display: block;
	}

	.content {
		height: 50%;
		width: 100vw;
	}

	.axe {
		max-width: 30%;
		margin-bottom: 3vh;
	}

	.modal {
		padding: 3vh 5vw;
		margin-bottom: 5vh;
	}

	.btn-playnow {
		padding: 1% 3%;
		font-size: 0.5rem;
	}

	.terms-link {
		font-size: 1rem;
		margin-bottom: 5vh;
	}

	.buttons-wrapper {
		width: 32vw;
	}
}

@media (min-width: 1100px) and (max-width: 1200px) {
	.btn-option {
		font-size: 0.4rem;
	}
}

@media (max-width: 850px) {
	.content {
		width: 100%;
	}

	.footer {
		width: 500px;
	}
}

@media (max-width: 525px) {
	.axe {
		width: 90vw;
	}
}

@media (max-height: 1200px) and (max-width: 1000px) {
	.buttons-wrapper {
		flex-direction: column;
		width: 60%;
	}

	.partners img {
		height: 3vh;
		width: auto;
	}
}

@media (max-height: 1000px) and (max-width: 468px) {
	body {
		background: url(../img/bg-mobile.webp) no-repeat center center/cover;
	}

	.content {
		height: 65vh;
	}

	.axe {
		margin-bottom: 2vh;
	}

	.btn-playnow {
		border-radius: 12px;
		font-size: 0.7rem;
		padding: 2vh 13%;
	}

	.terms-link {
		margin-bottom: 2vh;
	}

	.buttons-wrapper {
		width: 100%;
		gap: 1vh;
	}

	.btn-option {
		padding: 1vh 5px;
	}

	.footer {
		height: 35vh;
		padding: 2vh 2%;
	}

	.partners {
		flex-wrap: nowrap;
		margin-bottom: 1vh;
	}

	.trustpilot-wrapper {
		width: 40vw;
	}

	.modal {
		width: 100%;
		padding: 2vh 10%;
		margin-bottom: 3vh;
	}

	.modal h1 {
		font-size: 1.5rem;
		margin-bottom: 2ch;
	}

	.modal h3 {
		margin-bottom: 2vh;
	}

	.modal h5 {
		font-size: 0.85rem;
	}
}