:root {
	--primary-color: #2563eb;
	--secondary-color: #1e40af;
	--accent-color: #3b82f6;
	--text-primary: #1f2937;
	--text-secondary: #6b7280;
	--bg-primary: #ffffff;
	--bg-secondary: #f8fafc;
	--border-color: #e5e7eb;
	--success-color: #10b981;
	--warning-color: #f59e0b;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', sans-serif;
	line-height: 1.6;
	color: var(--text-primary);
	background-color: var(--bg-primary);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header */
.header {
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	color: white;
	padding: 1rem 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.8rem;
	font-weight: 700;
	text-decoration: none;
	color: white;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.nav-menu a {
	color: white;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.nav-menu a:hover {
	color: #93c5fd;
}

.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	color: white;
	font-size: 1.5rem;
	cursor: pointer;
}

/* Hero Section */
.hero {
	background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
	color: white;
	padding: 4rem 0;
	text-align: center;
}

.hero h1 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1rem;
	line-height: 1.2;
}

.hero p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.cta-button {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--success-color);
	color: white;
	padding: 1rem 2rem;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.cta-button:hover {
	background: #059669;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* Features Section */
.features {
	padding: 4rem 0;
	background: var(--bg-secondary);
}

.section-title {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 3rem;
	color: var(--text-primary);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.feature-card {
	background: white;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.feature-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 2rem;
	color: white;
}

.feature-card h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

/* Game Types */
.game-types {
	padding: 4rem 0;
}

.game-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.game-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
}

.game-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.game-image {
	height: 200px;
	background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 4rem;
	color: white;
}

.game-content {
	padding: 1.5rem;
}

.game-content h3 {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

/* Why Choose Section */
.why-choose {
	padding: 4rem 0;
	background: var(--bg-secondary);
}

.benefits-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
	margin-top: 3rem;
}

.benefit-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	background: white;
	padding: 1.5rem;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.benefit-icon {
	color: var(--success-color);
	font-size: 1.5rem;
	margin-top: 0.2rem;
}

/* Footer */
.footer {
	background: var(--text-primary);
	color: white;
	padding: 3rem 0 1rem;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-section h3 {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 0.5rem;
}

.footer-section ul li a {
	color: #d1d5db;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-section ul li a:hover {
	color: white;
}

.footer-bottom {
	border-top: 1px solid #374151;
	padding-top: 1rem;
	text-align: center;
	color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--primary-color);
		flex-direction: column;
		padding: 1rem;
		box-shadow: 0 4px 10px rgba(0,0,0,0.1);
	}
	
	.nav-menu.active {
		display: flex;
	}
	
	.mobile-menu-btn {
		display: block;
	}
	
	.hero h1 {
		font-size: 2rem;
	}
	
	.hero p {
		font-size: 1rem;
	}
	
	.section-title {
		font-size: 2rem;
	}
	
	.container {
		padding: 0 15px;
	}
}