/* ================================================
   PREMIUM DARK THEME - CHICKEN ROAD
   Inspired by slotessentials design
   ================================================ */

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

:root {
	/* Dark Theme Colors */
	--bg-primary: #050505;
	--bg-secondary: #0a0a0a;
	--bg-card: rgba(255, 255, 255, 0.03);
	--bg-glass: rgba(255, 255, 255, 0.05);
	
	/* Gold/Orange Gradient - Sunset */
	--accent-start: #f59e0b;
	--accent-mid: #f97316;
	--accent-end: #ea580c;
	--gradient-gold: linear-gradient(135deg, #f59e0b 0%, #f97316 50%, #ea580c 100%);
	--gradient-gold-text: linear-gradient(90deg, #fbbf24 0%, #f97316 50%, #ea580c 100%);
	
	/* Text Colors */
	--text-primary: #ffffff;
	--text-secondary: rgba(255, 255, 255, 0.7);
	--text-muted: rgba(255, 255, 255, 0.5);
	
	/* Borders */
	--border-subtle: rgba(255, 255, 255, 0.08);
	--border-light: rgba(255, 255, 255, 0.12);
	
	/* Glow Effects */
	--glow-gold: 0 0 60px rgba(249, 115, 22, 0.3);
	--glow-gold-intense: 0 0 100px rgba(249, 115, 22, 0.5);
	--glow-button: 0 0 40px rgba(249, 115, 22, 0.4);
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
	background: var(--bg-primary);
	color: var(--text-primary);
	line-height: 1.6;
	overflow-x: hidden;
}

/* ================================================
   AMBIENT LIGHT EFFECTS
   ================================================ */
.ambient-light {
	position: fixed;
	top: -50%;
	left: -20%;
	width: 80%;
	height: 100%;
	background: radial-gradient(ellipse at center, rgba(249, 115, 22, 0.15) 0%, transparent 60%);
	pointer-events: none;
	z-index: 0;
	animation: ambientPulse 8s ease-in-out infinite;
}

.ambient-light-right {
	left: auto;
	right: -30%;
	top: 20%;
	width: 60%;
	background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
	animation: ambientPulse 10s ease-in-out infinite reverse;
}

@keyframes ambientPulse {
	0%, 100% { opacity: 0.6; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.1); }
}

/* ================================================
   HEADER - GLASSMORPHISM
   ================================================ */
header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(5, 5, 5, 0.8);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border-subtle);
}

.header-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 16px 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
}

.logo-icon {
	width: 40px;
	height: 40px;
	background: var(--gradient-gold);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
}

.logo-text {
	font-size: 20px;
	font-weight: 700;
	color: var(--text-primary);
	letter-spacing: -0.5px;
}

.logo-text span {
	background: var(--gradient-gold-text);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Header Navigation */
.header-nav {
	flex: 1;
	margin: 0 40px;
}

.header-nav ul {
	display: flex;
	list-style: none;
	gap: 8px;
	justify-content: center;
}

.header-nav a {
	display: block;
	padding: 10px 18px;
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.header-nav a:hover {
	color: var(--text-primary);
	background: var(--bg-glass);
}

/* CTA Button - Gold Gradient */
.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	background: var(--gradient-gold);
	border: none;
	border-radius: 10px;
	color: #000;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: var(--glow-button);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--glow-gold-intense);
}

.btn-primary svg {
	width: 16px;
	height: 16px;
}

/* Burger Menu */
.burger-menu {
	display: none;
	flex-direction: column;
	justify-content: space-around;
	width: 28px;
	height: 20px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
}

.burger-menu span {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--text-primary);
	border-radius: 2px;
	transition: all 0.3s ease;
}

/* ================================================
   BREADCRUMBS
   ================================================ */
.breadcrumbs {
	padding: 10px 20px;
	margin-top: 0;
	background: rgba(0, 0, 0, 0.3);
}

.breadcrumbs-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 13px;
}

.breadcrumbs a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	transition: color 0.2s ease;
}

.breadcrumbs a:hover {
	color: #f59e0b;
}

.breadcrumbs .current {
	color: #f59e0b;
}

