body {
	margin: 0;
	padding: 0;
	height: 100vh;
	overflow: hidden;
	background-image: url('assets/img/grassbg2.png');
	background-size: auto 100%;
	cursor: default;
	font-family: Arial, sans-serif;
}

#character {
	position: absolute;
	opacity: 0;
	z-index: 10;
	transition: left 1s ease, top 1s ease, transform 1s ease, opacity 1s ease;
	will-change: transform, opacity;
}

#character.clickable {
	cursor: pointer;
}

#catCounter {
	position: fixed;
	top: 10px;
	right: 20px;
	background: rgba(255, 255, 255, 0.8);
	padding: 6px 10px;
	border-radius: 8px;
	font-size: 12px;
	font-weight: bold;
	z-index: 100;
	pointer-events: none;
}

#globalTotal {
	position: fixed;
	top: 50px;
	right: 20px;
	font-size: 20px;
	color: black;
	background: rgba(255, 255, 255, 0.8);
	padding: 6px 10px;
	border-radius: 8px;
	font-size: 12px;
	font-weight: bold;
	z-index: 100;
	pointer-events: none;
}

#congrats {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: white;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
	text-align: center;
	display: none;
	z-index: 200;
}

#findAgain {
	padding: 10px 20px;
	margin-top: 15px;
	background: #4CAF50;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
}

#findAgain:hover {
	background: #45a049;
}

#instruction {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: white;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
	text-align: center;
	z-index: 100;
}

#startGame {
	padding: 10px 20px;
	margin-top: 15px;
	background: #4CAF50;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
}

#startGame:hover {
	background: #45a049;
}

.centered {
	width: 200px !important;
	height: 200px !important;
	transform: translate(-50%, -50%) scale(1);
}

#volumeControl {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: rgba(255, 255, 255, 0.8);
	padding: 8px 12px;
	border-radius: 8px;
	font-size: 14px;
	z-index: 100;
}

#volumeSlider {
	width: 100px;
	vertical-align: middle;
}

.social-sharing {
	margin: 15px 0;
	text-align: center;
}

.social-sharing p {
	margin-bottom: 10px;
	font-weight: bold;
}

.share-buttons {
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
}

.share-btn {
	padding: 8px 12px;
	border: none;
	border-radius: 5px;
	color: white;
	cursor: pointer;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 5px;
	transition: transform 0.2s, opacity 0.2s;
}

.share-btn:hover {
	transform: scale(1.05);
	opacity: 0.9;
}

.share-btn.twitter {
	background-color: #1DA1F2;
}

.share-btn.facebook {
	background-color: #4267B2;
}

.share-btn.whatsapp {
	background-color: #25D366;
}