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

body {
	background: #07070c;
	color: #fff;
    font-size: 19px;
	font-family: 'Inter', sans-serif;
	overflow-x: hidden;
}

h1, h2, h3,h4, h5, h6 {
    font-family: 'Unbounded', sans-serif;
}

h1 span {
    color:#00aaff;
}

h3 {
    font-size: 28px;
    margin: 30px 0 3px;
}

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

.hero {
	padding: 150px 10% 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	text-align: center;
	background: radial-gradient(circle at center, #111122 0%, #07070c 70%);
	overflow: hidden;
}

/* glowing background */
.hero::before {
	content: "";
	position: absolute;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(0, 140, 255, 0.4) 0%, transparent 70%);
	filter: blur(120px);
	animation: pulse 6s infinite ease-in-out;
}

@keyframes pulse {

	0%,
	100% {
		transform: scale(1);
		opacity: 0.6;
	}

	50% {
		transform: scale(1.3);
		opacity: 1;
	}
}

.hero-content {
    max-width: 1000px;
    margin: 80px auto 50px;
}

.hero-content p {
    text-align: left;
}

/* Jackpot circle */
.jackpot-wrapper {
	position: relative;
	perspective: 1000px;
}

.jackpot-number {
	font-family: 'Unbounded', sans-serif;
	font-size: clamp(80px, 12vw, 100px);
	font-weight: 900;
	background: linear-gradient(90deg, #00aaff, #7c3fff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: rotate3d 10s infinite linear;
	text-shadow: 0 0 40px rgba(0, 170, 255, 0.6);
}

@keyframes rotate3d {
	0% {
		transform: rotateY(0deg);
	}

	100% {
		transform: rotateY(360deg);
	}
}

.jackpot-label {
	margin-top: 20px;
	font-size: 18px;
	letter-spacing: 3px;
	text-transform: uppercase;
	opacity: 0.7;
}

/* CTA */
.hero-cta {
	margin-top: 50px;
}

.hero-cta a {
	display: inline-block;
	padding: 18px 50px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	color: #fff;
	background: linear-gradient(90deg, #00aaff, #7c3fff);
	border-radius: 60px;
	box-shadow: 0 0 25px rgba(0, 170, 255, 0.6);
	transition: 0.3s ease;
}

.hero-cta a:hover {
	transform: translateY(-5px);
	box-shadow: 0 0 50px rgba(124, 63, 255, 0.9);
}

/* ===== CASINO TABLE ===== */

.section {
	padding: 80px 10%;
	background: #0f0f18;
}

h2 {
	font-family: 'Unbounded', sans-serif;
	font-size: 36px;
	margin-bottom: 7px;
}

.table2 {
    --bs-table-bg: #111;
}

.table2 th, .table2 td {
    color: #fff!important;
}

.table2 th {
    background: #00aaff;
}

a {
    text-decoration: none;
    color: #00aaff;
}

.casino-table {
	display: grid;
	gap: 20px;
    font-family: 'Unbounded', sans-serif;
}

.casino-card {
	background: #151524;
	padding: 20px 30px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border: 1px solid rgba(255,255,255,0.05);
	transition: 0.3s;
	position: relative;
}

.casino-card:hover {
	transform: scale(1.03);
	border-color: #00aaff;
}

.casino-info {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	min-width: 170px;
	z-index: 2;
}

.casino-logo img {
	width: 150px;
	height: auto;
	border-radius: 10px;
	margin-bottom: 10px;
}

.casino-rating {
	font-size: 16px;
	color: #ffd700;
	margin-bottom: 5px;
}

.casino-rating .star {
	font-size: 18px;
	margin: 0 1px;
	color: #555;
}

.casino-rating .star.active {
	color: #ffd700;
}

.casino-bonus {
	position: absolute;
	left: 50%;
    top: 30%;
	transform: translateX(-50%);
	width: 50%;
	text-align: center;
	font-size: 20px;
	font-weight: 600;
	color: #00aaff;
	z-index: 1;
}

.casino-right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	margin-left: auto;
	z-index: 2;
}

.casino-btn a {
	padding: 12px 28px;
	border-radius: 40px;
	text-decoration: none;
	font-weight: 600;
	background: linear-gradient(90deg, #00aaff, #7c3fff);
	color: #fff;
	transition: 0.3s;
}

.casino-btn a:hover {
	opacity: 0.85;
}

@media (max-width: 768px) {
	.casino-card {
		flex-direction: column;
		text-align: center;
	}

	.casino-bonus {
		position: static;
		transform: none;
		width: 100%;
        margin: 5px 0 30px;
	}

	.casino-right {
		align-items: center;
		margin-left: 0;
		margin-top: 10px;
	}

    .casino-btn {
        margin-bottom: 10px;
    }
}

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

.content {
	padding: 80px 10%;
	background: #07070c;
}

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

.footer {
	padding: 50px;
	text-align: center;
	background: #0f0f18;
	font-size: 14px;
	opacity: 0.6;
}

@media(max-width:1000px) {
	h2 {
		font-size: 30px;
	}

    h3 {
		font-size: 24px;
	}

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

    .jackpot-number {
        font-size: 40px;
    }
}