.breadcrumb-separator {
	color: rgba(255, 255, 255, 0.3);
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero-premium {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 140px 24px 80px;
	overflow: hidden;
}

.hero-content {
	max-width: 900px;
	text-align: center;
	position: relative;
	z-index: 10;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: var(--bg-glass);
	border: 1px solid var(--border-light);
	border-radius: 100px;
	font-size: 13px;
	font-weight: 500;
	color: var(--text-secondary);
	margin-bottom: 32px;
	backdrop-filter: blur(10px);
}

.hero-badge-dot {
	width: 8px;
	height: 8px;
	background: #22c55e;
	border-radius: 50%;
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.5; }
}

.hero-title {
	font-size: clamp(40px, 6vw, 72px);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -2px;
	margin-bottom: 24px;
}

.hero-title .highlight {
	background: var(--gradient-gold-text);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	font-size: 18px;
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto 40px;
	line-height: 1.7;
}

.hero-cta {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

.btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	background: transparent;
	border: 1px solid var(--border-light);
	border-radius: 10px;
	color: var(--text-primary);
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-secondary:hover {
	background: var(--bg-glass);
	border-color: var(--text-muted);
}

/* ================================================
   GLASS CARDS
   ================================================ */
.glass-card {
	background: var(--bg-glass);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--border-subtle);
	border-radius: 16px;
	padding: 32px;
	transition: all 0.3s ease;
}

.glass-card:hover {
	border-color: var(--border-light);
	transform: translateY(-4px);
}

/* ================================================
   STATS SECTION
   ================================================ */
.stats-section {
	position: relative;
	padding: 80px 24px;
	z-index: 10;
}

.stats-container {
	max-width: 1200px;
	margin: 0 auto;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.stat-card {
	background: var(--bg-glass);
	backdrop-filter: blur(20px);
	border: 1px solid var(--border-subtle);
	border-radius: 16px;
	padding: 32px 24px;
	text-align: center;
	transition: all 0.3s ease;
}

.stat-card:hover {
	border-color: rgba(249, 115, 22, 0.3);
	box-shadow: 0 0 40px rgba(249, 115, 22, 0.1);
}

.stat-value {
	font-size: 36px;
	font-weight: 800;
	background: var(--gradient-gold-text);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 8px;
}

.stat-label {
	font-size: 14px;
	color: var(--text-muted);
	font-weight: 500;
}

/* ================================================
   FEATURES SECTION
   ================================================ */
.features-section {
	position: relative;
	padding: 100px 24px;
	z-index: 10;
}

.section-header {
	text-align: center;
	max-width: 600px;
	margin: 0 auto 60px;
}

.section-label {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	background: var(--gradient-gold-text);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 16px;
}

.section-title {
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 800;
	letter-spacing: -1px;
	margin-bottom: 16px;
}

.section-subtitle {
	font-size: 16px;
	color: var(--text-secondary);
	line-height: 1.7;
}

.features-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.feature-card {
	background: var(--bg-glass);
	backdrop-filter: blur(20px);
	border: 1px solid var(--border-subtle);
	border-radius: 20px;
	padding: 40px 32px;
	transition: all 0.3s ease;
}

.feature-card:hover {
	border-color: rgba(249, 115, 22, 0.3);
	transform: translateY(-8px);
}

.feature-icon {
	width: 56px;
	height: 56px;
	background: var(--gradient-gold);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	margin-bottom: 24px;
	box-shadow: var(--glow-button);
}

.feature-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 12px;
}

.feature-desc {
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.7;
}

/* ================================================
   CASINO LIST - PREMIUM STYLE
   ================================================ */
.casinos-section {
	position: relative;
	padding: 100px 24px;
	z-index: 10;
}

.casinos-container {
	max-width: 900px;
	margin: 0 auto;
}

.casino-card-premium {
	display: flex;
	align-items: center;
	gap: 24px;
	background: var(--bg-glass);
	backdrop-filter: blur(20px);
	border: 1px solid var(--border-subtle);
	border-radius: 16px;
	padding: 24px 32px;
	margin-bottom: 16px;
	transition: all 0.3s ease;
}

.casino-card-premium:hover {
	border-color: rgba(249, 115, 22, 0.4);
	box-shadow: 0 0 40px rgba(249, 115, 22, 0.15);
	transform: translateX(8px);
}

.casino-rank {
	font-size: 24px;
	font-weight: 800;
	background: var(--gradient-gold-text);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	min-width: 40px;
}

