/*
 * Mobile “Open in app” gate styles.
 *
 * This runs before Flutter loads (and Flutter is intentionally not loaded on
 * mobile browsers), so this CSS must be standalone and self-contained.
 */

#intonate-mobile-open-gate {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #0b0b0c;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
}

#intonate-mobile-open-gate .card {
  width: 100%;
  max-width: 420px;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

#intonate-mobile-open-gate .logo {
  width: 72px;
  height: 72px;
  border-radius: 16px;
}

#intonate-mobile-open-gate h1 {
  margin: 16px 0 8px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

#intonate-mobile-open-gate p {
  margin: 0 0 16px;
  opacity: 0.86;
  line-height: 1.4;
}

#intonate-mobile-open-gate .actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

#intonate-mobile-open-gate button {
  flex: 1 1 auto;
  border: none;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

#intonate-mobile-open-gate button.primary {
  background: #ffffff;
  color: #0b0b0c;
}

#intonate-mobile-open-gate button.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

#intonate-mobile-open-gate .hint {
  margin-top: 12px;
  font-size: 13px;
  opacity: 0.78;
}

#intonate-mobile-open-gate textarea {
  position: absolute;
  left: -9999px;
  top: 0;
  opacity: 0;
}

