body.movcorp-page {
  margin: 0;
  background: #000;
  overflow: hidden;
}
body.movcorp-page .wp-site-blocks > header,
body.movcorp-page .wp-site-blocks > footer,
body.movcorp-page .wp-block-post-title {
  display: none !important;
}
body.movcorp-page .entry-content {
  all: unset;
  display: block;
}
body.movcorp-page #movcorp-root {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  max-width: none !important;
  height: 100vh !important;
  margin: 0 !important;
  z-index: 999999;
}

#movcorp-root { background: #000; font-family: system-ui, sans-serif; }
#movcorp-root * { box-sizing: border-box; }

#movcorp-gate {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 6vh 24px 24px;
}

#movcorp-logo {
  max-width: 320px;
  width: 80%;
  height: auto;
  border-radius: 12px;
}

#movcorp-gate-note {
  color: #ccc;
  font-size: 14px;
  text-align: center;
  margin: 0;
  max-width: 320px;
}

.movcorp-gate-btn {
  background: #ff2d55;
  color: white;
  border: none;
  border-radius: 24px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.movcorp-youtube-btn { background: #ff0000; }
.movcorp-telegram-btn { background: #229ED9; }

.movcorp-login-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.75); z-index: 2000000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .2s ease-out;
}
.movcorp-login-overlay.open { opacity: 1; pointer-events: auto; }
.movcorp-login-box {
  background: #141414; padding: 32px 28px; border-radius: 16px; text-align: center; color: #eee;
  max-width: 320px;
}
.movcorp-login-box p { margin: 0 0 18px; font-size: 15px; }