.casino-logo-premium {
	width: 80px;
	height: 60px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.casino-logo-premium img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.casino-info-premium {
	flex: 1;
}

.casino-name {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 4px;
}

.casino-bonus {
	font-size: 14px;
	color: var(--accent-start);
	font-weight: 600;
}

.casino-features {
	display: flex;
	gap: 16px;
	font-size: 13px;
	color: var(--text-muted);
}

.btn-play {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	background: var(--gradient-gold);
	border: none;
	border-radius: 10px;
	color: #000;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.btn-play:hover {
	transform: scale(1.05);
	box-shadow: var(--glow-button);
}

/* ================================================
   DASHBOARD PREVIEW
   ================================================ */
.dashboard-section {
	position: relative;
	padding: 100px 24px;
	z-index: 10;
}

.dashboard-container {
	max-width: 1000px;
	margin: 0 auto;
}

.dashboard-preview {
	background: var(--bg-glass);
	backdrop-filter: blur(20px);
	border: 1px solid var(--border-subtle);
	border-radius: 24px;
	overflow: hidden;
	box-shadow: var(--glow-gold);
}

.dashboard-header {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px 24px;
	border-bottom: 1px solid var(--border-subtle);
}

.dashboard-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
}

.dashboard-dot.red { background: #ef4444; }
.dashboard-dot.yellow { background: #eab308; }
.dashboard-dot.green { background: #22c55e; }

.dashboard-title {
	font-size: 14px;
	color: var(--text-muted);
	margin-left: 8px;
}

.dashboard-body {
	display: grid;
	grid-template-columns: 200px 1fr;
}

.dashboard-sidebar {
	padding: 24px;
	border-right: 1px solid var(--border-subtle);
}

.sidebar-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 32px;
}

.sidebar-logo-icon {
	width: 32px;
	height: 32px;
	background: var(--gradient-gold);
	border-radius: 8px;
}

.sidebar-logo-text {
	font-size: 14px;
	font-weight: 600;
	color: var(--accent-start);
}

.sidebar-nav {
	list-style: none;
}

.sidebar-nav li {
	margin-bottom: 8px;
}

.sidebar-nav a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 14px;
	color: var(--text-muted);
	text-decoration: none;
	font-size: 13px;
	border-radius: 8px;
	transition: all 0.2s ease;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
	background: var(--bg-glass);
	color: var(--text-primary);
}

.sidebar-nav-icon {
	width: 18px;
	height: 18px;
	opacity: 0.6;
}

.sidebar-section-title {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--text-muted);
	margin: 24px 0 12px;
	padding: 0 14px;
}

.dashboard-main {
	padding: 24px 32px;
}

.dashboard-main-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 8px;
}

.dashboard-main-subtitle {
	font-size: 13px;
	color: var(--text-muted);
	margin-bottom: 24px;
}

.stats-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.stat-box {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: 12px;
	padding: 20px;
}

.stat-box-label {
	font-size: 12px;
	color: var(--text-muted);
	margin-bottom: 8px;
}

.stat-box-value {
	font-size: 28px;
	font-weight: 700;
}

.stat-box-value.gold {
	background: var(--gradient-gold-text);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.stat-box-change {
	font-size: 12px;
	color: #22c55e;
	margin-top: 4px;
}

/* ================================================
   FOOTER
   ================================================ */
footer {
	position: relative;
	background: var(--bg-secondary);
	border-top: 1px solid var(--border-subtle);
	padding: 60px 24px 30px;
	z-index: 10;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
}

.footer-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 40px;
	flex-wrap: wrap;
	gap: 40px;
}

.footer-brand {
	max-width: 300px;
}

.footer-brand .logo {
	margin-bottom: 16px;
}

.footer-brand p {
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.7;
}

.footer-nav {
	display: flex;
	gap: 60px;
}

.footer-nav-column h4 {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 20px;
	color: var(--text-primary);
}

.footer-nav-column ul {
	list-style: none;
}

.footer-nav-column li {
	margin-bottom: 12px;
}

.footer-nav-column a {
	color: var(--text-muted);
	text-decoration: none;
	font-size: 14px;
	transition: color 0.2s ease;
}

.footer-nav-column a:hover {
	color: var(--accent-start);
}

.footer-bottom {
	padding-top: 30px;
	border-top: 1px solid var(--border-subtle);
	text-align: center;
}

.copyright {
	font-size: 13px;
	color: var(--text-muted);
	margin-bottom: 16px;
}

.warning {
	font-size: 12px;
	color: var(--text-muted);
	max-width: 700px;
	margin: 0 auto;
	opacity: 0.7;
}

/* ================================================
   CONTENT SECTION
   ================================================ */
