:root {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif,
		'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
}

body {
	margin: 0;
	padding: 0;
	background-color: #0f0f0f;
	width: 100vw;
	height: 100dvh;
	line-height: 1.5;
}

.banner-container {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.desktop-banner {
	display: none;
}

.mobile-banner {
	height: 100%;
	position: relative;
}

.modal-overlay {
	position: absolute;
	inset: 0px;
	z-index: 5;
	justify-content: center;
	align-items: center;
	opacity: 0;
	display: flex;
	transition: all cubic-bezier(0.4, 0, 0.2, 1) 300ms;
	background-color: rgba(0, 0, 0, 0.3);
}

.modal-dialog {
	border-radius: 8px;
	overflow: hidden;
	z-index: 10;
	border: solid 2px #f5f5f5;
	box-shadow: 0px 0px 30px #fffdc2;
}

.modal-content {
	background-color: #231f20;
	color: #fffed9;
	width: 75vw;
	display: flex;
	flex-direction: column;
	padding: 28px;
	justify-content: center;
	align-items: center;
	min-height: 30vh;
}

.modal-content span {
	text-align: center;
}

.modal-header {
	font-size: 36px;
	margin-bottom: 20px;
	text-shadow: 0 0 10px #fff;
	filter: drop-shadow(0 0 0.75rem rgb(121, 237, 237));
	font-weight: 600;
	font-style: italic;
	position: relative;
	text-decoration: underline;
	text-underline-offset: 8px;
}

.modal-text-content {
	display: flex;
	flex-direction: column;
	font-size: 28px;
	font-weight: 500;
	margin-bottom: 24px;
}

.modal-btn {
	font-size: 24px;
	width: 80%;
}

.primary-btn {
	text-decoration: none;
	background-color: black;
	color: #ffc300;
	border: #fffcb3 solid 2px;
	text-align: center;
	display: block;
	padding: 8px;
	border-radius: 12px;
	font-weight: 500;
}

.redirect-btn {
	position: absolute;
	bottom: 10px;
	left: 50%;
	translate: -50% -50%;
	font-weight: 500;
	width: 60%;
	font-size: 20px;
}

/* tablet */
@media (min-width: 768px) {
	.redirect-btn {
		font-size: 28px;
	}

	.modal-header {
		font-size: 42px;
		margin-bottom: 32px;
	}

	.modal-text-content {
		font-size: 28px;
		margin-bottom: 32px;
	}
}

/* desktop */
@media (min-width: 1024px) {
	.banner-container {
		display: flex;
		align-items: center;
	}
	.mobile-banner {
		display: none;
	}

	.desktop-banner {
		display: block;
		width: 100%;
		position: relative;
	}

	.redirect-btn {
		font-size: 32px;
		width: 20%;
		bottom: -15px;
	}
	.modal-header {
		font-size: 48px;
		margin-bottom: 32px;
	}

	.modal-btn {
		font-size: 28px;
		width: 50%;
	}

	.modal-content {
		width: 50vw;
	}

	.modal-text-content {
		font-size: 32px;
		margin-bottom: 32px;
	}
}

@keyframes glowing {
	0% {
		transform: scale(1);
		background-color: #000;
		box-shadow: 0 0 10px #ffc300;
	}
	50% {
		transform: scale(1.1);
		background-color: #2d2b2b;
		box-shadow: 0 0 28px #ffcf32;
	}
	100% {
		transform: scale(1);
		background-color: #000;
		box-shadow: 0 0 10px #ffee00;
	}
}

.primary-btn {
	animation: glowing 1300ms infinite linear;
}
