body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: linear-gradient(to bottom left, #D22F8C, #1C3A6D); /* iets lichtere achtergrond */
  font-family: 'Lilita One', cursive;
  color: white;
  overflow-x: hidden;
  position: relative;
}

.zonnetje {
  position: fixed;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, #FFD700, #FFA500);
  border-radius: 50%;
  box-shadow: 0 0 35px rgba(255, 200, 0, 0.7);
  animation: draaiZon 6s linear infinite;
  z-index: 9999;
  overflow: visible;
}

.zonnetje:hover {
  animation: pulse 1.2s ease infinite;
}

@keyframes draaiZon {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.zonnetje .bubble {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #FFEA00;
  border-radius: 50%;
  opacity: 0;
  animation: popBubble 4.5s ease-out infinite;
}

.bubble1 { top: 20px; left: -10px; animation-delay: 0s; }
.bubble2 { top: 5px;  left: 60px; animation-delay: 1.5s; }
.bubble3 { top: 40px; left: 10px; animation-delay: 3s; }
.bubble4 { top: 25px; left: 45px; animation-delay: 4.5s; }

@keyframes popBubble {
  0%   { transform: translate(0, 0) scale(0.5); opacity: 0; }
  15%  { opacity: 1; }
  60%  { transform: translate(-20px, 80px) scale(1.2); opacity: 1; }
  100% { transform: translate(-40px, 160px) scale(0); opacity: 0; }
}

.button-container {
  background-color: rgba(255,255,255,0.08);
  padding: 20px;
  border-radius: 12px;
  box-shadow: -10px 10px 30px rgba(255,255,255,0.1);
}

.divider {
  width: 60%;
  border: 1px solid #ccc;
  margin: 10px 0;
}

.section-label {
  font-family: 'Fredoka One', sans-serif;
  font-size: 1.1rem;
  color: white;
  margin-bottom: 6px;
}

.custom-btn {
  font-size: 1.2rem;
  font-family: 'Fredoka One', sans-serif;
  font-weight: 600;
  background-color: white;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  box-shadow: -6px 6px 12px rgba(0,0,0,0.25);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.custom-btn:not(.passive-btn) {
  color: #9900cc !important; /* zachtere paars */
  text-shadow:
    0 0 10px rgba(153, 0, 204, 0.8),
    -2px 2px 6px rgba(0,0,0,0.3);
  box-shadow:
    0 0 16px rgba(153, 0, 204, 0.3),
    -6px 6px 18px rgba(0,0,0,0.3);
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.bounce-btn:hover {
  animation: bounce 0.6s ease infinite;
}

.passive-btn {
  color: #999 !important;
  text-shadow: none;
  box-shadow: -4px 4px 10px rgba(0,0,0,0.2);
}

.passive-btn:hover {
  background-color: #ccc;
  color: #444 !important;
}

@media (max-width: 768px) {
  .zonnetje {
    display: none;
  }
}

@media (max-width: 480px) {
  footer p {
    font-size: 0.9rem;
    margin: 0;
  }
}
