* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.image-wrapper {
  max-width: 100%;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.image-wrapper img {
  max-width: 100%;
  max-height: 70vh;
  height: auto;
  display: block;
}

/* BUY TICKETS button */
.buy-tickets-btn {
  padding: 0.75rem 1.8rem;
  border-radius: 999px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out, transform 0.15s ease-out;
}

.buy-tickets-btn:hover,
.buy-tickets-btn:focus {
  background: #fff;
  color: #000;
  transform: translateY(-1px);
  outline: none;
}

footer {
  width: 100%;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer .dev-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

footer .dev-link img {
  width: 24px;
  height: 24px;
  display: block;
  opacity: 0.4;
  transition: opacity 0.2s ease-in-out;
}

footer .dev-link:hover img,
footer .dev-link:focus img {
  opacity: 1;
}

/* Overlay achtergrond */
.overlay-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out;
}

.overlay-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* Gecentreerde layer (ticket shop) */
.overlay-content {
  background: #111;
  border-radius: 12px;
  padding: 1rem;
  max-width: 90vw;
  max-height: 90vh;
  width: 800px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.overlay-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.overlay-close-btn {
  background: transparent;
  border: none;
  color: #aaa;
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  transition: color 0.15s ease-in-out;
}

.overlay-close-btn:hover,
.overlay-close-btn:focus {
  color: #fff;
  outline: none;
}

.overlay-body {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}

.overlay-body iframe {
  width: 100%;
  height: 60vh;
  border: none;
}

@media (max-width: 600px) {
  .overlay-body iframe {
    height: 65vh;
  }
}