.content-section {
	position: relative;
	padding: 80px 24px;
	z-index: 10;
}

.content-container {
	max-width: 800px;
	margin: 0 auto;
}

.content-container h2 {
	font-size: 28px;
	font-weight: 700;
	margin: 48px 0 20px;
	letter-spacing: -0.5px;
}

.content-container h3 {
	font-size: 20px;
	font-weight: 600;
	margin: 32px 0 16px;
}

.content-container p {
	font-size: 16px;
	color: var(--text-secondary);
	line-height: 1.8;
	margin-bottom: 20px;
}

.content-container ul,
.content-container ol {
	margin: 0 0 24px 24px;
	color: var(--text-secondary);
}

.content-container li {
	margin-bottom: 12px;
	line-height: 1.7;
}

.content-container a {
	color: var(--accent-start);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s ease;
}

.content-container a:hover {
	border-color: var(--accent-start);
}

/* Premium Tables */
.content-container table {
	width: 100%;
	border-collapse: collapse;
	margin: 24px 0;
	background: var(--bg-glass);
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--border-subtle);
}

.content-container th,
.content-container td {
	padding: 16px 20px;
	text-align: left;
	border-bottom: 1px solid var(--border-subtle);
}

.content-container th {
	background: rgba(249, 115, 22, 0.1);
	font-weight: 600;
	font-size: 14px;
	color: var(--accent-start);
}

.content-container td {
	font-size: 14px;
	color: var(--text-secondary);
}

.content-container tr:last-child td {
	border-bottom: none;
}

/* FAQ Premium */
.faq-premium {
	margin-top: 60px;
}

.faq-item-premium {
	background: var(--bg-glass);
	border: 1px solid var(--border-subtle);
	border-radius: 12px;
	margin-bottom: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item-premium:hover {
	border-color: var(--border-light);
}

.faq-item-premium h3 {
	padding: 20px 24px;
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.faq-item-premium h3::after {
	content: "+";
	font-size: 20px;
	color: var(--accent-start);
}

.faq-item-premium .faq-answer {
	padding: 0 24px 20px;
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.7;
}

/* TOC Premium */
.toc-box-premium {
	background: var(--bg-glass);
	border: 1px solid var(--border-subtle);
	border-left: 3px solid var(--accent-start);
	border-radius: 12px;
	padding: 24px 28px;
	margin: 32px 0;
}

.toc-box-premium .toc-box-title {
	font-size: 14px;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
}

.toc-box-premium .toc-box-list {
	list-style: none;
	padding: 0;
	margin: 0;
	counter-reset: toc;
}

.toc-box-premium .toc-box-list li {
	counter-increment: toc;
	margin-bottom: 10px;
}

.toc-box-premium .toc-box-list a {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 14px;
	padding: 8px 12px;
	border-radius: 6px;
	transition: all 0.2s ease;
}

.toc-box-premium .toc-box-list a::before {
	content: counter(toc) ".";
	color: var(--accent-start);
	font-weight: 600;
	min-width: 24px;
}

.toc-box-premium .toc-box-list a:hover {
	background: rgba(249, 115, 22, 0.1);
	color: var(--text-primary);
}

/* ================================================
   EXISTING CONTENT STYLES (for content pages)
   ================================================ */

/* Main container */
main {
	max-width: 1000px;
	margin: 0 auto;
	padding: 100px 24px 40px;
	position: relative;
	z-index: 10;
}

/* Hero Section - Premium Style */
.hero {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 40px;
	background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(234, 88, 12, 0.05) 50%, rgba(5, 5, 5, 0.9) 100%);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(249, 115, 22, 0.2);
	border-radius: 24px;
	padding: 40px;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-gold);
}

.hero::after {
	content: '';
	position: absolute;
	top: -100px;
	right: -100px;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
	pointer-events: none;
}

.hero__info {
	width: calc(100% - 260px);
	position: relative;
	z-index: 2;
}

.hero h1 {
	width: 100%;
	margin-bottom: 32px;
	line-height: 1.15;
	font-size: clamp(26px, 4vw, 40px);
	font-weight: 800;
	letter-spacing: -1px;
	text-align: center;
	background: linear-gradient(135deg, #ffffff 0%, #fbbf24 40%, #f97316 70%, #ea580c 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 0 80px rgba(249, 115, 22, 0.5);
}

.hero p {
	margin-bottom: 16px;
	color: var(--text-secondary);
	text-align: center;
}

.hero__info table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 8px;
	background: transparent;
	border: none;
	margin-top: 8px;
}

