/* Critical styles verplaatst naar extern bestand voor caching */
html, body { margin: 0; padding: 0; height: 100%; overflow: auto; font-family: Arial, sans-serif; }
img, iframe, video { max-width: 100%; height: auto; }
.performer-avatar { transition: transform .3s, box-shadow .3s; border-radius: 12px; position: relative; overflow: hidden; }
.performer-avatar:hover { transform: scale(1.05) translateY(-3px); box-shadow: 0 0 20px rgba(255,89,0,.4), 0 0 10px rgba(255,89,0,.2); }
.clubx-breadcrumbs { opacity: 0; height: 0; overflow: hidden; pointer-events: none; }
.ant-result-title { color: #fff !important; }

/* Banner basis */
#register-banner {
  width: 100vw; height: 100vh;
  position: fixed; inset: 0;
  z-index: 999999; background: #000; overflow: hidden;
}
#video-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 1;
}

/* Overlay */
.overlay {
  position: absolute; inset: 0;
  background-color: rgba(0,0,0,.6);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; padding: 20px; z-index: 2;
}
.overlay-logo { max-width: 220px; height: auto; margin-bottom: 20px; margin-top: -30px; z-index: 3; }
.overlay-title { color: #fff; font-size: clamp(18px, 4vw, 36px); margin-bottom: 16px; text-shadow: 0 0 8px rgba(0,0,0,.8); white-space: normal; }
.overlay-subtext { font-size: clamp(14px, 3.5vw, 20px); color: #f0f0f0; margin-bottom: 24px; display: block; }

/* Buttons */
.banner-icon { height: 20px; width: 20px; margin-right: 8px; }
.button-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 18px; width: 100%; max-width: 600px; }
.banner-button {
  flex: 1; padding: 14px 12px; border-radius: 8px; font-size: 1em; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none; white-space: nowrap;
  transition: transform .2s ease, opacity .2s ease;
}
.banner-button:hover { transform: translateY(-1px); opacity: .95; }
.member-register, .model-register { background-color: #ff5900; color: #fff; }
.member-login, .model-login { background-color: #f0f0f0; color: #222; }

/* Divider glow */
.divider-glow {
  height: 2px; width: 80%; max-width: 400px;
  background: linear-gradient(to right, transparent, #fff, transparent);
  margin: 20px 0; animation: pulseGlow 2s infinite;
}
@keyframes pulseGlow { 0%,100%{opacity:.6} 75%{opacity:1} }

/* Mobile */
@media (max-width: 768px) {
  .button-row { flex-direction: column !important; }
  .banner-button { font-size: .95em; padding: 12px; }
  #banner-subtext { display:block !important; font-size:.9em; line-height:1.4em; padding:0 5px; }
  .divider-glow { margin: 16px 0; }
}
