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

/* Colors */
:root {
	--bg-primary: #0f0f0f;
	--bg-secondary: #1a1a1a;
	--bg-tertiary: #252525;
	--text-primary: #ffffff;
	--text-secondary: #cccccc;
	--text-muted: #888888;
	--accent-gold: #ffd700;
	--accent-orange: #ff6b35;
	--border-color: #333333;
	--hover-bg: #2a2a2a;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	background: var(--bg-primary);
	color: var(--text-primary);
	line-height: 1.6;
}

/* Header */
.header {
	background: var(--bg-secondary);
	border-bottom: 1px solid var(--border-color);
	position: sticky;
	top: 0;
	z-index: 100;
}
.main-content img {
	max-width: 100%;
	height: auto;
	margin: 10px auto;
	display: block;
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 70px;
}

.logo img {
	height: 50px;
	width: auto;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 30px;
}

.nav-link {
	color: var(--text-secondary);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s;
}

.nav-link:hover {
	color: var(--accent-gold);
}

.cta-button {
	background: var(--accent-orange);
	color: white;
	padding: 12px 24px;
	text-decoration: none;
	border-radius: 6px;
	font-weight: 600;
	transition: background 0.2s;
}

@media (max-width: 768px) {
	.cta-button {
		display: none;
	}
}


.cta-button:hover {
	background: #e55a2b;
}

.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	color: var(--text-primary);
	font-size: 24px;
	cursor: pointer;
}

.mobile-menu {
	display: none;
	background: var(--bg-secondary);
	border-top: 1px solid var(--border-color);
}

.mobile-nav-item {
	padding: 15px 20px;
	border-bottom: 1px solid var(--border-color);
}

.mobile-nav-link {
	color: var(--text-secondary);
	text-decoration: none;
	font-weight: 500;
}

.mobile-cta {
	padding: 20px;
}

.mobile-cta-button {
	background: var(--accent-orange);
	color: white;
	padding: 12px 24px;
	text-decoration: none;
	border-radius: 6px;
	font-weight: 600;
	transition: background 0.2s;
}

/* Hero Section */
.hero {
	padding: 25px 0 50px;
	background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

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

.hero-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.hero-text {
	width: 54%;
}
.hero-thumb {
	width: 44%;
}
.hero-thumb img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
}

.hero h1 {
	font-size: 45px;
	font-weight: 700;
	margin-bottom: 30px;
	color: var(--text-primary);
}

@media (max-width: 900px) {
	.hero-text {
		width: 100%;
	}
	.hero-thumb {
		display: none;
	}
}

.hero-description {
	font-size: 18px;
	color: var(--text-secondary);
	margin-bottom: 30px;
}
.hero-text img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto 25px;
}

.hero-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
}

.btn {
	padding: 14px 28px;
	text-decoration: none;
	border-radius: 6px;
	font-weight: 600;
	transition: all 0.2s;
	border: 2px solid;
}

.btn-outline {
	color: var(--accent-gold);
	border-color: var(--accent-gold);
	background: transparent;
}

.btn-outline:hover {
	background: var(--accent-gold);
	color: var(--bg-primary);
}


.btn-demo {
	color: #fff;
	border-color: #1c7ff6;
	background: #1c7ff6;
}

.btn-demo:hover {
	background: #1031b6;
	color: #fff;
}

.btn-primary {
	background: var(--accent-orange);
	color: white;
	border-color: var(--accent-orange);
}

.btn-primary:hover {
	background: #e55a2b;
	border-color: #e55a2b;
}

.hero-image {
	text-align: center;
}

.game-image {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	border: 2px solid var(--border-color);
}

/* Main Content */
.main-content {
	padding: 60px 0;
}

.content-section {
	padding-top: 20px;
	margin-bottom: 50px;
}

h2 {
	font-size: 32px;
	margin-bottom: 25px;
	color: var(--text-primary);
	border-left: 4px solid var(--accent-gold);
	padding-left: 20px;
}

h3 {
	font-size: 26px;
	margin-bottom: 20px;
	color: var(--text-primary);
}

h4 {
	font-size: 20px;
	margin-bottom: 15px;
	color: var(--text-secondary);
}

h5 {
	font-size: 18px;
	margin-bottom: 12px;
	color: var(--text-secondary);
}

h6 {
	font-size: 16px;
	margin-bottom: 10px;
	color: var(--text-muted);
}

p {
	color: var(--text-secondary);
	margin-bottom: 15px;
}
.content-section ul,
.content-section ol {
	margin: 0 0 25px 25px;
}
.content-section ul li,
.content-section ol li {
	padding-bottom: 4px;
}

/* Table */
.table-wrapper {
	overflow-x: auto;
	background: var(--bg-secondary);
	border-radius: 8px;
	border: 1px solid var(--border-color);
	margin-bottom: 25px;
}