.hero__info table tbody {
	width: 100%;
}

.hero__info table td {
	padding: 16px 12px;
	vertical-align: top;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 12px;
	text-align: center;
	transition: all 0.3s ease;
}

.hero__info table td:hover {
	background: rgba(249, 115, 22, 0.08);
	border-color: rgba(249, 115, 22, 0.2);
	transform: translateY(-2px);
}

.hero table p {
	margin-bottom: 4px;
}

.hero__table-heading {
	font-weight: 500;
	font-size: 11px;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.8px;
	margin-bottom: 6px !important;
}

.hero__table-text {
	font-weight: 700;
	font-size: 15px;
	background: linear-gradient(90deg, #ffffff 0%, #fbbf24 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero__box {
	order: -1;
	width: 220px;
	position: relative;
	z-index: 2;
}

.hero__thumb {
	display: block;
	width: 220px;
	height: 165px;
	margin: 0 auto 20px;
	overflow: hidden;
	border-radius: 16px;
	border: 2px solid rgba(249, 115, 22, 0.3);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 40px rgba(249, 115, 22, 0.15);
	transition: all 0.4s ease;
}

.hero__thumb:hover {
	transform: scale(1.03) rotate(1deg);
	border-color: rgba(249, 115, 22, 0.5);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 60px rgba(249, 115, 22, 0.25);
}

.hero__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.hero__thumb:hover img {
	transform: scale(1.1);
}

.hero__button {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 220px;
	margin: 0 auto;
	min-height: 52px;
	padding: 14px 24px;
	border-radius: 12px;
	background: var(--gradient-gold);
	border: none;
	outline: none;
	color: #000;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	transition: all .3s ease;
	box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4), 0 0 40px rgba(249, 115, 22, 0.2);
	position: relative;
	overflow: hidden;
}

.hero__button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s ease;
}

.hero__button:hover::before {
	left: 100%;
}

.hero__button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(249, 115, 22, 0.5), 0 0 60px rgba(249, 115, 22, 0.3);
}

/* Content Section */
.content {
	margin-top: 0;
	padding: 40px;
	background: var(--bg-glass);
	backdrop-filter: blur(20px);
	border: 1px solid var(--border-subtle);
	border-radius: 20px;
}

.content p {
	margin-bottom: 20px;
	line-height: 1.8;
	color: var(--text-secondary);
	font-size: 16px;
}

.content a {
	color: var(--accent-start);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s ease;
}

.content a:hover {
	border-color: var(--accent-start);
}

.content ul, .content ol {
	margin-bottom: 24px;
	padding-left: 24px;
	color: var(--text-secondary);
}

.content li {
	margin-bottom: 10px;
	line-height: 1.7;
}

.content img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 24px auto 32px;
	border-radius: 12px;
	border: 1px solid var(--border-subtle);
}

