@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap');

body {
	background-color: #0a0a0a;
	color: #fff;
	font-family: 'Orbitron', sans-serif;
}

a {
	text-decoration: none;
}

h2 {
	color: #ff00ff;
}

h3 {
	margin-bottom: 3px;
	margin-top: 30px;
}

ul li {
	margin-bottom: 10px;
}

/* Hero Section */
.hero {
	position: relative;
	height: 90vh;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	background: rgba(0, 0, 0, 0.7);
	overflow: hidden;
}

.hero::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 1000px;
}

.hero h1 {
	font-size: 3rem;
	color: #ff00ff;
}

.hero .btn {
	font-size: 1.25rem;
	padding: 12px 40px;
	margin-top: 20px;
	color: #fff;
	background: #ff00ff;
	border-radius: 50px;
	box-shadow: 0 0 20px #ff00ff;
	animation: pulse 2s infinite;
}

@keyframes pulse {

	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 0 20px #ff00ff;
	}

	50% {
		transform: scale(1.1);
		box-shadow: 0 0 40px #ff00ff;
	}
}

/* Spinning Roulette */
.roulette-wheel {
	position: absolute;
	width: 300px;
	bottom: 10%;
	right: 10%;
	animation: spin 8s linear infinite;
	opacity: 0.7;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

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

/* Falling Chips */
.chip {
	position: absolute;
	width: 100px;
	animation: fall linear infinite;
}

.chip1 {
	left: 20%;
	animation-duration: 6s;
	top: -30%;
}

.chip2 {
	left: 70%;
	animation-duration: 8s;
	top: -35%;
}

@keyframes fall {
	0% {
		transform: translateY(-20px) rotate(0deg);
		opacity: 1;
	}

	100% {
		transform: translateY(100vh) rotate(360deg);
		opacity: 0;
	}
}

@keyframes fly {
	0% {
		transform: translateX(0) rotate(0deg);
		opacity: 1;
	}

	50% {
		transform: translateX(-100px) rotate(15deg);
	}

	100% {
		transform: translateX(200px) rotate(-15deg);
		opacity: 0;
	}
}

/* Top Casinos Cards */
.casino-card {
	background: #111;
	border-radius: 15px;
	overflow: hidden;
	transition: transform 0.3s, box-shadow 0.3s;
	position: relative;
}

.casino-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 0 20px #ff00ff;
}

.casino-card img {
	width: 100%;
	height: 180px;
	object-fit: cover;
}

.casino-card .card-body {
	padding: 15px;
}

.casino-card .card-title {
	color: #ff00ff;
}

/* Neon Table */
table {
	background: #111;
	border-radius: 10px;
	overflow: hidden;
	vertical-align: middle;
}

table thead {
	background: #222;
}

table th,
table td {
	color: #fff;
	padding: 15px;
	text-align: center;
	vertical-align: middle;
}

table tbody tr:hover {
	background: #333;
	transform: scale(1.02);
	transition: all 0.3s;
}

.bonus-btn {
	background: #ff00ff;
	color: #fff;
	border: none;
	border-radius: 50px;
	padding: 15px 25px;
	transition: all 0.3s;
}

.bonus-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 0 20px #ff00ff;
}

.table {
	max-width: 1100px;
	margin: 0 auto 20px;
}

.table td {
	font-size: 22px
}

.table img {
	min-height: 70px!important;
}

/* ===== MOBILE CARDS ===== */
@media (max-width: 768px) {
	.table-responsive {
	  overflow: visible;
	}
  
	.table,
	.table thead,
	.table tbody,
	.table tr,
	.table td {
	  display: block;
	  width: 100%;
	}
  
	.table thead {
	  display: none;
	}
  
	.table tbody tr {
	  background: #111;
	  border-radius: 14px;
	  margin-bottom: 18px;
	  padding: 15px;
	  box-shadow: 0 10px 25px rgba(0,0,0,.4);
	  transform: none !important;
	}
  
	.table tbody tr:hover {
	  background: #111;
	}
  
	.table td {
	  padding: 10px 0;
	  font-size: 18px;
	}
  
	.table td:first-child {
	  text-align: center;
	}
  
	.table img {
	  height: 90px!important;
	  margin: 10px auto;
	}

	.table td:nth-child(2) {
	  font-weight: 600;
	  font-size: 20px;
	}
  
	.table td:nth-child(3) {
	  font-size: 20px;
	}
  
	.bonus-btn {
	  display: block;
	  width: 100%;
	  padding: 14px;
	  font-size: 18px;
	  text-align: center;
	}

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

html, body {
	overflow-x: hidden;
}

#table {
	text-align: left;
	margin-bottom: 20px;
}

#table th {
	background-color: #ff00ff;
	vertical-align: middle;
}

#table td {
	vertical-align: middle;
}

/* Steps */
.steps .step {
	background: #111;
	border-radius: 15px;
	padding: 20px;
	text-align: center;
	transition: transform 0.3s, box-shadow 0.3s;
}

.steps .step:hover {
	transform: translateY(-5px);
	box-shadow: 0 0 20px #ff00ff;
}

.steps .step i {
	font-size: 2.5rem;
	color: #ff00ff;
	margin-bottom: 10px;
}

/* Testimonials */
.testimonial {
	background: #111;
	border-radius: 15px;
	padding: 20px;
	text-align: center;
	margin: 10px;
	transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial:hover {
	transform: translateY(-5px);
	box-shadow: 0 0 20px #ff00ff;
}

.testimonial i {
	color: #ff00ff;
	margin-bottom: 10px;
}

/* Footer CTA */
.footer-cta {
	background: #222;
	text-align: center;
	padding: 30px 0px 10px;
}

.footer-cta .btn {
	font-size: 1.5rem;
	padding: 15px 50px;
	border-radius: 50px;
	animation: pulse 2s infinite;
	background: #ff00ff;
	color: #0a0a0a;
	box-shadow: 0 0 20px #ff00ff;
}

@media only screen and (max-width:1000px) {
	.lead {
		font-size: 18px;
	}

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