#csg-trigger {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 99999;
	background: #ff4757;
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: 30px;
	font-weight: bold;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
	transition: transform 0.2s, background 0.2s;
	font-family: sans-serif;
}

#csg-trigger:hover {
	background: #ff6b81;
	transform: scale(1.05);
}

.csg-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100000;
	display: none;
	align-items: center;
	justify-content: center;
}

.csg-modal.is-open {
	display: flex;
}

.csg-modal-backdrop {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.8);
}

.csg-modal-content {
	position: relative;
	background: #2f3542;
	color: #fff;
	padding: 30px;
	border-radius: 12px;
	max-width: 90%;
	width: 320px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.5);
	text-align: center;
	font-family: sans-serif;
}

.csg-modal-close {
	position: absolute;
	top: 10px;
	right: 15px;
	background: none;
	border: none;
	color: #a4b0be;
	font-size: 28px;
	cursor: pointer;
}

.csg-modal-close:hover {
	color: #fff;
}

.csg-game-header h2 {
	margin: 0 0 10px 0;
	font-size: 24px;
}

.csg-score-board {
	font-size: 18px;
	margin-bottom: 15px;
	color: #70a1ff;
}

#csg-canvas {
	background: #000;
	border: 2px solid #57606f;
	display: block;
	margin: 0 auto;
}

.csg-game-footer {
	margin-top: 20px;
}

.csg-game-footer p {
	font-size: 12px;
	color: #a4b0be;
	margin-bottom: 15px;
}

#csg-start-btn {
	background: #2ed573;
	color: #fff;
	border: none;
	padding: 10px 25px;
	border-radius: 5px;
	font-weight: bold;
	cursor: pointer;
	font-size: 16px;
}

#csg-start-btn:hover {
	background: #7bed9f;
}
