.bg-candy {
	background-image: 	radial-gradient(1200px 600px at 80% -10%, rgba(255,122,162,.25), transparent 60%),
						radial-gradient(900px 600px at -10% 40%, rgba(165,229,255,.35), transparent 60%),
						linear-gradient(180deg,#f8fbff,#fff8f2);
}
	
@keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

@keyframes pulse-slow {
	0%, 100% { opacity: 0.7; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.1); }
}

@keyframes sparkle {
	0% { transform: scale(0) translateY(0); opacity: 0; }
	50% { transform: scale(1.1) translateY(-5px); opacity: 1; }
	100% { transform: scale(0) translateY(-10px); opacity: 0; }
}

.animate-float {
	animation: float 4s ease-in-out infinite;
}

.animate-pulse-slow {
	animation: pulse-slow 6s ease-in-out infinite;
}

/* 🌟 Text Glow + Shadow */
.drop-shadow-text {
	text-shadow: 	0 2px 4px rgba(255, 255, 255, 0.8),
					0 0 10px rgba(255, 255, 255, 0.3),
					0 0 15px rgba(0, 200, 255, 0.2);
}

/* 🌴 Logo Glow */
.drop-shadow-glow {
	filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.6))
		drop-shadow(0 0 25px rgba(255, 200, 0, 0.3));
}
	
.shadow-soft {
	box-shadow: 0 10px 20px rgba(14, 30, 55, 0.12);
}

hr {
  border-color: rgba(125, 200, 255, 0.2);
}

#news .grid {
  justify-items: center;
}
#news .grid > article {
  width: 100%;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-btn {
  @apply px-4 py-2 rounded-xl border border-sky-100 bg-white text-sky-700 font-semibold shadow-sm hover:bg-sky-50 transition;
}
.active-tab {
  @apply bg-sky-500 text-white shadow-md;
}
.btn-sky { @apply px-4 py-2 bg-sky-500 text-white rounded-lg shadow hover:bg-sky-600; }
.btn-emerald { @apply px-4 py-2 bg-emerald-500 text-white rounded-lg shadow hover:bg-emerald-600; }

/* 🌴 Tropische Animation */
.character-card {
  @apply transform transition duration-300 hover:-translate-y-1 hover:shadow-candy;
}