* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: #333;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

header {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}

.logo h1 {
	color: #667eea;
	font-size: 2rem;
	font-weight: bold;
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.nav-links a {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	transition: color 0.3s ease;
	title: "Casimon Ana Sayfa";
}

.nav-links a:hover {
	color: #667eea;
}

.mobile-menu {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
}

main {
	margin-top: 80px;
}

.hero {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 4rem 0;
	text-align: center;
}

.hero h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.cta-button {
	display: inline-block;
	background: #fff;
	color: #667eea;
	padding: 1rem 2rem;
	text-decoration: none;
	border-radius: 50px;
	font-weight: bold;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	title: "Casimon Platformuna Giriş Yap";
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.features {
	padding: 4rem 0;
	background: white;
}

.features h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: #333;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.feature-card {
	background: #f8f9fa;
	padding: 2rem;
	border-radius: 15px;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-card i {
	font-size: 3rem;
	color: #667eea;
	margin-bottom: 1rem;
}

.feature-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #333;
}

.about {
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	padding: 4rem 0;
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.about h2 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	color: #333;
}

.about-text {
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

.highlight-box {
	background: rgba(102, 126, 234, 0.1);
	padding: 2rem;
	border-radius: 15px;
	border-left: 5px solid #667eea;
}

.games {
	padding: 4rem 0;
	background: white;
}

.games h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: #333;
}

.games-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.game-card {
	background: linear-gradient(135deg, #667eea, #764ba2);
	color: white;
	padding: 2rem;
	border-radius: 15px;
	text-align: center;
	transition: transform 0.3s ease;
}

.game-card:hover {
	transform: scale(1.05);
}

.game-card i {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.support {
	background: #1a1a2e;
	color: white;
	padding: 4rem 0;
}

.support h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
}

.support-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.support-card {
	background: rgba(255, 255, 255, 0.1);
	padding: 2rem;
	border-radius: 15px;
	backdrop-filter: blur(10px);
}

.support-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #667eea;
}

footer {
	background: #0f0f23;
	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.5rem;
	margin-bottom: 1rem;
	color: #667eea;
}

.footer-section a {
	color: #ccc;
	text-decoration: none;
	display: block;
	margin-bottom: 0.5rem;
	transition: color 0.3s ease;
	title: "Casimon İçerik Linkli";
}

.footer-section a:hover {
	color: #667eea;
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid #333;
	color: #999;
}

.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.9);
	color: white;
	padding: 1rem;
	z-index: 2000;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.cookie-banner.show {
	transform: translateY(0);
}

.cookie-text {
	flex: 1;
	margin-right: 1rem;
}

.cookie-buttons {
	display: flex;
	gap: 1rem;
}

.cookie-btn {
	padding: 0.5rem 1rem;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-weight: bold;
	transition: background-color 0.3s ease;
}

.accept-btn {
	background: #667eea;
	color: white;
}

.accept-btn:hover {
	background: #5a67d8;
}

.decline-btn {
	background: #666;
	color: white;
}

.decline-btn:hover {
	background: #555;
}

@media (max-width: 768px) {
	.nav-links {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: white;
		flex-direction: column;
		padding: 1rem;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	}

	.nav-links.active {
		display: flex;
	}

	.mobile-menu {
		display: block;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.about-content {
		grid-template-columns: 1fr;
	}

	.cookie-banner {
		flex-direction: column;
		text-align: center;
	}

	.cookie-text {
		margin-right: 0;
		margin-bottom: 1rem;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 10px;
	}

	.hero {
		padding: 2rem 0;
	}

	.features, .about, .games, .support {
		padding: 2rem 0;
	}
}