/*
 * GottaGF X Landing – Teaser video + email signup form
 * Clean rebuild Nov 2025
 */

body .ggf-x-landing-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background: #05020a;
  color: #fff;
}

body .ggf-x-landing-inner {
  width: 100%;
  max-width: 960px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

/* Video Stack (Left Column) */
.ggf-x-landing-video {
  display: flex;
  justify-content: center;
}

.ggf-x-landing-player-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  width: 100%;
}

.ggf-x-landing-player {
  width: 100%;
  max-width: 520px; /* bumped up from 420px for a bigger hero */
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.75);
}

.ggf-x-landing-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dot stack (if you ever re-enable it) */
.ggf-x-landing-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.ggf-x-landing-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
}

.ggf-x-landing-dot--active {
  width: 18px;
  background: #ff2f87;
}

/* Right-hand Form Column */
body .ggf-x-landing-form-inner {
  background: radial-gradient(circle at top, #160b2c 0, #05020a 60%);
  border-radius: 24px;
  padding: 1.75rem 1.75rem 1.5rem;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

body .ggf-x-landing-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.1rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
}

body .ggf-x-landing-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ff2f87;
}

body .ggf-x-landing-title {
  margin-top: 0.9rem;
  font-size: 2rem;
  line-height: 1.2;
}

body .ggf-x-landing-subtitle {
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

body .ggf-x-landing-bullets {
  margin: 1.2rem 0 1.4rem;
  padding: 0;
  list-style: none;
}

body .ggf-x-landing-bullets li {
  display: flex;
  gap: 0.45rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.45rem;
}

body .ggf-x-landing-bullets li::before {
  content: "•";
  color: #ff2f87;
  font-size: 1rem;
  margin-top: -0.08rem;
}

/* Form Fields */
.ggf-x-landing-form {
  margin-top: 0.5rem;
}

.ggf-x-landing-field {
  margin-bottom: 0.75rem;
}

.ggf-x-landing-field label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.8);
}

.ggf-x-landing-field input[type="text"],
.ggf-x-landing-field input[type="email"] {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(5, 2, 10, 0.85);
  color: #fff;
  font-size: 0.9rem;
  outline: none;
}

.ggf-x-landing-field input[type="text"]:focus,
.ggf-x-landing-field input[type="email"]:focus {
  border-color: #ff2f87;
  box-shadow: 0 0 0 1px rgba(255, 47, 135, 0.35);
}

/* Submit button */
.ggf-x-landing-submit {
  margin-top: 0.75rem;
}

.ggf-x-landing-submit button {
  width: 100%;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #ff2f87, #ff6b4a);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.ggf-x-landing-submit button:hover {
  filter: brightness(1.05);
}

/* Disclaimer / microcopy */
body .ggf-x-landing-footnote {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
}

/* Status message bubble */
.ggf-x-landing-status {
  margin-top: 0.75rem;
  padding: 0.6rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
}

.ggf-x-landing-status--ok {
  background: rgba(46, 204, 113, 0.1);
  color: #2ecc71;
}

.ggf-x-landing-status--error {
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
}

/* Responsive tweaks */
@media (max-width: 900px) {
  body .ggf-x-landing-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  body .ggf-x-landing-wrapper {
    padding-top: 4.5rem;
  }

  body .ggf-x-landing-video {
    order: -1;
  }

  body .ggf-x-landing-form-inner {
    max-width: 100%;
  }

  body .ggf-x-landing-title {
    font-size: 1.6rem;
  }
}

/* X landing: keep the header nav nicely centred above the layout */

.x-landing-shell .pg13-top-nav,
.xrated-shell .pg13-top-nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 32px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.x-landing-shell .pg13-logo,
.xrated-shell .pg13-logo {
  flex: 0 0 auto;
}

.x-landing-shell .pg13-top-links,
.xrated-shell .pg13-top-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.x-landing-shell .pg13-top-pill,
.xrated-shell .pg13-top-pill {
  flex: 0 0 auto;
  color: #fff;
}
