.main-container {
	max-width: var(--max-container-width);
	width: 100%;
	margin: auto;
	text-align: center;
	padding-bottom: 30px;
}

.main-container .main-image img {
	width: 100%;
}

.main-container .jackpot-logo {
	margin: auto;
}

.main-container .main-content {
	padding: 0 20px;
}

.main-container .icons {
	margin: auto;
	display: flex;
	gap: 10px;
	justify-content: center;
}
.main-container .icons > * {
	display: block;
	max-width: 100px;
}

.main-container .play-now {
	width: 250px;
	display: block;
	margin: 20px auto;
}

.main-container h3 {
	margin: 0 0 20px;
}

.page-wrapper {
	max-width: var(--max-container-width);
	margin: auto;
	padding: 20px;
}

.page-wrapper h3 {
	font-size: 25px;
	text-align: center;
	margin: 0 0 20px;
}

.page-wrapper ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.page-wrapper ul li {
	margin: 10px 0;
	padding: 0;
}

#hot-article {
	margin-top: 30px;
}

#hot-article h5 {
	color: var(--light-green);
	font-size: 20px;
}

.hot-article-list > div {
	padding: 30px 10px 30px 0;
	position: relative;
}

.hot-article-list > div::after {
	content: "";
	display: block;
	position: absolute;
	background-image: linear-gradient(
		90deg,
		#5afff6 0%,
		rgba(90, 255, 246, 0.5) 49.5%,
		rgba(90, 255, 246, 0.25) 100%
	);
	width: 100%;
	height: 1px;
	top: 0;
	left: 0;
}

.hot-article-list > div:first-child::after {
	content: none;
}

.hot-article-list h6 {
	color: var(--yellow);
	font-size: 24px;
	margin: 0 0 10px;
}

.hot-article-list p {
	font-size: 18px;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.hot-article-list a {
	display: inline-block;
	color: white;
	font-style: italic;
	font-size: 14px;
	border-bottom: 1px solid;
	padding: 5px 0 2px;
}


.modal {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #00000040;
    top: 0;
    left: 0;
    z-index: 10;
    display: none;
}

.modal.show {
    display: block;
}

.modal .modal-content {
    position: absolute;
    width: 80%;
    max-width: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 29, 131, 0.9);
    border: 2px solid #B2CCFF80;
    border-radius: 12px;
    color: white;
    padding: 20px;
    text-align: center;
}

.modal .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
	width: 25px;
}

.modal #modal-confirm-button {
    width: 200px;
    margin: auto;
    cursor: pointer;
}
.modal img {
    width: 100%;
}

/* WEB ONLY */
@media screen and (min-width: 751px) {
	.top-container {
		background-image: url("../images/home/bg.png");
		background-size: 1920px auto;
		background-position: center;
	}
	.main-container {
		display: flex;
		align-items: center;
		padding-top: 100px;
	}

	.main-container > div {
		flex-shrink: 0;
	}
	.main-container .main-image {
		width: 65%;
	}
	.main-container .main-content {
		width: 35%;
	}

	.page-wrapper ul {
		display: flex;
		justify-content: space-between;
		gap: 10px;
	}

	.hot-article-list {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.hot-article-list > div {
		width: calc((100% - 20px) / 2);
	}

	.hot-article-list > div:nth-child(2)::after {
		content: none;
	}

	.hot-article-list a {
		float: right;
	}
}

@media screen and (min-width: 751px) and (max-width: 1024px) {
	.main-container .play-now {
		max-width: 200px;
	}

	.page-wrapper ul {
		flex-wrap: wrap;
	}

	.page-wrapper ul li {
		width: calc((100% - 10px) / 2);
	}
}

/* MOBILE ONLY */
@media screen and (max-width: 750px) {
	.top-container {
		background-image: url("../images/home/bg-h5.png");
		background-size: 750px auto;
		background-position: top;
	}

	.main-container {
		padding-top: 60px;
	}
	.main-container .play-now {
		max-width: 250px;
	}

	.page-wrapper ul li img {
		margin: auto;
	}
}