.content h1 {
	margin-bottom: 24px;
	text-align: center;
	font-size: clamp(28px, 5vw, 42px);
	font-weight: 800;
	letter-spacing: -1px;
	background: linear-gradient(135deg, #ffffff 0%, #f59e0b 50%, #ea580c 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 0 60px rgba(249, 115, 22, 0.3);
}

.content h2 {
	text-align: center;
	margin: 56px 0 24px;
	font-size: 26px;
	font-weight: 700;
	letter-spacing: -0.5px;
	position: relative;
	padding-bottom: 16px;
	background: linear-gradient(90deg, #ffffff 0%, #fbbf24 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.content h2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: var(--gradient-gold);
	border-radius: 3px;
}

.content h3 {
	text-align: center;
	margin: 40px 0 20px;
	font-size: 20px;
	font-weight: 600;
	color: var(--text-primary);
	position: relative;
}

.content h3::before {
	content: '✦';
	margin-right: 10px;
	color: var(--accent-start);
	font-size: 14px;
}

.content h3::after {
	content: '✦';
	margin-left: 10px;
	color: var(--accent-start);
	font-size: 14px;
}

.content h4 {
	text-align: center;
	margin: 32px 0 16px;
	font-size: 18px;
	font-weight: 600;
	color: var(--accent-start);
}

.content h5 {
	text-align: center;
	margin: 28px 0 14px;
	font-size: 16px;
	font-weight: 600;
	color: var(--text-secondary);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.content h6 {
	text-align: center;
	margin: 24px 0 12px;
	font-size: 14px;
	font-weight: 600;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 1.5px;
}

/* Content Tables */
.content table,
.wp-block-table table {
	width: 100%;
	border-collapse: collapse;
	margin: 24px 0;
	background: var(--bg-card);
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--border-subtle);
}

.content table td,
.content table th,
.wp-block-table td,
.wp-block-table th {
	padding: 14px 16px;
	text-align: left;
	border: none;
	border-bottom: 1px solid var(--border-subtle);
}

.content table tr:first-child td,
.wp-block-table tr:first-child td {
	background: rgba(249, 115, 22, 0.1);
	font-weight: 600;
	color: var(--accent-start);
	font-size: 13px;
}

.content table td,
.wp-block-table td {
	font-size: 14px;
	color: var(--text-secondary);
}

.content table tr:last-child td,
.wp-block-table tr:last-child td {
	border-bottom: none;
}

.content blockquote {
	border-left: 3px solid var(--accent-start);
	padding-left: 20px;
	margin: 24px 0;
	font-style: italic;
	color: var(--text-secondary);
}

/* Figure wrapping tables */
figure.wp-block-table {
	margin: 24px 0;
}

/* Casinos List */
.casinos-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 24px 0;
}

.casino-item {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 20px 24px;
	background: var(--bg-glass);
	backdrop-filter: blur(20px);
	border: 1px solid var(--border-subtle);
	border-radius: 14px;
	transition: all 0.3s ease;
}

.casino-item:hover {
	border-color: rgba(249, 115, 22, 0.4);
	transform: translateX(8px);
	box-shadow: 0 0 30px rgba(249, 115, 22, 0.1);
}

.casino-logo {
	width: 100px;
	flex-shrink: 0;
}

.casino-logo img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0;
	border-radius: 8px;
}

.casino-info {
	flex: 1;
}

.casino-info h3 {
	margin: 0 0 8px 0;
	padding: 0;
	color: var(--text-primary);
	font-size: 18px;
	font-weight: 700;
	text-align: left;
}

.casino-info h3::before,
.casino-info h3::after {
	display: none;
	content: none;
}

.casino-info p {
	margin: 0;
	color: var(--text-secondary);
	font-size: 14px;
}

.bonus {
	color: var(--accent-start);
	font-weight: 600;
}

.casino-button,
.play-btn {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	min-height: 48px;
	padding: 12px 24px;
	border-radius: 10px;
	background: var(--gradient-gold);
	border: none;
	outline: none;
	color: #000;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	transition: all .3s ease;
	white-space: nowrap;
}

.casino-button:hover,
.play-btn:hover {
	transform: scale(1.05);
	box-shadow: var(--glow-button);
}

/* Play Button List */
.play__button-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 16px;
	margin: 24px 0;
}

.play__button {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	min-height: 48px;
	padding: 12px 24px;
	border-radius: 10px;
	background: var(--gradient-gold);
	border: none;
	outline: none;
	color: #000;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	transition: all .3s ease;
	box-shadow: var(--glow-button);
}

.play__button:hover {
	transform: translateY(-2px);
	box-shadow: var(--glow-gold-intense);
}

/* TOC Box - Premium Style */
.toc-box {
	position: relative;
	background: linear-gradient(135deg, rgba(249, 115, 22, 0.08) 0%, rgba(234, 88, 12, 0.03) 100%);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(249, 115, 22, 0.2);
	border-radius: 16px;
	padding: 20px 24px;
	margin: 24px auto 32px;
	max-width: 100%;
	overflow: hidden;
}

.toc-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--gradient-gold);
}

.toc-box::after {
	content: '📑';
	position: absolute;
	top: 16px;
	right: 20px;
	font-size: 20px;
	opacity: 0.3;
}

