@import "styles/variables.php";
@import "styles/header.css";
@import "styles/footer.css";
@import "styles/index.css";
@import "styles/video.css";

* 
{
    border:0;
    padding:0;
    margin:0;
    box-sizing: border-box;
}

body, html
{


    scroll-behavior: smooth;
    max-width: 100vw;
    margin:0;
    padding:0;
    background:white;
    font-family:var(--fontFamily);
    position:relative;
    scroll-behavior: smooth;
    overflow-x:hidden !important;

}

body 
{
    overflow-x:hidden;
}


.body--open 
{
    overflow-y:hidden !important;
}
.performer-embed-wrap {
    position: relative;
    overflow: hidden;
}

.performer-embed-wrap iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Full-area clickable link over the video */
.embed-clickmask-link {
    position: absolute;
    inset: 0;
    z-index: 999998;         /* below overlay text UI */
    display: block;
    text-decoration: none;
    background: rgba(0,0,0,0); /* fully transparent */
    cursor: pointer;
}

/* Visual overlay text on top */
.embed-overlay-ui {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;               /* pinned to bottom of video */
    z-index: 999999;         /* above the click link */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    text-align: center;
    pointer-events: none;    /* clicks go through to the link below */
    padding: 12px 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 0)
    );
}

.embed-overlay__badge {
    display: inline-block;
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: #ff4b8b;
    color: #fff;
}

.embed-overlay__title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 8px rgba(0,0,0,0.8);
}

.embed-overlay__cta {
    display: inline-block;
    margin-top: 0.1rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    background: linear-gradient(90deg, #ff5dc4, #ffb400);
    color: #1b0a15;
    box-shadow: 0 0 16px rgba(0,0,0,0.7);
}

.embed-overlay__note {
    font-size: 0.7rem;
    color: #eee;
    text-shadow: 0 0 6px rgba(0,0,0,0.7);
}
.bt-mobile-cta {
  display: block;
  width: 100%;
  max-width: 480px;
  margin: 12px auto 16px;
  padding: 14px 18px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  line-height: 1.3;
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
}

/* Primary */
.bt-mobile-cta--primary {
  background: linear-gradient(135deg, #111, #6b1fa1);
  color: #fff;
}

/* Brat */
.bt-mobile-cta--brat {
  background: linear-gradient(135deg, #3a003a, #d400ff);
  color: #fff;
}

/* Dark */
.bt-mobile-cta--dark {
  background: linear-gradient(135deg, #000, #222);
  color: #eee;
}

/* Urgent */
.bt-mobile-cta--urgent {
  background: linear-gradient(135deg, #8b0000, #ff1a1a);
  color: #fff;
}
/* Green CTA for embed / mobile */
.bt-mobile-cta--green {
  background: linear-gradient(135deg, #0f9d58, #1fd17c);
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.15);
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Hover / tap feedback */
.bt-mobile-cta--green:hover {
  background: linear-gradient(135deg, #0b7f46, #17b96b);
}

.bt-mobile-cta--green:active {
  background: linear-gradient(135deg, #0a6f3e, #12a85f);
  transform: scale(0.97);
}

/* Fix double-tap on mobile model cards (M2GGoth) */
@media (hover: none) and (pointer: coarse) {

  /* Make inner layers ignore taps */
  .main__modelWrapper,
  .main__modelWrapperRow,
  .main__modelInfoWrapper,
  .main__modelInfo,
  .main__modelEthnicity {
    pointer-events: none !important;
  }

  /* But keep the main link clickable */
  a.main__model {
    pointer-events: auto !important;
  }

}
