:root {
	--bg: #0f0f14;
	--text: #f0f0f5;
	--muted: #a1a1b5;
	--accent: #00ffe7;
	--accent2: #ff3c9e;
	--border: #1a1a2e;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: 'Inter', sans-serif;
    font-size: 18px;
	overflow-x: hidden;
}

a {
    text-decoration: none;
}

h2 {
	margin-bottom: 10px!important;
}

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

h3 + ul {
    margin-top: 7px;
}

ul li, ol li {
    margin-bottom: 10px;
}

.bg-sec {
    background-color: #1f1f1f;
}

/* ===== HERO ===== */
.hero-futuristic {
	position: relative;
	min-height: 80vh;
	display: flex;
	align-items: center;
	padding: 50px 8vw 20px;
	overflow: hidden;
}

.hero-main {
	max-width: 1000px;
	z-index: 2;
    margin: 0 auto;
}

.hero-main h1 {
	font-family: 'Anton', sans-serif;
	font-size: 80px;
    text-transform: uppercase;
	line-height: 1.05;
	letter-spacing: -2px;
	margin-bottom: 20px;
	background: linear-gradient(90deg, var(--accent), var(--accent2));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero-main p {
	color: var(--muted);
	font-size: 22px;
	margin-bottom: 40px;
}

.btn-hero {
	padding: 18px 46px;
	background: linear-gradient(135deg, var(--accent), var(--accent2));
	color: #fff;
	font-weight: 700;
    text-transform: uppercase;
	text-decoration: none;
	border-radius: 14px;
	box-shadow: 0 20px 60px rgba(0, 255, 231, .35);
	transition: .3s;
}

.btn-hero:hover {
	transform: translateY(-3px);
	box-shadow: 0 25px 70px rgba(0, 255, 231, .45);
}

/* Floating abstract shapes */
.floating-shape {
	position: absolute;
	border-radius: 50%;
	opacity: .25;
	filter: blur(60px);
	animation: float 8s ease-in-out infinite alternate;
}

.floating-shape.shape1 {
	width: 500px;
	height: 500px;
	background: var(--accent);
	top: -100px;
	left: -100px;
}

.floating-shape.shape2 {
	width: 400px;
	height: 400px;
	background: var(--accent2);
	top: 200px;
	right: -100px;
	animation-delay: 2s;
}

@keyframes float {
	0% {
		transform: translateY(0) translateX(0)
	}

	50% {
		transform: translateY(-30px) translateX(20px)
	}

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

/* Hero right panel (data) */
.hero-side {
	position: absolute;
	right: 8vw;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(15, 15, 20, .5);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 40px;
	width: 280px;
	backdrop-filter: blur(10px);
}

.hero-side h5 {
	font-family: 'JetBrains Mono', monospace;
	font-weight: 600;
	color: var(--accent);
	margin-bottom: 20px;
	letter-spacing: 1px;
}

.hero-side .stat {
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
	font-size: .95rem;
	color: var(--text);
}

/* ===== TABLE ===== */
.casino-table {
	padding: 120px 8vw;
}

.table-modern {
	border-top: 1px solid var(--border);
}

.row-casino {
	display: grid;
	grid-template-columns: 2fr 2fr 1fr 1fr auto;
	gap: 20px;
	padding: 28px 0;
	border-bottom: 1px solid var(--border);
	align-items: center;
	transition: .3s;
}

.row-casino:hover {
	background: rgba(0, 255, 231, .05);
}

.badge-best {
	background: rgba(0, 255, 231, .15);
	color: var(--accent);
	font-weight: 600;
	font-size: .75rem;
	padding: 6px 12px;
	border-radius: 999px;
}

.play-link {
	color: var(--accent2);
	font-weight: 600;
	text-decoration: none;
	transition: .3s;
}

.play-link:hover {
	text-shadow: 0 0 10px var(--accent2);
}


/* ===== 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: #222;
	transform: scale(1.02);
	transition: all 0.3s;
}

table tbody tr:nth-child(even) {
    background-color: #222;
}

.bonus-btn {
	background: var(--accent2);
	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 var(--accent2);
}

.table {
	max-width: 1100px;
	margin: 0 auto 20px;
    --bs-table-bg: #151515!important;
}

.table td {
	font-size: 22px;
    color: #fff!important;
}

.table th {
    color: #fff!important;
    background-color: #222;
}

.table tr:nth-child(even) {
    --bs-table-bg: #222;
}

.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;
	}
  
	.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: 26px;
	}
  
	.table td:nth-child(3) {
	  font-size: 20px;
	}
  
	.bonus-btn {
	  display: block;
	  width: 60%;
	  padding: 14px;
	  font-size: 20px;
      margin: 0 auto 20px;
	  text-align: center;
	}

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

    .lead {
		font-size: 18px;
	}

	.hero-futuristic h1 {
		font-size: 50px;
	}

    .section h2 {
        font-size: 34px!important;
    }
}

html, body {
	overflow-x: hidden;
}

#table {
	text-align: left;
	margin-bottom: 20px;
    margin-top: 20px;
    min-width: 85%;
}

#table th {
	background-color: var(--accent2);
	vertical-align: middle;
}

#table td {
	vertical-align: middle;
}

#table ul li {
    text-align: left;
}

/* ===== CONTENT ===== */
.section {
	padding: 120px 8vw;
}

.section h2 {
	font-family: 'Anton', sans-serif;
	font-size: 3rem;
	margin-bottom: 40px;
	color: var(--accent);
}

.card-soft {
	background: rgba(15, 15, 20, .5);
	border-radius: 24px;
	padding: 40px;
	height: 100%;
	border: 1px solid var(--border);
}

.card-soft p {
	color: var(--muted);
}

/* ===== FINAL ===== */
.final {
	padding: 140px 8vw;
	text-align: center;
	background: #0b0b14;
}

.final h2 {
	font-family: 'Anton', sans-serif;
	font-size: 3rem;
	margin-bottom: 30px;
	background: linear-gradient(90deg, var(--accent), var(--accent2));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.final .btn-hero {
	box-shadow: 0 25px 60px rgba(0, 255, 231, .45);
}

footer {
	padding: 30px 0 10px;
	text-align: center;
	font-size: .9rem;
	color: var(--muted);
	background: #0b0b14;
}