body {
	margin: 0;
	padding: 0;
	background: linear-gradient(135deg, #ff6ec4, #7873f5);
	font-family: 'Quicksand', sans-serif;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	text-align: center;
}

h1 {
	font-family: 'Pacifico', cursive;
	font-size: 3em;
	margin-bottom: 10px;
}

h3 {
	font-weight: 700;
	margin-bottom: 20px;
}

.container {
	background-color: rgba(0, 0, 0, 0.3);
	padding: 40px;
	border-radius: 20px;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
	max-width: 500px;
}

.progress {
	height: 60px;
	/* Mehr Höhe für fette Balken */
	background: linear-gradient(135deg, #ffffff20, #ffffff40);
	border-radius: 30px;
	overflow: hidden;
	cursor: pointer;
	user-select: none;
	margin-top: 20px;
	box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.progress-bar {
	transition: width 0.5s ease-in-out;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3em;
	background: linear-gradient(135deg, #f6d365, #fda085);
	/* schöner Farbverlauf */
}

.butter-bar {
	background: linear-gradient(135deg, #ffdd99, #ff8c00);
	/* gold-orange Verlauf */
}

.ohne-bar {
	background: linear-gradient(135deg, #84fab0, #8fd3f4);
	/* grün-blau Verlauf */
	color: black;
}

.disabled {
	pointer-events: none;
	opacity: 0.7;
}

.creator-link {
	display: inline-block;
	margin-top: 30px;
	font-size: 1.1em;
	color: white;
	text-decoration: none;
	opacity: 0.8;
	transition: all 0.3s ease;
	font-weight: 500;
	z-index: 1;
	position: relative;
}

.creator-link:hover {
	opacity: 1;
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
	transform: scale(1.03);
	cursor: pointer;
}

/* Herz beim Hover animieren */
.creator-link:hover::after {
	content: " 🎉";
	position: absolute;
	right: -1.4em;
	animation: pulse 1.2s infinite;
}

/* Pulsierende Herz-Animation */
@keyframes pulse {

	0%,
	100% {
		transform: scale(1);
		opacity: 0.8;
	}

	50% {
		transform: scale(1.3);
		opacity: 1;
	}
}

.footer-links {
	position: fixed;
	bottom: 10px;
	width: 100%;
	text-align: center;
	font-size: 0.75em;
	opacity: 0.5;
	color: white;
	pointer-events: auto;
}

.footer-links a {
	color: white;
	text-decoration: none;
	margin: 0 10px;
}

.footer-links a:hover {
	text-decoration: underline;
	opacity: 0.8;
}

.emoji-spray {
	position: fixed;
	top: 0;
	left: 0;
	pointer-events: none;
	z-index: 0;
}

.emoji {
	position: absolute;
	font-size: 2em;
	opacity: 0.8;
	animation: fall 5s linear forwards;
}

@keyframes fall {
	0% {
		transform: translateY(-100px) rotate(0deg);
		opacity: 1;
	}

	100% {
		transform: translateY(110vh) rotate(360deg);
		opacity: 0;
	}
}