body {
	font-family: 'Quicksand', sans-serif;
	background-color: #ffecd1; /* Soft light orange */
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	margin: 0;
	color: #333;
}

.game-container {
	text-align: center;
	background-color: #fff;
	padding: 50px;
	border-radius: 25px;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
	width: 300px;
	position: relative; /* To position falling taco relative to container */
}

h1 {
	font-family: 'Pacifico', cursive;
	color: #ff6f00;
	font-size: 36px;
	margin-bottom: 20px;
}

.dorito-button {
	background-color: #ff6f00;
	color: white;
	border: none;
	padding: 20px;
	font-size: 18px;
	border-radius: 20px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s, transform 0.2s;
	width: 100%;
	margin-bottom: 20px;
}

.dorito-button:hover {
	background-color: #ff8f33;
	transform: scale(1.1);
}

.dorito-button:active {
	transform: scale(0.95);
}

.dorito-emoji {
	font-size: 40px;
	margin-right: 10px;
}

.upgrade-button, .auto-clicker-button {
	background-color: #ffb400;
	color: white;
	border: none;
	padding: 12px 25px;
	margin-top: 20px;
	font-size: 16px;
	border-radius: 15px;
	cursor: pointer;
	transition: background-color 0.3s;
	width: 100%;
	margin-bottom: 10px;
}

.upgrade-button:hover, .auto-clicker-button:hover {
	background-color: #ffdf50;
}

.counter {
	font-size: 28px;
	font-weight: bold;
	color: #ff6f00;
	margin-bottom: 20px;
}

.falling-taco {
	font-size: 50px;
	position: absolute;
	animation: fall 4s linear infinite; /* Animation for falling taco */
	cursor: pointer;
}

@keyframes fall {
	0% {
		top: -100px;
		opacity: 1;
	}
	50% {
		top: 50%;
		opacity: 0.8;
	}
	100% {
		top: 100vh;
		opacity: 0;
	}
}

@keyframes sparkle {
	0% {
		transform: scale(1);
		opacity: 0.8;
	}
	50% {
		transform: scale(1.2);
		opacity: 1;
	}
	100% {
		transform: scale(1);
		opacity: 0.8;
	}
}

.dorito-button:hover .dorito-emoji {
	animation: sparkle 1s ease-in-out infinite;
}