.game-stats {
	width: 100%;
	border-collapse: collapse;
}

.game-stats th {
	background: var(--bg-tertiary);
	color: var(--text-primary);
	padding: 15px;
	font-weight: 600;
	text-align: left;
	border-bottom: 2px solid var(--border-color);
}

.game-stats td {
	padding: 15px;
	color: var(--text-secondary);
	border-bottom: 1px solid var(--border-color);
}

.game-stats tr:last-child td {
	border-bottom: none;
}

.game-stats tr:hover {
	background: var(--hover-bg);
}

/* Feature List */
.feature-list {
	list-style: none;
	display: grid;
	gap: 15px;
	margin-top: 20px;
	margin-bottom: 20px;
}

.feature-list li {
	background: var(--bg-secondary);
	padding: 10px 20px 10px 20px;
	border-radius: 8px;
	border-left: 4px solid var(--accent-orange);
	display: flex;
	align-items: center;
	gap: 15px;
}

.feature-icon {
	font-size: 24px;
	flex-shrink: 0;
}

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

.faq-item {
	background: var(--bg-secondary);
	border-radius: 8px;
	margin-bottom: 15px;
	border: 1px solid var(--border-color);
}

.faq-question {
	padding: 20px;
	cursor: pointer;
	font-weight: 600;
	color: var(--text-primary);
	transition: background 0.2s;
}

.faq-question:hover {
	background: var(--hover-bg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.faq-answer.active {
	max-height: 200px;
}

.faq-answer p {
	padding: 0 20px 20px;
	color: var(--text-secondary);
}

/* Footer */
.footer {
	background: var(--bg-secondary);
	border-top: 1px solid var(--border-color);
	padding: 40px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 40px;
	margin-bottom: 30px;
}

.footer-section h4 {
	color: var(--text-primary);
	margin-bottom: 15px;
}

.footer-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer-links a {
	color: var(--text-secondary);
	text-decoration: none;
	transition: color 0.2s;
}

.footer-links a:hover {
	color: var(--accent-gold);
}

.responsible-gaming p {
	color: var(--text-muted);
	font-size: 14px;
}

.footer-logos {
	display: flex;
	gap: 20px;
	justify-content: center;
	margin-bottom: 20px;
}

.footer-logo img {
	height: 40px;
	width: auto;
	opacity: 0.7;
	transition: opacity 0.2s;
}

.footer-logo img:hover {
	opacity: 1;
}

.footer-copyright {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid var(--border-color);
}

.footer-copyright p {
	color: var(--text-muted);
	font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.nav-menu {
		display: none;
	}

	.mobile-menu-toggle {
		display: block;
	}

	.mobile-menu.active {
		display: block;
	}

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

	.hero-buttons {
		justify-content: center;
		flex-wrap: wrap;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.footer-logos {
		flex-wrap: wrap;
		justify-content: center;
	}

	h2 {
		font-size: 28px;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 15px;
	}

	.hero {
		padding: 60px 0;
	}

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

	.hero-description {
		font-size: 16px;
	}

	.btn {
		padding: 12px 20px;
		font-size: 14px;
	}

	.feature-list li {
		flex-direction: column;
		text-align: center;
		gap: 10px;
	}
}

/* Demo Game Block */

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

.demo-game-wrapper {
	position: relative;
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.demo-game-placeholder {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	/* 16:9 ratio */
	background: var(--bg-tertiary);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	background-size: cover;
	background-position: center;
}

.demo-game-placeholder::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 215, 0, 0.2) 100%);
}

.play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	background: var(--accent-orange);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s, background 0.2s;
	z-index: 2;
}

.play-button:hover {
	transform: translate(-50%, -50%) scale(1.1);
	background: #e55a2b;
}

.play-button::after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-top: 15px solid transparent;
	border-left: 25px solid white;
	border-bottom: 15px solid transparent;
	margin-left: 5px;
}

.demo-game-title {
	position: absolute;
	bottom: 20px;
	left: 20px;
	color: white;
	font-size: 24px;
	font-weight: 600;
	z-index: 2;
	text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.demo-game-iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
	display: none;
}

.demo-game-description {
	margin-top: 30px;
	text-align: center;
	color: var(--text-secondary);
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

/* Mobile Styles */
@media (max-width: 768px) {
	.demo-game-section {
		padding: 40px 0;
	}

	.play-button {
		width: 60px;
		height: 60px;
	}

	.play-button::after {
		border-top: 12px solid transparent;
		border-left: 20px solid white;
		border-bottom: 12px solid transparent;
	}

	.demo-game-title {
		font-size: 18px;
		bottom: 15px;
		left: 15px;
	}

	.demo-game-description {
		font-size: 14px;
		padding: 0 15px;
	}
	.main-content img {
		max-width:100%;
		width:100%;
	}
}