body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  background-color: #f0f6ff;      /* lichte blauwe achtergrond */
  color: #1e2b3a;                /* donkerblauwe tekst */
  text-align: center;
}

.hero {
  padding: 2rem;
  background-color: #d6eaff;     /* zachte lichtblauw */
  border-bottom: 4px solid #3399ff; /* fellere blauwe rand */
  border-radius: 15px;
  color: #1e2b3a;
}

.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
}

.menu-btn {
  padding: 1rem 2rem;
  background-color: #e0f0ff;    /* lichte blauwe knop */
  border: 2px solid #66b3ff;    /* blauwe rand */
  border-radius: 12px;
  text-decoration: none;
  font-size: 1.2rem;
  color: #1e2b3a;
  transition: 0.2s ease-in-out;
  box-shadow: 2px 2px 8px rgba(0, 0, 50, 0.1);
}

.menu-btn:hover {
  background-color: #cce6ff;    /* iets donkerder blauw op hover */
  transform: translateY(-2px);
}

.feature-img img {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 2rem auto;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 102, 204, 0.2);
}

footer {
  margin-top: 2rem;
  padding: 1rem;
  background-color: #dbeeff;   /* zachte blauwe footer */
  border-top: 2px solid #66b3ff;
  color: #1e2b3a;
  border-radius: 10px;
}

/* Live banner styling */
.live-banner {
  background-color: #9146ff; /* Twitch paars */
  color: white;
  padding: 0.6rem;
  font-weight: bold;
  text-align: center;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10000;
}

.offline-banner {
  background-color: #e0e0e0; /* lichtgrijs */
  color: #333;
  padding: 0.6rem;
  font-weight: bold;
  text-align: center;
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 10000;
}

.hidden {
  display: none;
}

/* Om ruimte te maken voor de bovenste balk als die er is */
body.has-live-banner {
  padding-top: 2.5rem;
}

/* Om ruimte te maken voor de onderste balk als die er is */
body.has-offline-banner {
  padding-bottom: 2.5rem;
}

/* Copyright */
.copyright {
  font-size: 0.7rem;
  color: #888;
  margin: 1rem 0 2rem;
}
.uitleg {
  margin-top: 1rem;
  font-size: 1rem;
  color: #1e2b3a;
}
#akaipfp {
  position: fixed;
  bottom: 60px;
  right: 0;
  width: 40px;
  height: 40px;
  object-fit: cover;
  z-index: 9999;
  cursor: pointer;
}

