/* Blau/Lila Verlauf fein justiert */
:root{
  --primary: #2aa8ff;
  --secondary: #8b5cf6;
  --accent: #a855f7;
}

/* Ultra-minimal: 3 Kacheln, sauber zentriert */
.menu-grid{
  grid-template-columns: repeat(3, 204px);
}
@media (max-width: 768px){
  .menu-grid{ grid-template-columns: repeat(2, 155px); }
}

/* Live-Section: responsive iframe */
.live-card{
  margin: 45px auto 0;
  max-width: 1000px;
}
.live-title{
  font-size: 26px;
}
.live-embed{
  position: relative;
  padding-top: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
}
.live-embed iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Ghost/Anchor Tile (kein externer Link) */
.menu-item--ghost:hover{
  background: rgba(157, 78, 221, 0.10);
  border-color: var(--accent);
}
