html.gctv-game-launch-locked body > :not(#gctvSiteHeader):not(#siteMenuMobileTrigger):not(#siteMenuOverlay):not(#siteMenuPanel):not(#gctvGameLaunchGate):not(#mobileBottomNav):not(#gctvSharedFooter):not(script):not(style):not(link) {
  display: none !important;
}

#gctvGameLaunchGate {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 72px);
  padding: clamp(70px, 11vh, 130px) 20px 80px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

#gctvGameLaunchGate::before,
#gctvGameLaunchGate::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(90px);
  opacity: .16;
}

#gctvGameLaunchGate::before {
  width: 420px;
  height: 420px;
  top: -180px;
  left: 8%;
  background: #7c3aed;
}

#gctvGameLaunchGate::after {
  width: 360px;
  height: 360px;
  right: 7%;
  bottom: -190px;
  background: #ec4899;
}

.gctv-launch-card {
  position: relative;
  width: min(100%, 720px);
  padding: clamp(34px, 6vw, 64px);
  border: 1px solid rgba(167, 139, 250, .18);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 0%, rgba(124, 58, 237, .14), transparent 50%),
    rgba(11, 11, 18, .84);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .5);
  backdrop-filter: blur(22px);
}

.gctv-launch-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(167, 139, 250, .24);
  border-radius: 22px;
  color: #c4b5fd;
  background: rgba(124, 58, 237, .1);
  box-shadow: 0 0 34px rgba(124, 58, 237, .16);
  font-size: 2rem;
}

.gctv-launch-eyebrow {
  margin: 0 0 12px;
  color: #8b5cf6;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.gctv-launch-card h1 {
  margin: 0;
  color: #f8fafc;
  font-size: clamp(1.9rem, 6vw, 3.2rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.035em;
}

.gctv-launch-countdown {
  margin: 38px auto 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(76px, 1fr));
  gap: 10px;
}

.gctv-launch-unit {
  min-width: 0;
  padding: 18px 10px 15px;
  border: 1px solid rgba(148, 163, 184, .1);
  border-radius: 18px;
  background: rgba(255, 255, 255, .025);
}

.gctv-launch-unit strong {
  display: block;
  color: #e9d5ff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: clamp(1.45rem, 4vw, 2.25rem);
  font-weight: 900;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.gctv-launch-unit span {
  display: block;
  margin-top: 9px;
  color: #475569;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.gctv-launch-home {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(167, 139, 250, .22);
  border-radius: 999px;
  color: #c4b5fd;
  background: rgba(124, 58, 237, .08);
  text-decoration: none;
  font-size: .8rem;
  font-weight: 800;
  transition: transform .2s ease, color .2s ease, background .2s ease;
}

.gctv-launch-home:hover {
  color: #fff;
  background: rgba(124, 58, 237, .16);
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  #gctvGameLaunchGate {
    min-height: calc(100vh - 84px);
    padding: max(90px, calc(env(safe-area-inset-top) + 74px)) 14px 48px;
  }

  .gctv-launch-card {
    padding: 34px 16px;
    border-radius: 24px;
  }

  .gctv-launch-countdown {
    margin-top: 30px;
    gap: 6px;
  }

  .gctv-launch-unit {
    padding: 15px 4px 13px;
    border-radius: 14px;
  }
}

@media (max-width: 380px) {
  .gctv-launch-countdown {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gctv-launch-home {
    transition: none;
  }
}
