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

body {
	font-family: 'Montserrat', sans-serif;
	background: #f4f8ff;
	color: #0a0f2c;
	overflow-x: hidden;
}

section {
	padding: 80px;
	position: relative;
}

.bg-second {
	background: #fff;
}

p, ul li {
	font-size: 18px;
}

p:last-child, ul li:last-child {
	margin-bottom: 0;
}

ul li {
	margin-bottom: 10px;
}

h2 {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 7px;
}

h3 {
	margin: 35px 0 3px;
}

a {
	text-decoration: none;
}

/* ================= HERO ================= */

.hero {
	padding: 120px 80px 50px;
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow: hidden;
}

.hero-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	position: relative;
	z-index: 2;
}

.casino-table {
	margin-top: 60px;
}

.hero-left {
	max-width: 750px;
}

.hero-label {
	font-size: 13px;
	letter-spacing: 3px;
	color: #00ff88;
	margin-bottom: 20px;
	font-weight: 600;
}

.hero h1 {
	font-size: 60px;
	line-height: .95;
	font-weight: 800;
	margin-bottom: 20px;
}

.hero h1 span {
	background: linear-gradient(90deg, #2f80ed, #00ff88);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero p {
	font-size: 20px;
	opacity: .7;
	line-height: 1.3;
	margin-bottom: 30px;
}

.hero-buttons {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.btn-primary {
	padding: 18px 40px;
	background: #0a0f2c;
	color: #fff;
	text-decoration: none;
	border-radius: 60px;
	font-weight: 600;
	transition: .3s;
}

.btn-primary:hover {
	background: #2f80ed;
	transform: translateY(-3px);
}

.btn-ghost {
	padding: 18px 40px;
	border: 2px solid #0a0f2c;
	border-radius: 60px;
	text-decoration: none;
	color: #0a0f2c;
	font-weight: 600;
	transition: .3s;
}

.btn-ghost:hover {
	background: #0a0f2c;
	color: #fff;
}

/* BONUS ART */

.hero-right {
	position: relative;
}

.hero-right img {
	max-width: 400px;
	animation: float 5s ease-in-out infinite;
}

/* ENERGY ORBS */

.orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(50px);
	opacity: .5;
	animation: moveOrb 12s infinite alternate ease-in-out;
}

.orb1 {
	width: 300px;
	height: 300px;
	background: #2f80ed;
	top: 60%;
	left: -100px;
}

.orb2 {
	width: 200px;
	height: 200px;
	background: #00ff88;
	top: 10%;
	right: 20%;
	animation-delay: 3s;
}

.orb3 {
	width: 250px;
	height: 250px;
	background: #8f00ff;
	bottom: -80px;
	right: 10%;
	animation-delay: 6s;
}

@keyframes moveOrb {
	0% {
		transform: translate(0, 0)
	}

	100% {
		transform: translate(50px, -50px)
	}
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0)
	}

	50% {
		transform: translateY(-15px)
	}
}


/* ===== CASINO CARDS ===== */

.casino-item {
	display: grid;
	grid-template-columns: 80px 180px 1fr 220px 180px;
	align-items: center;
	gap: 40px;
	padding: 35px 20px;
	border-bottom: 1px solid #222;
	background: #ffffff8c;
	transition: .3s;
}

.casino-item:hover {
	transform: translateX(10px);
}

.casino-item .rank {
	font-size: 42px;
	font-weight: 700;
	color: #2f80ed;
	min-width: 70px;
}

.casino-item .logo img {
	max-width: 180px;
	height: auto;
}

.casino-item .bonus {
	font-size: 22px;
	font-weight: 500;
	max-width: 500px;
}

.casino-item .min-deposit {
	font-size: 20px;
	opacity: 0.85;
	white-space: nowrap;
}

.casino-item .play-btn {
	padding: 14px 40px;
	font-size: 18px;
	font-weight: 700;
	background: #72D562;
	color: #fff;
	text-decoration: none;
	transition: 0.3s;
	white-space: nowrap;
	text-transform: uppercase;
    text-align: center;
}

.casino-item .play-btn:hover {
	border: 2px solid #72D562;
	color: #72D562;
	background: transparent;
}

@media (max-width: 992px) {
	.casino-item {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 20px;
	}

	.casino-item .rank,
	.casino-item .logo,
	.casino-item .bonus,
	.casino-item .min-deposit,
	.casino-item .play-btn {
		grid-column: 1;
		justify-self: center;
	}

	.casino-item .logo img {
		max-width: 200px;
	}

	.casino-item .play-btn {
		width: 220px;
	}

    .table2 {
		display: block;
		max-width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.mobno {
		display: none;
	}
}

/* ================= CONTENT ================= */

.content {
	max-width: 900px;
	font-size: 18px;
	line-height: 1.7;
	opacity: .8;
}

/* ================= FOOTER ================= */

footer {
	padding: 30px 8%;
	font-size: 14px;
	opacity: .6;
	text-align: center;
}

/* ================= MOBILE ================= */

@media(max-width:1000px) {

	.hero-inner {
		flex-direction: column;
		text-align: center;
	}

	.hero h1 {
		font-size: 44px;
	}

	.bonus-number {
		font-size: 90px;
		margin-top: 40px;
	}

	h2 {
		font-size: 30px;
	}

	.hero {
		padding: 100px 30px 50px;
	}

	section {
		padding: 80px 30px 80px;
	}
}