.toc-box-title {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 14px 0;
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
	background: linear-gradient(90deg, #ffffff 0%, #fbbf24 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.toc-box-title:hover {
	transform: translateX(4px);
}

.toc-box-title::before {
	content: "☰";
	font-size: 14px;
	-webkit-text-fill-color: var(--accent-start);
}

.toc-box-title .toc-toggle {
	margin-left: auto;
	font-size: 12px;
	-webkit-text-fill-color: var(--text-muted);
	transition: transform .3s ease;
}

.toc-box.collapsed .toc-toggle {
	transform: rotate(-90deg);
}

.toc-box-list {
	list-style: none;
	padding: 0;
	margin: 0;
	counter-reset: toc-counter;
	border-top: 1px solid rgba(249, 115, 22, 0.15);
	padding-top: 12px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 6px 16px;
}

.toc-box.collapsed .toc-box-list {
	display: none;
}

.toc-box-list li {
	counter-increment: toc-counter;
	margin-bottom: 0;
	padding-left: 0;
}

.toc-box-list a {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.4;
	padding: 8px 10px;
	border-radius: 6px;
	transition: all .25s ease;
	border: 1px solid transparent;
	position: relative;
}

.toc-box-list a::before {
	content: counter(toc-counter);
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	background: rgba(249, 115, 22, 0.15);
	border-radius: 5px;
	color: var(--accent-start);
	font-weight: 700;
	font-size: 11px;
	flex-shrink: 0;
	transition: all 0.25s ease;
}

.toc-box-list a:hover {
	background: rgba(249, 115, 22, 0.1);
	border-color: rgba(249, 115, 22, 0.2);
	color: var(--text-primary);
	transform: translateX(4px);
}

.toc-box-list a:hover::before {
	background: var(--gradient-gold);
	color: #000;
	box-shadow: 0 0 15px rgba(249, 115, 22, 0.4);
}

/* FAQ Section */
.faq {
	margin-top: 48px;
}

.faq h2 {
	margin-bottom: 32px;
	text-align: center;
	font-size: 28px;
	background: linear-gradient(90deg, #ffffff 0%, #fbbf24 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.faq h2::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background: var(--gradient-gold);
	border-radius: 3px;
	margin: 16px auto 0;
}

.faq-item {
	padding: 20px 0;
	border-bottom: 1px solid var(--border-subtle);
	margin-bottom: 0;
}

.faq-item:last-child {
	border-bottom: none;
}

.faq h3 {
	color: var(--text-primary);
	margin: 0 0 12px 0;
	font-size: 16px;
	font-weight: 600;
	text-align: left;
}

.faq h3::before,
.faq h3::after {
	display: none;
	content: none;
}

.faq-item p {
	margin: 0;
	color: var(--text-secondary);
}

/* Article Meta */
.article-meta {
	display: flex;
	justify-content: center;
	gap: 24px;
	margin-bottom: 32px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--border-subtle);
	font-size: 14px;
	color: var(--text-muted);
}

.article-meta span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.article-meta svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

/* Smooth scroll target highlight */
h2[id]:target,
h3[id]:target {
	animation: highlightPremium 2s ease;
}

@keyframes highlightPremium {
	0% { 
		background: rgba(249, 115, 22, 0.2); 
		border-radius: 4px;
		padding-left: 8px;
		margin-left: -8px;
	}
	100% { 
		background: transparent; 
	}
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.dashboard-body {
		grid-template-columns: 1fr;
	}
	
	.dashboard-sidebar {
		display: none;
	}
}

@media (max-width: 768px) {
	.header-nav {
		position: fixed;
		top: 70px;
		left: 0;
		right: 0;
		background: rgba(5, 5, 5, 0.98);
		backdrop-filter: blur(20px);
		padding: 20px;
		opacity: 0;
		pointer-events: none;
		transform: translateY(-20px);
		transition: all 0.3s ease;
		border-bottom: 1px solid var(--border-subtle);
	}
	
	.header-nav.active {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}
	
	.header-nav ul {
		flex-direction: column;
		gap: 4px;
	}
	
	.header-nav a {
		padding: 14px 16px;
	}
	
	.burger-menu {
		display: flex;
		margin-left: auto;
	}
	
	.btn-primary {
		display: none;
	}
	
	.hero-cta {
		flex-direction: column;
		align-items: center;
	}
	
	.features-grid {
		grid-template-columns: 1fr;
	}
	
	.stats-grid {
		grid-template-columns: 1fr 1fr;
	}
	
	.casino-card-premium {
		flex-direction: column;
		text-align: center;
		gap: 16px;
	}
	
	.casino-features {
		justify-content: center;
		flex-wrap: wrap;
	}
	
	.footer-top {
		flex-direction: column;
	}
	
	.footer-nav {
		flex-wrap: wrap;
		gap: 30px;
	}
	
	/* Content pages responsive */
	main {
		padding: 90px 16px 30px;
	}
	
	.hero {
		padding: 28px 20px;
		border-radius: 20px;
	}
	
	.hero::after {
		width: 200px;
		height: 200px;
		top: -50px;
		right: -50px;
	}
	
	.hero__info {
		width: 100%;
		order: 2;
	}
	
	.hero__box {
		order: 1;
		width: 180px;
		margin: 0 auto 24px;
	}
	
	.hero__thumb {
		width: 180px;
		height: 135px;
	}
	
	.hero__button {
		max-width: 180px;
		font-size: 14px;
		padding: 12px 20px;
	}
	
	.hero h1 {
		text-align: center;
		font-size: 24px;
		margin-bottom: 24px;
	}
	
	.hero__info table {
		border-spacing: 6px;
	}
	
	.hero__info table,
	.hero__info table tr {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: stretch;
	}
	
	.hero__info table td {
		width: calc(50% - 6px);
		text-align: center;
		padding: 12px 8px;
	}
	
	.hero__table-heading {
		font-size: 10px;
	}
	
	.hero__table-text {
		font-size: 13px;
	}
	
	.content {
		padding: 24px;
	}
	
	.content h2 {
		font-size: 20px;
		margin-top: 40px;
		padding-bottom: 14px;
	}
	
	.content h2::after {
		width: 60px;
	}
	
	.content h3 {
		font-size: 18px;
		margin: 32px 0 16px;
	}
	
	.content h3::before,
	.content h3::after {
		font-size: 12px;
	}
	
	.casino-item {
		flex-direction: column;
		text-align: center;
		gap: 16px;
	}
	
	.casino-info h3 {
		font-size: 16px;
		text-align: center;
	}
	
	.content table {
		display: block;
		overflow-x: auto;
	}
	
	.toc-box {
		padding: 18px 16px;
		margin: 20px 0 28px;
	}
	
	.toc-box::after {
		display: none;
	}
	
	.toc-box-title {
		font-size: 15px;
		margin-bottom: 12px;
	}
	
	.toc-box-list {
		grid-template-columns: 1fr;
		gap: 4px;
	}
	
	.toc-box-list a {
		padding: 7px 8px;
		font-size: 12px;
		gap: 8px;
	}
	
	.toc-box-list a::before {
		min-width: 20px;
		height: 20px;
		font-size: 10px;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 32px;
		letter-spacing: -1px;
	}
	
	.stats-grid {
		grid-template-columns: 1fr;
	}
	
	.stat-card {
		padding: 24px 20px;
	}
	
	.dashboard-preview {
		border-radius: 16px;
	}
	
	.content h1 {
		font-size: 24px;
	}
	
	.content h2 {
		font-size: 18px;
	}
	
	.content h2::after {
		width: 50px;
	}
	
	.content h3 {
		font-size: 16px;
	}
	
	.content h3::before,
	.content h3::after {
		font-size: 10px;
		margin: 0 6px;
	}
	
	.hero h1 {
		font-size: 22px;
	}
	
	.faq h2 {
		font-size: 22px;
	}
}

/* ===================================
   AUTHOR BOX
   =================================== */

.author-box {
	margin: 60px 0 40px;
	padding: 0 20px;
}

.author-box-container {
	display: flex;
	gap: 28px;
	align-items: flex-start;
	background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(234, 88, 12, 0.05) 100%);
	border: 1px solid rgba(245, 158, 11, 0.2);
	border-radius: 20px;
	padding: 32px;
	max-width: 900px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}

.author-box-container::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
	pointer-events: none;
}

.author-photo {
	flex-shrink: 0;
}

.author-photo img {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid rgba(245, 158, 11, 0.5);
	box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
}

.author-info {
	flex: 1;
}

.author-label {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #f59e0b;
	background: rgba(245, 158, 11, 0.15);
	padding: 4px 12px;
	border-radius: 20px;
	margin-bottom: 10px;
}

.author-name {
	font-size: 22px;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 12px;
	background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.author-bio {
	font-size: 14px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.75);
	margin: 0 0 16px;
}

.author-meta {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.author-meta span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
	background: rgba(255, 255, 255, 0.05);
	padding: 6px 14px;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Author Box Responsive */
@media (max-width: 640px) {
	.author-box-container {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 24px 20px;
		gap: 20px;
	}
	
	.author-photo img {
		width: 100px;
		height: 100px;
	}
	
	.author-name {
		font-size: 20px;
	}
	
	.author-bio {
		font-size: 13px;
	}
	
	.author-meta {
		justify-content: center;
	}
}
